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
Editing entity properties does not get recorded and does not allow undo/redo. This will likely require changes to PropertiesMenu.java to save history when fields are changed.
The text was updated successfully, but these errors were encountered:
One problem I faced is that the properties menu hides when performing an undo action. In case you made a change to an entity field and the entity still exists after the undo action, I want the properties menu to stay open and simply refresh.
The issue here is that we are deserializing the level anew, therefore, the entity before and after the undo action is not the same anymore.
We need some way to establish equality of entities. Is there a way to introduce a unique hash? Obviously, after the undo action at least one field value is different between them.
Summary
Editing entity properties does not get recorded and does not allow undo/redo. This will likely require changes to
PropertiesMenu.java
to save history when fields are changed.The text was updated successfully, but these errors were encountered: