UNPKG

lingo3d

Version:

Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor

45 lines 1.13 kB
import { configAnimationPlaybackSystem } from "../../../systems/configSystems/configAnimationPlaybackSystem"; export default class AnimationStates { managerRecord = {}; _manager; get manager() { return this._manager; } set manager(val) { this._manager = val; configAnimationPlaybackSystem.add(this); } _paused = false; get paused() { return this._paused; } set paused(val) { this._paused = val; configAnimationPlaybackSystem.add(this); } _loop = true; get loop() { return this._loop; } set loop(val) { this._loop = val; configAnimationPlaybackSystem.add(this); } _pausedCount = 0; get pausedCount() { return this._pausedCount; } set pausedCount(val) { this._pausedCount = val; configAnimationPlaybackSystem.add(this); } _gotoFrame; get gotoFrame() { return this._gotoFrame; } set gotoFrame(val) { this._gotoFrame = val; configAnimationPlaybackSystem.add(this); } } //# sourceMappingURL=AnimationStates.js.map