Jump to content

Search the Community

Showing results for tags 'Xml'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Welcome to UNIGINE Forums
    • News & Announcements
    • Getting started
  • Development
    • Content Creation
    • World Design
    • Rendering
    • Animation
    • Physics, Navigation and Path Finding
    • UI Systems
    • Sound & Video
    • Editor
    • C++ Programming
    • C# Programming
    • Networking
    • Sim IG (Image Generator)
    • VR Discussions
    • General
  • Improving UNIGINE
    • Documentation
    • Feedback for UNIGINE team
    • Bug Reports
    • Unigine SDK Beta feedback
  • Community
    • Add-on Store (https://store.unigine.com/)
    • Showcase
    • Collaboration
    • Tools, Plugins, Materials & Tutorials
    • General Discussions
  • Legacy
    • UnigineScript

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Found 5 results

  1. [SOLVED] Simple XML example

    Hello, I`m currently struggling to create an actual working prototype of a working XML parser due to a lack of examples in documentation. Can anybody provide a few lines of code just to parse a simple XML file with the file itself, please?
  2. Xml Memory Leak

    I have created xml like Xml test = new Xml(); after that added few child for(int i = 0; i < 100; i++) { test.addChild("test" + i); } saved the xml using test.save("test"); When i run console command world_memory_usage it say xml has 'x' mb usage after that i deleted xml using delete delete test; after deletion i checked again world_memory_usage it showed the same 'x' mb usage did i forget anything which need to be done before delete xml for clearing memory?
  3. [SOLVED] XML parser error

    XML парсер при сохранении заменяет символы < > & " ' на специальные символы (например "<" -> "<"), а при считывании не заменяет их обратно. in-english: XML parser when saving replaces the characters <> & " ' on special characters (for examplе "<" -> "<"), and when reading is not a substitute them back.
  4. In unigine script xml class have functions like setVec3Data / getVec3Data etc. It is good to have the same functions in C++ API class Unigine::Xml in next SDK update.
  5. [SOLVED] ComboBox - Select Item

    Hello together, I'm saving an XML-File with all set values, like :"antialiasing: 4x" and so on. This "4x" in XML-File will be read out at application start, and should be set then to the combobox. I tried to do "setCurrentItem("4x")" or "setData("4x") but the value in dropdown didn't change. My workarround solution now is, to run through the combobox-items, check's the actual text on index X and compare this text with the saved XML-File Text, if they are equal, I got my index. For 30 or more comboBox's, this is in my opinion not the fastes variant. Best regards Lars
×
×
  • Create New...