summaryrefslogtreecommitdiffstats
path: root/include/godot_cpp/variant
diff options
context:
space:
mode:
authorLukas Tenbrink <lukas.tenbrink@gmail.com>2024-09-26 15:04:06 +0200
committerLukas Tenbrink <lukas.tenbrink@gmail.com>2024-10-30 15:44:44 +0100
commit23c9d41d2a56095efaa9169f9619d4dd6ade30e1 (patch)
tree756b4ce1fdccad499d38b8808a48e330492d7b0e /include/godot_cpp/variant
parent96565e1de5042baeb4835e56021fc995f1647fd1 (diff)
downloadredot-cpp-23c9d41d2a56095efaa9169f9619d4dd6ade30e1.tar.gz
Rename Vector4.components -> coords.
The use of .components is deprecated.
Diffstat (limited to 'include/godot_cpp/variant')
-rw-r--r--include/godot_cpp/variant/vector4.hpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/include/godot_cpp/variant/vector4.hpp b/include/godot_cpp/variant/vector4.hpp
index 866e522..e0e197f 100644
--- a/include/godot_cpp/variant/vector4.hpp
+++ b/include/godot_cpp/variant/vector4.hpp
@@ -55,16 +55,17 @@ struct _NO_DISCARD_ Vector4 {
real_t z;
real_t w;
};
- real_t components[4] = { 0, 0, 0, 0 };
+ [[deprecated("Use coord instead")]] real_t components[4];
+ real_t coord[4] = { 0, 0, 0, 0 };
};
_FORCE_INLINE_ real_t &operator[](const int p_axis) {
DEV_ASSERT((unsigned int)p_axis < 4);
- return components[p_axis];
+ return coord[p_axis];
}
_FORCE_INLINE_ const real_t &operator[](const int p_axis) const {
DEV_ASSERT((unsigned int)p_axis < 4);
- return components[p_axis];
+ return coord[p_axis];
}
Vector4::Axis min_axis_index() const;