Browse Source

new LuminanceNode

SUNAG 9 years ago
parent
commit
29e81189d8
1 changed files with 22 additions and 0 deletions
  1. 22 0
      examples/js/nodes/utils/LuminanceNode.js

+ 22 - 0
examples/js/nodes/utils/LuminanceNode.js

@@ -0,0 +1,22 @@
+/**
+ * @author sunag / http://www.sunag.com.br/
+ */
+
+THREE.LuminanceNode = function( rgb ) {
+
+	THREE.TempNode.call( this, 'fv1' );
+
+	this.rgb = rgb;
+
+};
+
+THREE.LuminanceNode.prototype = Object.create( THREE.TempNode.prototype );
+THREE.LuminanceNode.prototype.constructor = THREE.LuminanceNode;
+
+THREE.LuminanceNode.prototype.generate = function( builder, output ) {
+
+	builder.include( 'luminance_rgb' );
+
+	return builder.format( 'luminance_rgb(' + this.rgb.build( builder, 'v3' ) + ')', this.getType( builder ), output );
+
+};