Merge pull request #21183 from Chaosus/mat_varyings
Allow matrixes in varyings
This commit is contained in:
commit
faa49c1829
|
@ -3875,8 +3875,8 @@ Error ShaderLanguage::_parse_shader(const Map<StringName, FunctionInfo> &p_funct
|
||||||
return ERR_PARSE_ERROR;
|
return ERR_PARSE_ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!uniform && (type < TYPE_FLOAT || type > TYPE_VEC4)) {
|
if (!uniform && (type < TYPE_FLOAT || type > TYPE_MAT4)) {
|
||||||
_set_error("Invalid type for varying, only float,vec2,vec3,vec4 allowed.");
|
_set_error("Invalid type for varying, only float,vec2,vec3,vec4,mat2,mat3,mat4 allowed.");
|
||||||
return ERR_PARSE_ERROR;
|
return ERR_PARSE_ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue