David Catuhe 6 år sedan
förälder
incheckning
c0626ebc91
2 ändrade filer med 6 tillägg och 6 borttagningar
  1. 5 5
      nodeEditor/src/blockTools.ts
  2. 1 1
      nodeEditor/src/components/diagram/diagram.scss

+ 5 - 5
nodeEditor/src/blockTools.ts

@@ -78,21 +78,21 @@ export class BlockTools {
         let color = "Red";
         switch (type) {
             case NodeMaterialBlockConnectionPointTypes.Float:
-				color = "DimGrey";
+				color = "#ca9e27";
                 break;
             case NodeMaterialBlockConnectionPointTypes.Vector2:                
-				color = "Chocolate";
+				color = "#16bcb1";
                 break;
             case NodeMaterialBlockConnectionPointTypes.Vector3:                
             case NodeMaterialBlockConnectionPointTypes.Color3:                
-                color = "ForestGreen";
+                color = "#b786cb";
                 break;
             case NodeMaterialBlockConnectionPointTypes.Vector4:                
             case NodeMaterialBlockConnectionPointTypes.Color4:                
-				color = "Gold";
+				color = "#be5126";
                 break;
             case NodeMaterialBlockConnectionPointTypes.Matrix:                
-				color = "LightCoral";
+				color = "#591990";
                 break;
         }
 

+ 1 - 1
nodeEditor/src/components/diagram/diagram.scss

@@ -72,7 +72,7 @@
     }
 
     &.output {
-        background: blue;
+        background: rgb(106, 44, 131);
         color:white;
 
         .inputs {