You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -6,8 +6,8 @@ UdonXML is an XML parser written in Udon for VRChat.
6
6
The purpose of this project is for it to be used as an API in other bigger projects.
7
7
This work is something the average VRChatter never will notice, but something the author hopes might be beneficial and make the life easier for world/game creators in VRChat.
8
8
9
-
An example use of this library is allowing the player to paste the entire contents of an XML file (e.g. game save file) into an Input field in VRC, and allowing the world to then parse the submitted data.
10
-
Work is currently undergoing on implementing a ZIP decoder for this same purpose, please join the Discord for notification on future updates.
9
+
An example use of this library is allowing the player to paste the entire contents of an XML file (e.g. game save file) into an Input field in VRC, and allowing the world to then parse the submitted data.dates.
10
+
For this purpose a Zip parser library has also been implemented, which you can find [here, called UdonZip](https://github.com/Foorack/UdonZip).
11
11
12
12
## 🛠️ Setup
13
13
@@ -28,7 +28,7 @@ Work is currently undergoing on implementing a ZIP decoder for this same purpose
28
28
1. Declare a `public UdonXML udonXml;` variable in your program.
29
29
2. Assign it the value of the UdonXML GameObject in your scene.
30
30
3. Parse your XML data with LoadXml `udonXml.LoadXml(inputData);`. It will return an object.
31
-
4. The object returned represents the root of the xml tree, use it when executing other nodes such as `GetNodeName` or `HasChildNodes`.
31
+
4. The object returned represents the root of the xml tree, use it when executing other API functions such as `GetNodeName` or `HasChildNodes`.
0 commit comments