You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-11 13:10:58 +00:00
Fixed error condition check for multimesh instance colors
This commit is contained in:
@@ -2616,7 +2616,7 @@ void RasterizerStorageRD::multimesh_instance_set_color(RID p_multimesh, int p_in
|
||||
MultiMesh *multimesh = multimesh_owner.getornull(p_multimesh);
|
||||
ERR_FAIL_COND(!multimesh);
|
||||
ERR_FAIL_INDEX(p_index, multimesh->instances);
|
||||
ERR_FAIL_INDEX(p_index, !multimesh->uses_colors);
|
||||
ERR_FAIL_COND(!multimesh->uses_colors);
|
||||
|
||||
_multimesh_make_local(multimesh);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user