Summary
How new time data is added if there is existing one
- Namespace
- RedGirafeGames
.Agamotto .Scripts .Runtime - Interfaces
-
- IComparable
- IFormattable
- IConvertible
- Base Types
-
- object
- ValueType
- Enum
graph BT
Type-->Base0["Enum"]
Base0-->Base1["ValueType"]
Base1-->Base2["object"]
Type-.->Interface0["IComparable"]
Type-.->Interface1["IFormattable"]
Type-.->Interface2["IConvertible"]
Type["TimeStone.TimeLineAddTickBehaviour"]
class Type type-node
Syntax
public enum TimeStone.TimeLineAddTickBehaviour
Fields
Name | Constant Value | Summary |
---|---|---|
ClearAfter | 0 |
All data after current cursor position will be removed on adding new one (default behaviour)
This is the most logical behaviour because if you create new data, it is likely that following data are no longer valid
static
|
Insert | 1 |
New data will be inserted between the previous and the following data
static
|
Replace | 2 |
New data will replace following data at the same index (regardless of the deltaTime, so be careful about the result)
static
|