|
@@ -201,7 +201,7 @@ export type PointerMoveStageAction = (unTranslatedPointerX: number, unTranslated
|
|
export type PointerUpDownStageAction = (unTranslatedPointerX: number, unTranslatedPointerY: number, pickResult: Nullable<PickingInfo>, evt: PointerEvent) => Nullable<PickingInfo>;
|
|
export type PointerUpDownStageAction = (unTranslatedPointerX: number, unTranslatedPointerY: number, pickResult: Nullable<PickingInfo>, evt: PointerEvent) => Nullable<PickingInfo>;
|
|
|
|
|
|
/**
|
|
/**
|
|
- * Repressentation of a stage in the scene (Basically a list of ordered steps)
|
|
|
|
|
|
+ * Representation of a stage in the scene (Basically a list of ordered steps)
|
|
* @hidden
|
|
* @hidden
|
|
*/
|
|
*/
|
|
export class Stage<T extends Function> extends Array<{ index: number, component: ISceneComponent, action: T }> {
|
|
export class Stage<T extends Function> extends Array<{ index: number, component: ISceneComponent, action: T }> {
|
|
@@ -210,7 +210,7 @@ export class Stage<T extends Function> extends Array<{ index: number, component:
|
|
* @param items The items to add.
|
|
* @param items The items to add.
|
|
*/
|
|
*/
|
|
private constructor(items?: { index: number, component: ISceneComponent, action: T }[]) {
|
|
private constructor(items?: { index: number, component: ISceneComponent, action: T }[]) {
|
|
- super(...<any>items);
|
|
|
|
|
|
+ super(<any>items);
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|