65 lines
937 B
JavaScript
65 lines
937 B
JavaScript
|
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 ) {
|
||
|
|
||
|
super( 0 );
|
||
|
|
||
|
this.scope = scope;
|
||
|
this.scale = 1;
|
||
|
|
||
|
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;
|