Troubleshooting & FAQ
Frequently Asked Questions#
Can I save modified JSON back to disk during gameplay?#
Yes! Call
SaveJsonToFile or use standard SaveGame workflows with your JSON data assets.Does EasyJson work in packaged games?#
Yes! EasyJson fully supports packaged Windows, Mac, Linux, and console builds.
What happens if a JSON field is missing?#
EasyJson will return the Default Value you connected to the node, ensuring your game continues running smoothly.
Common Solutions#
Struct fields are not populating from JSON#
- Cause: Struct variable names must match the JSON keys (case-insensitive).
- Fix: Check that the JSON key spelling matches your struct property names.