Compare commits
4 Commits
82c95bb5d8
...
0b814089cc
Author | SHA1 | Date |
---|---|---|
|
0b814089cc | |
|
1c19d627aa | |
|
646c71c277 | |
|
5cf329a8dc |
|
@ -38,7 +38,7 @@
|
||||||
#if !defined(GDE_EXPORT)
|
#if !defined(GDE_EXPORT)
|
||||||
#if defined(_WIN32)
|
#if defined(_WIN32)
|
||||||
#define GDE_EXPORT __declspec(dllexport)
|
#define GDE_EXPORT __declspec(dllexport)
|
||||||
#elif defined(__GNUC__)
|
#elif defined(__GNUC__) && !defined(__MINGW32__)
|
||||||
#define GDE_EXPORT __attribute__((visibility("default")))
|
#define GDE_EXPORT __attribute__((visibility("default")))
|
||||||
#else
|
#else
|
||||||
#define GDE_EXPORT
|
#define GDE_EXPORT
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue