Description
The EditLog
method is called when a component has been edited. It is part of the Sandbox.Component
class. This method is marked as obsolete, and it is recommended to use Scene.Editor.UndoScope
or Scene.Editor.AddUndo
instead for handling edit logs.
Usage
To use the EditLog
method, you need to provide a string
representing the name of the edit and an object
representing the source of the edit. However, since this method is obsolete, it is advised to transition to using the recommended alternatives for better support and future compatibility.
Example
// Example of using EditLog (not recommended due to obsolescence)
Component component = new Component();
component.EditLog("EditName", someSourceObject);
// Recommended approach
using (var undoScope = Scene.Editor.UndoScope("EditName"))
{
// Perform edit operations
undoScope.Commit();
}