Component:UndoManager: Difference between revisions

From Resonite Wiki
add last info for now
Gave a proper description.
 
Line 3: Line 3:
|Name=Undo Manager
|Name=Undo Manager
}}
}}
See [[Undo]].
The '''UndoManager''' component keeps track of all [[User|user's]] actions in the world, allowing users to [[Undo]] or revert back to a previous step or action. Undoing can be controlled in [[ProtoFlux]] within the [[:Category:ProtoFlux:Undo|Undo Category]], where users create undo batches and steps that this component can utilize. Undoing can be disabled by setting max steps to <code>0</code>.


== Usage ==
== Usage ==

Latest revision as of 11:57, 5 March 2025

Component image 
Undo Manager component as seen in the Scene Inspector

The UndoManager component keeps track of all user's actions in the world, allowing users to Undo or revert back to a previous step or action. Undoing can be controlled in ProtoFlux within the Undo Category, where users create undo batches and steps that this component can utilize. Undoing can be disabled by setting max steps to 0.

Usage

Fields
Name Type Description
persistent Bool Determines whether or not this item will be saved to the server.
UpdateOrder Int Controls the order in which this component is updated.
Enabled Bool Controls whether or not this component is enabled. Some components stop their functionality when this field is disabled, but some don't.
MaxUndoSteps Int The maximum memory for Undoable actions per user for the current world.
UnsavedChanges Bool Whether the user has done anything that makes an undo step, which tells the world it has unsaved changes.

See Also

Undo