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
I'm working on a GUI editor for easier level editing, and I want to allow it to take in a full fledged leaf/lvl/master/etc file.
However, due to the way the Modding Tool requires the files to be formatted, I can't parse the file in using regular JSON. Issues with current file format:
-Starts and ends with [ ]
-Not all fields are wrapped in ' (single quotes)
-Does not ignore fields that normally are not there, and instead errors
Suggested fixed:
-remove the beginning and end [ ].
-require all values to be wrapped with single quotes
-skip fields with names it doesn't recognize
The first two definitely, as that puts the files inline with JSON formatting.
With these, my GUI editor and your Modding Tool can exist in harmony.
The text was updated successfully, but these errors were encountered:
I'm working on a GUI editor for easier level editing, and I want to allow it to take in a full fledged leaf/lvl/master/etc file.
However, due to the way the Modding Tool requires the files to be formatted, I can't parse the file in using regular JSON.
Issues with current file format:
-Starts and ends with
[ ]
-Not all fields are wrapped in
'
(single quotes)-Does not ignore fields that normally are not there, and instead errors
Suggested fixed:
-remove the beginning and end
[ ]
.-require all values to be wrapped with single quotes
-skip fields with names it doesn't recognize
The first two definitely, as that puts the files inline with JSON formatting.
With these, my GUI editor and your Modding Tool can exist in harmony.
The text was updated successfully, but these errors were encountered: