How does the Save Button work in SDK?

How does this save button work in the background for saving .j3o file after editing in scene composer . (I am asking because I think i found a bug related to this save button).
Can someone link me to the java doc or github page for this ?

It saves the j3o :smiley:

It works whenever Node#setModified() is called. (See AbstractNode Netbeans for javadoc)
It could be that whatever you do in the SceneComposer forgets to call it’s Nodes setModified.

Internally the Scene Graph is “somehow” saved to the j3o using JMEs default BinaryOutputCapsule.

1 Like