Davide Tantillo 93c56d08d0 c3 backup
2025-11-03 15:16:29 +01:00

15 lines
391 B
TypeScript

declare namespace SDK {
class IObjectInstance {
GetProject(): SDK.IProject;
GetObjectType(): SDK.IObjectType;
GetUID(): number;
SetPropertyValue(id: string, value: EditorPropertyValueType): void;
GetPropertyValue(id: string): EditorPropertyValueType;
GetTimelinePropertyValue(id: string): EditorPropertyValueType;
GetExternalSdkInstance(): SDK.IInstanceBase | null;
}
}