42a35a1852Remove unimplemented static variant functions 'blend' and 'interpolate'. If a user attempts to call either of these it will introduce a linker error and it may not be immediately clear to them why. Also, variant interpolation can already be accessed via 'UtilityFunctions::lerp', making at least the interpolate function unecessary here.
#1626
ruffenman
2024-10-14 20:33:20 -0400
02fd535454Add p_use_model_front to Basis::looking_at()
#1625
Florent Guiocheau
2024-10-14 21:45:17 +0200
CI: Add `runner` workflow to call other workflows
#1622
Thaddeus Crews
2024-10-11 10:58:28 -0500
ddd03ee818static inline is bad. Generates way too much code that the linker is unable to optimize and remove on final link. This causes these symbols from every class in godot-cpp to be included in the final link, even if completely unused by the lib. Removing changes a basic shared library from being ~1.5MB on almost all platforms to now ~200kB.
#1621
Jordan Schidlowsky
2024-10-09 15:11:20 -0600
0d5c2e0735Use namespace in defs.hpp
#1617
Zhehang Ding
2024-10-07 20:51:51 +0800
7f02301a91Don't print an error when decoding a null Ref<T>
#1616
David Snopek
2024-10-07 11:22:52 -0500
cb6850601cFix another compile error.
Lukas Tenbrink
2024-09-25 15:35:15 +0200
5104f0ce05Fix two errors.
Lukas Tenbrink
2024-09-25 15:33:16 +0200
695a77eaafAdd a new test to showcase the original array is COW.
Lukas Tenbrink
2024-09-25 15:31:59 +0200
2fe6f4eb98Fix unit test and add test_copy_packed_implicit.
Lukas Tenbrink
2024-09-25 15:26:46 +0200
c0f80f742aAdd two unit tests for packed array manipulation (test_typed_array_of_packed and test_append_to_packed).
Lukas Tenbrink
2024-09-25 15:19:38 +0200
67bd771daeupdate .gitignore to add .idea for the Jetbrains CLion IDE and also the default cmake build directory when building in clion cmake-build-*
Samuel Nicholas
2024-09-19 21:38:35 +0930
5cf930c111[SCons] Enable WASM_BIGINT in web builds
Fabio Alessandrelli
2024-09-23 13:29:40 +0200
8f70c96709Updated all variable names to use GODOT_ prefix changed cache type for api file and api dir to FILEPATH and PATH respectively. Minor whitespace. docstring parity
Samuel Nicholas
2024-09-13 22:06:25 +0930
5fd7af95ffUpdate bindings to 4.4.dev2
Thaddeus Crews
2024-09-17 12:45:21 -0500
8a75d17867Add GODOT_SYMBOL_VISIBILITY cache variable to match scons interface.
Samuel Nicholas
2024-09-12 13:41:18 +0930
9a4955912bAdd visibility-hidden
Andreas Pokorny
2024-08-26 13:20:26 +0200
41886aae44Add support for LLVM/MinGW and ARM64 Windows builds.
bruvzg
2024-06-20 09:38:54 +0300
dfb2122a2eAdd hot reload support when building with GCC and CMake
ytnuf
2024-08-13 19:44:39 +0100
Merge pull request #1599 from enetheru/gitignore
David Snopek
2024-09-24 05:37:41 -0500
9f5daa2d90update .gitignore to add .idea for the Jetbrains CLion IDE and also the default cmake build directory when building in clion cmake-build-*
#1599
Samuel Nicholas
2024-09-19 21:38:35 +0930
2402a044ebRe-Structure cmake solution to be closer to the scons solution.
#1595
Samuel Nicholas
2024-09-19 08:11:03 +0930
07704f8f48VSProj Configure type on build command - to resolve#1582 Visual Studio projects are multi-config projects like Ninja-MultiConfig which means you can't set the configuration at configure time as there are multiple, it always chooses the first one by default when not specified in the build command.
#1600
Samuel Nicholas
2024-09-21 22:38:07 +0930
8ddee7d63bFix#1059: Linking for mingw/x86_64 on MSYS2 fails, and optimize "ar" command execution
#1078
Feiyun Wang
2023-03-31 20:57:17 +0800