Content-Length: 18886 | pFad | https://docs.unity3d.com/ScriptReference/../Manual/../ScriptReference/Undo-undoRedoEvent.html
Callback that is triggered after any undo or redo event.
using UnityEditor; using UnityEngine;
public class ExampleUndoRedoEventScript : MonoBehaviour { void Start() { Undo.undoRedoEvent += OnUndoRedoEvent; }
void OnDestroy() { Undo.undoRedoEvent -= OnUndoRedoEvent; }
void OnUndoRedoEvent(in UndoRedoInfo info) { // code for the action to take on Undo or Redo event } }
Fetched URL: https://docs.unity3d.com/ScriptReference/../Manual/../ScriptReference/Undo-undoRedoEvent.html
Alternative Proxies: