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