Read XML from Unity

1

Good! I have a small application in Unity , and I need to read files XML .

My code XML is very simple:

<libro> 
  <libroEjemplo> 
       <nombre>Alfredo Reino</nombre> 
       <email>[email protected]</email> 
  </libroEjemplo>

  <libroEjemplo> 
       <nombre>Alfredo Reino</nombre> 
       <email>[email protected]</email> 
  </libroEjemplo>  
</libro> 

How can I get Unity to read the XML and save variables for name and e-mail ?

Thanks in advance.

    
asked by JuanPerez 27.03.2017 в 19:45
source

1 answer

0

Check this example, it helped me to know a little more about the management of xml, greetings

link

    
answered by 09.05.2017 в 23:33