C# Class UnityEditor.Timeline.Actions.ApplyDefaultUndoAttribute

Inheritance: Attribute
Show file Open project: nintendaii/unity-background-service

Public Properties

Property Type Description
UndoTitle string

Public Methods

Method Description
ApplyDefaultUndoAttribute ( string undoTitle = null ) : System

Use this attribute on action classes to have the default undo behaviour applied.

Method Details

ApplyDefaultUndoAttribute() public method

Use this attribute on action classes to have the default undo behaviour applied.
public ApplyDefaultUndoAttribute ( string undoTitle = null ) : System
undoTitle string The title of the action to appear in the undo history.
return System

Property Details

UndoTitle public property

The title of the action to appear in the undo history. If not specified, the name is taken from the DisplayName attribute, or derived from the name of the class this attribute is applied to.
public string UndoTitle
return string