Search found 2 matches

by snoopyuj
Thu Apr 13, 2023 10:01 pm
Forum: Dialogue System for Unity
Topic: Switch Language with Conversation Node
Replies: 3
Views: 186

Re: Switch Language with Conversation Node

It works flawlessly! Thank you very much! Here is my code: public class LuaRegister : MonoBehaviour { /// <summary> /// Unity Start /// </summary> private void Start() { Lua.RegisterFunction(nameof(SetLanguage), this, SymbolExtensions.GetMethodInfo(() => SetLanguage(string.Empty))); } /// <summary> ...
by snoopyuj
Thu Apr 13, 2023 8:50 am
Forum: Dialogue System for Unity
Topic: Switch Language with Conversation Node
Replies: 3
Views: 186

Switch Language with Conversation Node

Hello,

I was wondering if I can switch languages using Sequence or Lua script in a conversation node?
My requirement is to change the language while responding.

Thank you for your kind assistance :)