mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-13 18:48:44 +08:00
12 lines
321 B
TypeScript
12 lines
321 B
TypeScript
declare namespace SDK {
|
|
class IBehaviorInstance {
|
|
GetProject(): SDK.IProject;
|
|
|
|
GetPropertyValue(id: string): EditorPropertyValueType;
|
|
SetPropertyValue(id: string, value: EditorPropertyValueType): void;
|
|
|
|
GetObjectInstance(): SDK.IObjectInstance;
|
|
|
|
GetExternalSdkInstance(): SDK.IBehaviorInstanceBase | null;
|
|
}
|
|
} |