Browse Source

fix vector size rgba

Nicolas Cannasse 2 months ago
parent
commit
4665f008c7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      hrt/shgraph/ShaderGraph.hx

+ 1 - 1
hrt/shgraph/ShaderGraph.hx

@@ -674,7 +674,7 @@ class ShaderGraph extends hrt.prefab.Prefab {
 					var t = hrt.impl.TextureType.Utils.getTextureFromValue(value, Repeat);
 					shader.setParamValue(variable, t);
 				case TVec(size, _):
-					shader.setParamValue(variable, h3d.Vector.fromArray(value));
+					shader.setParamValue(variable, size == 4 ? h3d.Vector4.fromArray(value) : h3d.Vector.fromArray(value));
 				default:
 					shader.setParamValue(variable, value);
 			}