File: //var/www/aspa/three/addons/renderers/common/Animation.js
class Animation {
	constructor( nodes, info ) {
		this.nodes = nodes;
		this.info = info;
		this.animationLoop = null;
		this.requestId = null;
		this._init();
	}
	_init() {
		const update = ( time, frame ) => {
			this.requestId = self.requestAnimationFrame( update );
			this.nodes.nodeFrame.update();
			this.info.frame = this.nodes.nodeFrame.frameId;
			if ( this.animationLoop !== null ) this.animationLoop( time, frame );
		};
		update();
	}
	dispose() {
		self.cancelAnimationFrame( this.requestId );
	}
	setAnimationLoop( callback ) {
		this.animationLoop = callback;
	}
}
export default Animation;