UNPKG

three

Version:

JavaScript 3D library

22 lines (11 loc) 250 B
import Node from '../core/Node.js'; class FrontFacingNode extends Node { constructor() { super( 'bool' ); this.isFrontFacingNode = true; } generate( builder ) { return builder.getFrontFacing(); } } export default FrontFacingNode;