Page 1 of 1

I cant import language. Localization import.

Posted: Thu Mar 14, 2019 11:47 pm
by JakartaIII
(Its Russian language)
That was written in console
Image
I have one more question. How i can call only one node by id and then close dialogueUI(even if this node has next node).
Thanks.

Re: I cant import language. Localization import.

Posted: Fri Mar 15, 2019 8:41 am
by Tony Li
Hi,
JakartaIII wrote: Thu Mar 14, 2019 11:47 pm(Its Russian language)
Try changing the Encoding to UTF-8 or a different encoding value. Unity (.NET actually) is probably having trouble reading the file because of the encoding setting.
JakartaIII wrote: Thu Mar 14, 2019 11:47 pmI have one more question. How i can call only one node by id and then close dialogueUI(even if this node has next node).
Add a condition to the next node that will be false. For example:
  • Node 1: "This is node 1." --->
  • Node 2: "This is node 2." {Condition: Variable["May_Continue"] == true}
If the variable May_Continue is false, then it will stop after node 1.