Age | Commit message (Collapse) | Author |
|
Fixed broken AnimationTrackEditor's undo in 4.0
|
|
|
|
Improve the editor audio preview inspector appearance and functionality
|
|
Fix 3D scene preview generation.
|
|
Port changes to the "raycast" module build files from 3.x
|
|
|
|
Fixed issues with Editor Log after recent changes
|
|
File system dock previews will now be generated for 3D scenes when no
editor feature profile is set.
|
|
Fixed #48446, Fixed #48443
|
|
Fixed wrong mouse position after releasing grabber
|
|
Re-bind posmod, use int64_t instead of int
|
|
Add RPC support to Callable
|
|
|
|
Fixes #48420, fixes #48421.
The binding was missed when moving GDScript built-in to Global Scope it seems.
Co-authored-by: kleonc <9283098+kleonc@users.noreply.github.com>
|
|
Rename `doubleclick` to `double_click`
|
|
|
|
Add the ability to hide `ScrollContainer`'s scrollbars
|
|
Calculate __focus_rect when TreeItem is focused
|
|
Make it possible to copy the Godot version identifier by clicking it
|
|
Allow values > 1 for friction and bounce in PhysicsMaterial
|
|
TileMap::world_to_map Ensure half offset is added according to the returned value
|
|
Allow to hook a callback into inspector's undo/redo
|
|
|
|
|
|
EricEzaM/PR/fix-viewport-not-updating-mouse-pos-on-click
|
|
Add Enter as alternate key to complete code
|
|
Godot Physics collisions and solver processed on threads
|
|
Added method to create a new line in RichTextLabel without adding an ItemNewline to the previous line. Previously, removing a line then adding a newline was adding unnecessary ItemNewline instances to the previous line, significantly the remove_line method.
|
|
Added message type filters.
Added ability to search.
Added ability to collapse multiple duplicate messages into one line.
Updated layout to allow for more vertical space in log text area.
|
|
Fix constants at function scope are not defined as constants for completion
|
|
|
|
-Up to each scripting language to implement this
-If not supported for the function, it will just error when you try to call
|
|
CI: Add `--doctool` check to find missing classref updates
|
|
This will enforce that PRs properly sync the class reference templates to match
their changes to the public API, and help notice binding bugs in the process
(e.g. missing enum bindings, unexpected API changes or missing argument names).
This should also serve as a reminder to contributors that their changes impact
the scripting API and might warrant actually filling the descriptions for the
new methods/properties/etc.
|
|
|
|
Check OptimizedTranslation generate p_from is valid
|
|
Fix start line selection for indent_selected_lines_left
|
|
Assorted fixes to UV unwrapping and GPU lightmapper
|
|
|
|
Various fixes to UV2 unwrapping and the GPU lightmapper. Listed here for
context in case of git blame/bisect:
* Fix UV2 unwrapping on import, also cleaned up the unwrap cache code.
* Fix saving of RGBA images in EXR format.
* Fixes to the GPU lightmapper:
- Added padding between atlas elements, avoids bleeding.
- Remove old SDF generation code.
- Fix baked attenuation for Omni/Spot lights.
- Fix baking of material properties onto UV2 (wireframe was
wrongly used before).
- Disable statically baked lights for objects that have a
lightmap texture to avoid applying the same light twice.
- Fix lightmap pairing in RendererSceneCull.
- Fix UV2 array generated from `RenderingServer::mesh_surface_get_arrays()`.
- Port autoexposure fix for OIDN from 3.x.
- Save debug textures as EXR when using floating point format.
|
|
|
|
|
|
Cast Unix time to uint in the randomize function
|
|
[Net] Fix rpc/rpc_id error message.
|
|
This returns a double while the other values are all uint64_t. The
clang compiler gives a warning since converting the constant to double
loses precision.
|
|
- Use hardcoded pluralization for messages.
- Since these messages are English-only, it's fine to hardcode it.
- Use double quotes for consistency with other messages.
|
|
TileMapEditor Modulate autotile previews
|
|
TileMapEditor::_bucket_fill Check autotile coordinates only if autotile is selected
|
|
Don't allow to use in bit shift negative operands
|
|
The check was updated to expect a `StringName` instead of a `String` but
the error message still reported it should be a `String`.
|