Newer
Older
HuangJiPC / public / static / three / examples / jsm / nodes / display / FrontFacingNode.js
@zhangdeliang zhangdeliang on 21 Jun 250 bytes update
import Node from '../core/Node.js';

class FrontFacingNode extends Node {

	constructor() {

		super( 'bool' );

		this.isFrontFacingNode = true;

	}

	generate( builder ) {

		return builder.getFrontFacing();

	}

}

export default FrontFacingNode;