12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- import UniformNode from '../core/UniformNode.js';
- import { NodeUpdateType } from '../core/constants.js';
- class TimerNode extends UniformNode {
- static LOCAL = 'local';
- static GLOBAL = 'global';
- static DELTA = 'delta';
- constructor( scope = TimerNode.LOCAL, scale = 1, value = 0 ) {
- super( value );
- this.scope = scope;
- this.scale = scale;
- this.updateType = NodeUpdateType.Frame;
- }
- update( frame ) {
- const scope = this.scope;
- const scale = this.scale;
- if ( scope === TimerNode.LOCAL ) {
- this.value += frame.deltaTime * scale;
- } else if ( scope === TimerNode.DELTA ) {
- this.value = frame.deltaTime * scale;
- } else {
- // global
- this.value = frame.time * scale;
- }
- }
- serialize( data ) {
- super.serialize( data );
- data.scope = this.scope;
- data.scale = this.scale;
- }
- deserialize( data ) {
- super.deserialize( data );
- this.scope = data.scope;
- this.scale = data.scale;
- }
- }
- export default TimerNode;
|