FrontFacingNode.js 250 B

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