SUNAG 9 years ago
parent
commit
d69726ce59
1 changed files with 2 additions and 2 deletions
  1. 2 2
      examples/js/nodes/utils/JoinNode.js

+ 2 - 2
examples/js/nodes/utils/JoinNode.js

@@ -13,11 +13,11 @@ THREE.JoinNode = function( x, y, z, w ) {
 
 };
 
+THREE.JoinNode.inputs = [ 'x', 'y', 'z', 'w' ];
+
 THREE.JoinNode.prototype = Object.create( THREE.TempNode.prototype );
 THREE.JoinNode.prototype.constructor = THREE.JoinNode;
 
-THREE.JoinNode.inputs = [ 'x', 'y', 'z', 'w' ];
-
 THREE.JoinNode.prototype.getNumElements = function() {
 
 	var inputs = THREE.JoinNode.inputs;