Age | Commit message (Collapse) | Author |
|
This can help to solve compilation issues on systems with Japanese
locale with encodings like Shift_JIS and UTF-8-BOM.
Also be more consistent using String::utf8() to represent cyrilic
unicode characters in test_string.cpp
Clarified some comments in test_string.cpp for some Unicode characters.
|
|
Editor debugger now always handle connections.
|
|
Make second parameter of substr optional
|
|
Add HSV mode to color picker
|
|
Enable BC6H compression for all HDR formats
|
|
Script Text Editor: respect Move Down and Move Up shortcuts on macOS
|
|
Make FFT size and oversampling adjustable in smbPitchShifter, add windowing to smbFFT
|
|
The editor debugger used to only take the first client connection,
leaving potential new connections hanging until TCP timeout.
This caused a lock after some time when running multiple game/editor
instances, as the client will fill the write buffer, and then lock until
timeout (as the editor server would never read from that socket).
The editor now drops new connections immediately if it is already
connected to a client.
|
|
Expose String.http_escape and String.http_unescape
|
|
akien-mga/nothing-that-surrounds-us-is-object-all-is-subject
GDScript: Improve error on Object to Object invalid argument calls
|
|
Add a separator in debug output for readability
|
|
Add filter search for script list and the members in the script editor
|
|
Enhancements and fixes for the editor feature profile
|
|
doc: Improve docs for Resource* classes
|
|
Update macOS global mouse position at startup
|
|
|
|
Properly sort projects by name
|
|
Added description to is_pixel_opaque() in Sprite.xml
|
|
Also move module-specific classes to their own module's `doc_classes`
folder.
|
|
Unexpose subclasses of ResourceFormatLoader and -Saver
|
|
ResourceFormatLoader and ResourceFormatSaver are meant to be overridden
to add support for different formats in ResourceLoader and ResourceSaver.
Those should be exposed as they can be overridden in plugins.
On the other hand, all predefined subclasses of those two base classes
are only meant to register support for new file and resource types, but
should not and cannot be used directly from script, so they should not
be exposed.
Also unexposed ResourceImporterOGGVorbis (and thus its base class
ResourceImporter) which are editor-only.
|
|
|
|
Fixes crash with rigged meshes on some OpenGLES2 devices
|
|
|
|
Fix a few bugs.
|
|
Added description in TranslationServer and OpenSimplexNoise
|
|
Document ItemList control
|
|
Fixes #27804.
|
|
Non-tools OpenGLES2 devices that use the USE_SKELETON_SOFTWARE path (i.e. do not support float texture) depend on surface->data being set containing the bone IDs and weights (rasterizer_scene_gles2.cpp, line 1456, RasterizerSceneGLES2::_setup_geometry). However currently if TOOLS_ENABLED is not defined, surface->data is not stored in main memory in rasterizer_storage_gles2.cpp. This causes a crash in rasterizer_scene_gles2.cpp when a rigged object comes into view.
This fix addresses the specific case of skinned objects when USE_SKELETON_SOFTWARE is active, and stores a copy of the bone data, as is done when TOOLS_ENABLED is defined. This fixes the crash by allowing the same mechanism as on desktop, without adding the memory overhead of storing all vertex data where not required.
Fixes #28298
|
|
Fixes NaN errors with anchors mode
|
|
|
|
Fix AStar set/is_point_disabled crash
|
|
|
|
Changing method signature in other class in not recognized in working…
|
|
Change emit shape circle to sphere in CPUParticles2D
|
|
|
|
Fix endless controller iteration on windows
|
|
Fixes #29846
|
|
Fix minor typos
|
|
Linux: Check return value of chdir on cleanup
|
|
Some compilers trigger a warning for it if we do not bother
checking the return value.
Fixes #29849.
|
|
Connect OptionButton selection to menu's "index_pressed" signal
|
|
Bring selected script in view of open scripts list
|
|
Add script to fix style issues and copyright headers
|
|
|
|
This is only meant to check the validity of the whole codebase every
now and then, or to apply clang-format config changes when relevant.
|
|
Add ability to limit maximum/minimum window size.
|
|
Document TextEdit node
|
|
Allow setting websocket buffers sizes internally.
|
|
Fix selection undo... for real
|