Updated _proto
inside ITemplateItem
nullable
Added `ItemType` enum for `_type` property in `ITemplateItem`
This commit is contained in:
parent
82c6add9ab
commit
edbb6cec19
@ -5,9 +5,9 @@ export interface ITemplateItem
|
|||||||
_id: string
|
_id: string
|
||||||
_name: string
|
_name: string
|
||||||
_parent: string
|
_parent: string
|
||||||
_type: string
|
_type: ItemType
|
||||||
_props: Props
|
_props: Props
|
||||||
_proto: string
|
_proto?: string
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface Props
|
export interface Props
|
||||||
@ -573,3 +573,9 @@ export interface IShotsGroupSettings
|
|||||||
ShotRecoilRotationStrength: Ixyz
|
ShotRecoilRotationStrength: Ixyz
|
||||||
StartShotIndex: number
|
StartShotIndex: number
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export enum ItemType
|
||||||
|
{
|
||||||
|
NODE = "Node",
|
||||||
|
ITEM = "Item",
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user