File tree Expand file tree Collapse file tree 3 files changed +4
-0
lines changed Expand file tree Collapse file tree 3 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -75,6 +75,7 @@ import C2dBlurShader from "./renderer/c2d/shaders/BlurShader.mjs";
75
75
import SpinnerShader2 from "./renderer/webgl/shaders/SpinnerShader2.mjs" ;
76
76
77
77
import Stage from "./tree/Stage.mjs" ;
78
+ import WebPlatform from "./platforms/browser/WebPlatform.mjs" ;
78
79
79
80
// full export (no tree-shaking)
80
81
import lng from "./lightning.mjs" ;
@@ -135,6 +136,7 @@ export {
135
136
ObjMerger ,
136
137
ObjectListProxy ,
137
138
ObjectListWrapper ,
139
+ WebPlatform ,
138
140
} ;
139
141
140
142
export type * from './types/lng.types.namespace.mjs' ;
Original file line number Diff line number Diff line change @@ -285,6 +285,7 @@ declare namespace Stage {
285
285
frameStart : ( ) => void ;
286
286
update : ( ) => void ;
287
287
frameEnd : ( ) => void ;
288
+ idle : ( ) => void ;
288
289
}
289
290
}
290
291
Original file line number Diff line number Diff line change @@ -38,6 +38,7 @@ declare namespace TextureSource {
38
38
premultiplyAlpha : boolean ;
39
39
renderInfo : RenderInfo ;
40
40
source : NativeTexture ;
41
+ throttle : boolean ;
41
42
w : number ;
42
43
}
43
44
You can’t perform that action at this time.
0 commit comments