FrontFacingNode.js 269 B

123456789101112131415161718192021
  1. import Node from '../core/Node.js';
  2. class FrontFacingNode extends Node {
  3. constructor() {
  4. super( 'bool' );
  5. }
  6. generate( builder ) {
  7. return builder.getFrontFacing();
  8. }
  9. }
  10. FrontFacingNode.prototype.isFrontFacingNode = true;
  11. export default FrontFacingNode;