diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2022-05-03 14:40:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-03 14:40:01 +0200 |
commit | 931838b3308442ba5084c0a9f487b05c9de74fde (patch) | |
tree | 7854739449a5b6636730ea92876ecae4ce9838e6 /core/variant/variant_parser.cpp | |
parent | 297241f368632dd91a3e7df47da3d9e5197e4f1e (diff) | |
parent | 1bf94dff3a6fee9fc19189ac77d81beb631b8398 (diff) | |
download | redot-engine-931838b3308442ba5084c0a9f487b05c9de74fde.tar.gz |
Merge pull request #60627 from aaronfranke/rename-elements
Rename Transform2D and Basis `elements` to `columns` and `rows` respectively
Diffstat (limited to 'core/variant/variant_parser.cpp')
-rw-r--r-- | core/variant/variant_parser.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/variant/variant_parser.cpp b/core/variant/variant_parser.cpp index bd13f66a09..2864d0c956 100644 --- a/core/variant/variant_parser.cpp +++ b/core/variant/variant_parser.cpp @@ -1555,7 +1555,7 @@ Error VariantWriter::write(const Variant &p_variant, StoreStringFunc p_store_str if (i != 0 || j != 0) { s += ", "; } - s += rtos_fix(m3.elements[i][j]); + s += rtos_fix(m3.columns[i][j]); } } @@ -1570,7 +1570,7 @@ Error VariantWriter::write(const Variant &p_variant, StoreStringFunc p_store_str if (i != 0 || j != 0) { s += ", "; } - s += rtos_fix(m3.elements[i][j]); + s += rtos_fix(m3.rows[i][j]); } } @@ -1586,7 +1586,7 @@ Error VariantWriter::write(const Variant &p_variant, StoreStringFunc p_store_str if (i != 0 || j != 0) { s += ", "; } - s += rtos_fix(m3.elements[i][j]); + s += rtos_fix(m3.rows[i][j]); } } |