mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-04 14:24:53 +08:00
18 lines
593 B
TypeScript
18 lines
593 B
TypeScript
|
|
/** SDK base class for a world instance.
|
|
* @see {@link https://www.construct.net/en/make-games/manuals/construct-3/scripting/scripting-reference/addon-sdk-interfaces/isdkworldinstancebase | ISDKWorldInstanceBase documentation } */
|
|
declare class ISDKWorldInstanceBase_ extends IWorldInstanceSDKBase
|
|
{
|
|
_handleRendererContextLoss(): void;
|
|
|
|
_onRendererContextLost(): void;
|
|
_onRendererContextRestored(): void;
|
|
|
|
_draw(renderer: IRenderer): void;
|
|
|
|
_rendersToOwnZPlane(): boolean;
|
|
_mustPreDraw(): boolean;
|
|
}
|
|
|
|
declare var ISDKWorldInstanceBase: typeof ISDKWorldInstanceBase_;
|