1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-15 13:51:40 +00:00

Rename Basis "elements" to "rows"

This commit is contained in:
Aaron Franke
2022-04-24 17:07:35 -05:00
parent b831fb0a54
commit 1bf94dff3a
31 changed files with 679 additions and 679 deletions

View File

@@ -112,9 +112,9 @@ Basis MobileVRInterface::combine_acc_mag(const Vector3 &p_grav, const Vector3 &p
// We use our gravity and magnetometer vectors to construct our matrix
Basis acc_mag_m3;
acc_mag_m3.elements[0] = -magneto_east;
acc_mag_m3.elements[1] = up;
acc_mag_m3.elements[2] = magneto;
acc_mag_m3.rows[0] = -magneto_east;
acc_mag_m3.rows[1] = up;
acc_mag_m3.rows[2] = magneto;
return acc_mag_m3;
};