↧
Answer by DerWoDaSo
Getting the dialogue lines from the XML file, every time you need them can be quiet slow. But you can parse the XML file at the beginning and store the dialogue lines in an array for example. I would...
View ArticleAnswer by Flimgoblin
If you use the parser that you linked to you can do something like:public var dialogueXMLFile:TextAsset; public var dialogue:XMLNode; function Start(){ var parser=new XMLParser();...
View Article