Any GUI tool for editing class instance and save to JSON?
I'm creating game tutorial system and want easily edit it's states, conditions etc.. So I have some interfaces as ITutorial, IAction, ICondition, and some implementations as Tutorial, ActionFoo, ActionBar, IfFooBar etc. Is there any gui tool, where i can choose implementation of some interface, fill it's fields and save to json with appropriate class types?
3 Replies
you could maybe find a tool that will generate a JSON schema file from a C# class
or vice-versa
and then you can probably find a JSON editing tool that gives you intelligence from the schema file
I've never heard of anything specifically like you're asking
Thanks a lot. Found NJsonChema and Visual JSON Editor on github, hope it works with interfaces
For those who interested:
https://github.com/RicoSuter/NJsonSchema
https://github.com/RicoSuter/VisualJsonEditor
GitHub
GitHub - RicoSuter/NJsonSchema: JSON Schema reader, generator and v...
JSON Schema reader, generator and validator for .NET - GitHub - RicoSuter/NJsonSchema: JSON Schema reader, generator and validator for .NET
GitHub
GitHub - RicoSuter/VisualJsonEditor: A JSON schema based file edito...
A JSON schema based file editor for Windows. Contribute to RicoSuter/VisualJsonEditor development by creating an account on GitHub.