123456789101112131415161718192021 |
- import Node from '../core/Node.js';
- class FrontFacingNode extends Node {
- constructor() {
- super( 'bool' );
- this.isFrontFacingNode = true;
- }
- generate( builder ) {
- return builder.getFrontFacing();
- }
- }
- export default FrontFacingNode;
|