You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-07 12:30:27 +00:00
Fix copy paste array index bug
This commit is contained in:
@@ -5063,10 +5063,10 @@ void RasterizerStorageRD::_global_variable_store_in_buffer(int32_t p_index, RS::
|
||||
bv[2].z = v.basis.elements[2][2];
|
||||
bv[2].w = 0;
|
||||
|
||||
bv[2].x = v.origin.x;
|
||||
bv[2].y = v.origin.y;
|
||||
bv[2].z = v.origin.z;
|
||||
bv[2].w = 1;
|
||||
bv[3].x = v.origin.x;
|
||||
bv[3].y = v.origin.y;
|
||||
bv[3].z = v.origin.z;
|
||||
bv[3].w = 1;
|
||||
|
||||
} break;
|
||||
default: {
|
||||
|
||||
Reference in New Issue
Block a user