Browse Source

Update simplexPerlin3D.ts

space fix
Pryme8 5 years ago
parent
commit
65c321dfa1
1 changed files with 1 additions and 2 deletions
  1. 1 2
      src/Materials/Node/Blocks/simplexPerlin3D.ts

+ 1 - 2
src/Materials/Node/Blocks/simplexPerlin3D.ts

@@ -43,10 +43,9 @@ export class SimplexPerlin3D extends NodeMaterialBlock {
      */
      */
     public constructor(name: string) {
     public constructor(name: string) {
         super(name, NodeMaterialBlockTargets.Neutral);
         super(name, NodeMaterialBlockTargets.Neutral);
-
+        
         this.registerInput("position", NodeMaterialBlockConnectionPointTypes.Vector3);
         this.registerInput("position", NodeMaterialBlockConnectionPointTypes.Vector3);
         this.registerOutput("output", NodeMaterialBlockConnectionPointTypes.Float);
         this.registerOutput("output", NodeMaterialBlockConnectionPointTypes.Float);
-		
     }
     }
 
 
     /**
     /**