cesium/packages/engine/Source/Scene/ModelAnimationState.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
135 B
JavaScript
Raw Permalink Normal View History

2013-10-23 01:32:55 +08:00
/**
* @private
*/
2022-08-11 06:22:27 +08:00
const ModelAnimationState = {
2014-01-28 20:31:59 +08:00
STOPPED: 0,
ANIMATING: 1,
2022-08-11 06:22:27 +08:00
};
export default Object.freeze(ModelAnimationState);