Add PackedRealArray as an alias for PackedFloat(32/64)Array

(cherry picked from commit 646c71c277)
pull/1372/head
Aaron Franke 2023-12-19 04:17:20 -06:00 committed by David Snopek
parent aaffda23a5
commit 0472b6bdd4
1 changed files with 6 additions and 0 deletions

View File

@ -356,6 +356,12 @@ String vformat(const String &p_text, const VarArgs... p_args) {
#include <godot_cpp/variant/builtin_vararg_methods.hpp> #include <godot_cpp/variant/builtin_vararg_methods.hpp>
#ifdef REAL_T_IS_DOUBLE
using PackedRealArray = PackedFloat64Array;
#else
using PackedRealArray = PackedFloat32Array;
#endif // REAL_T_IS_DOUBLE
} // namespace godot } // namespace godot
#endif // GODOT_VARIANT_HPP #endif // GODOT_VARIANT_HPP