暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

ICacheUndo.cs 285B

1234567891011
  1. namespace UnityEditor.U2D.Animation
  2. {
  3. internal interface ICacheUndo
  4. {
  5. IUndo undoOverride { get; set; }
  6. bool isUndoOperationSet { get; }
  7. void IncrementCurrentGroup();
  8. void BeginUndoOperation(string name);
  9. void EndUndoOperation();
  10. }
  11. }