Open hajimehoshi opened 9 years ago
The current game data struct is:
{ maps: [ { id: "id-yyyy", .... } ], actors: [ ... ] }
I'd like to change this like:
{ main: "id-main", objects: { "id-main": { maps: "id-xxxx", actors: "id-zzzz" }, "id-xxxx": [ "id-yyyy", ... ], "id-yyyy": { ... }, "id-zzzz": [ ... ] ... } }
Updating object from the editor should be simpler. Some existing hashes can be removed.
The current game data struct is:
I'd like to change this like:
Updating object from the editor should be simpler. Some existing hashes can be removed.