Files
esengine/source/src/ECS/CoreEvents.ts

33 lines
764 B
TypeScript
Raw Normal View History

2020-07-23 11:00:46 +08:00
module es {
2020-07-28 16:25:20 +08:00
export enum CoreEvents {
/**
* VRAM将被擦除
*/
GraphicsDeviceReset,
/**
*
*/
2020-07-23 11:00:46 +08:00
SceneChanged,
/**
*
*/
OrientationChanged,
/**
*
*/
FrameUpdated,
/**
* Core.useCustomUpdate为true时则派发该事件
*/
SceneUpdated,
/**
*
*/
CallDraw,
/**
* GC时
*/
CallGC,
2020-07-23 11:00:46 +08:00
}
}