Age | Commit message (Collapse) | Author |
|
It used to be used for Android and iOS to specify platform-specific
project settings overrides, but we now have feature tags for that.
|
|
|
|
Fix GLES2 Spotlight shadow problem
|
|
Add option to add debug keystore in Android export
|
|
|
|
Its use was removed in 1039ba9ffb8588e8b0abddaa753d270979147c23.
|
|
|
|
|
|
fix near infinite loop when no previous mouse position
|
|
Added physics_has_last_mousepos to better deal with
situations where there is no last_mousepos
|
|
Fix copy/paste for TileMap
|
|
Fix #24440
|
|
Fix colored font rendered in wrong size
|
|
workaround problem in #9913
|
|
Fix #24456
The character->rect.size is properly update at DynamicFontAtSize::_bitmap_to_character
so no need to multiply scale again.
It was changed with 5cd12f6649387f91d08fd17bf3c70e732798ab58
|
|
mateusfccp/animation_editor_curve_tangent_different_color
Change color of AnimationPlayer curve to "highlight"
|
|
Small fixes for the AnimationTree editor
|
|
|
|
#21551
|
|
crashes on mobile for #21551 but not sure on intel.
|
|
This is to be consistent with Curve editor and to be less confusing
related to tangent lines color.
|
|
Disable gzip and lzw support for freetype
|
|
This resolves #24287 that causes linking issues when using the debug target for platform iOS.
|
|
Fix Word wrap cache desync causing crash
|
|
|
|
It was badly named (it disables code completion, not just the delay), and also
badly implemented (not preventing the timer for running, but just preventing it
to show the autocompletion).
It could be readded with a proper name and cleaner implementation if there's an
actual need for it.
Supersedes #24407 and closes #24352.
|
|
Clarify what popup_centered actually does
|
|
Fix error/warning while building with android studio
|
|
PluginScript: Add support for the new() method
|
|
|
|
General fixes for the AnimationTree editor
|
|
Fix bread crumb of AnimationTree
|
|
Make the AnimationTree editor's path section more obvious
|
|
Label: Fix kerning when using Uppercase mode
|
|
Change *_slot to *_port on get_connection_list
|
|
|
|
|
|
|
|
Don't accidentally convert string content to char
|
|
Due to the right hand side of the :? trickery the rhs was cast to a
char losing precision. Previously this didn't matter, but with
CharProxy it does. (Previously we could just happily cast it back to
a wchar_t and get the original 16 - 32 bits. Now we'll only ever
get the first 8).
|
|
Seemingly a typo, I did not check what exact impact it had, but
the x_ofs would likely have accumulated errors when using fonts
with varying char widths.
|
|
|
|
Add z-index to ATLAS_TILE
|
|
|
|
Fixes the following warnings in `p=server target=release_debug` builds
on Travis CI:
```
./core/os/memory.h: In function 'MainLoop* TestOAHashMap::test()':
./core/os/memory.h:108:111: warning: 'dummy' may be used uninitialized in this function [-Wmaybe-uninitialized]
#define memnew_placement(m_placement, m_class) _post_initialize(new (m_placement, sizeof(m_class), "") m_class)
^
main/tests/test_oa_hash_map.cpp:98:7: note: 'dummy' was declared here
int dummy;
^
scene/resources/bit_mask.cpp:447:3: warning: 'next_i' may be used uninitialized in this function [-Wmaybe-uninitialized]
scene/resources/bit_mask.cpp:448:4: warning: 'next_j' may be used uninitialized in this function [-Wmaybe-uninitialized]
```
|
|
Fixes this warning raised by Travis CI on macOS:
```
editor/plugins/polygon_2d_editor_plugin.cpp:95:6: warning: variable 'skeleton' is used uninitialized whenever 'if' condition is true [-Wsometimes-uninitialized]
if (!node->has_node(node->get_skeleton())) {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
editor/plugins/polygon_2d_editor_plugin.cpp:106:7: note: uninitialized use occurs here
if (!skeleton) {
^~~~~~~~
editor/plugins/polygon_2d_editor_plugin.cpp:95:2: note: remove the 'if' if its condition is always false
if (!node->has_node(node->get_skeleton())) {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
editor/plugins/polygon_2d_editor_plugin.cpp:94:22: note: initialize the variable 'skeleton' to silence this warning
Skeleton2D *skeleton;
^
= NULL
```
|
|
Fix sub-transitions not using end_node correctly
|
|
Fix titles in graph editors being invisible when headers are enabled
|
|
Removed error message arriving whenever csv file changed
|
|
Fix #22389
|