Merge pull request #45066 from Chaosus/shader_fix_uniform_crash
Prevent editor crash due to modify the order of non-instance shader uniforms by instance uniforms
This commit is contained in:
commit
a33dc4274c
|
@ -6305,8 +6305,10 @@ Error ShaderLanguage::_parse_shader(const Map<StringName, FunctionInfo> &p_funct
|
||||||
}
|
}
|
||||||
|
|
||||||
uniform2.texture_order = -1;
|
uniform2.texture_order = -1;
|
||||||
|
if (uniform_scope != ShaderNode::Uniform::SCOPE_INSTANCE) {
|
||||||
uniform2.order = uniforms++;
|
uniform2.order = uniforms++;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
uniform2.type = type;
|
uniform2.type = type;
|
||||||
uniform2.scope = uniform_scope;
|
uniform2.scope = uniform_scope;
|
||||||
uniform2.precision = precision;
|
uniform2.precision = precision;
|
||||||
|
|
Loading…
Reference in New Issue