1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-05 02:39:46 +02:00
Oinktube/node_modules/three/examples/jsm/renderers/nodes/inputs/FloatNode.js
2023-12-11 11:59:56 -03:00

15 lines
190 B
JavaScript

import InputNode from '../core/InputNode.js';
class FloatNode extends InputNode {
constructor( value = 0 ) {
super( 'float' );
this.value = value;
}
}
export default FloatNode;