|
@@ -1058,6 +1058,7 @@ declare module spine.webgl {
|
|
|
}
|
|
|
declare module spine.webgl {
|
|
|
class LoadingScreen {
|
|
|
+ static FADE_SECONDS: number;
|
|
|
private static loaded;
|
|
|
private static spinnerImg;
|
|
|
private static logoImg;
|
|
@@ -1065,15 +1066,15 @@ declare module spine.webgl {
|
|
|
private logo;
|
|
|
private spinner;
|
|
|
private angle;
|
|
|
+ private fadeOut;
|
|
|
private timeKeeper;
|
|
|
backgroundColor: Color;
|
|
|
- static useDark: boolean;
|
|
|
+ private tempColor;
|
|
|
+ private firstDraw;
|
|
|
private static SPINNER_DATA;
|
|
|
- private static SPINNER_DARK_DATA;
|
|
|
private static SPINE_LOGO_DATA;
|
|
|
- private static SPINE_LOGO_DARK_DATA;
|
|
|
constructor(renderer: SceneRenderer);
|
|
|
- draw(): void;
|
|
|
+ draw(complete?: boolean): void;
|
|
|
}
|
|
|
}
|
|
|
declare module spine.webgl {
|
|
@@ -1198,8 +1199,8 @@ declare module spine.webgl {
|
|
|
gl: WebGLRenderingContext;
|
|
|
canvas: HTMLCanvasElement;
|
|
|
camera: OrthoCamera;
|
|
|
+ batcher: PolygonBatcher;
|
|
|
private batcherShader;
|
|
|
- private batcher;
|
|
|
private shapes;
|
|
|
private shapesShader;
|
|
|
private activeRenderer;
|