Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-09-08 | Merge pull request #65241 from bruvzg/no_keymap_ambiguity | Rémi Verschelde | |
Fix key mapping changes when moving from macOS to other platform. | |||
2022-09-08 | Merge pull request #60108 from KoBeWi/arise_to_top | Rémi Verschelde | |
Rename raise() to move_to_front() | |||
2022-09-08 | Merge pull request #65460 from Faless/net/4.x_ssl_to_tls_more | Rémi Verschelde | |
[Net] Rename "ssl" references to "tls" in methods and members. | |||
2022-09-08 | [Net] Rename "ssl" references to "tls" in methods and members. | Fabio Alessandrelli | |
2022-09-07 | Fix key mapping changes when moving from macOS to other platform | bruvzg | |
Removes separate `Command` key (use `Meta` instead). Adds an event flag to automatically remap `Command` <-> `Control` (cannot be set alongside `Control` or `Meta`). | |||
2022-09-07 | Remove / Replace old Navigation Debug Visualization | smix8 | |
- removes / replaces leftovers from old navigation debug code - cleanes SceneTree and ProjectSettings from old navigation debug | |||
2022-09-07 | Merge pull request #49466 from AnilBK/rotate-previews | Rémi Verschelde | |
Add rotation ability to material editor preview. | |||
2022-09-07 | Merge pull request #65471 from KoBeWi/s | Rémi Verschelde | |
Fix tile source selection from picking | |||
2022-09-07 | Add set_default_margin_all/individual to StyleBox | FireForge | |
2022-09-07 | Fix tile source selection from picking | kobewi | |
2022-09-07 | Rename ProgressBar.`percent_visible` to `show_percentage` | Micky | |
`percent_visible` -> `show_percentage` `set_percent_visible` -> `set_show_percentage` `is_percent_visible` -> `is_percentage_shown` | |||
2022-09-07 | Merge pull request #65447 from Faless/net/4.x_ssl_to_tls | Rémi Verschelde | |
[Net] Rename StreamPeerSSL to StreamPeerTLS. | |||
2022-09-07 | Merge pull request #65449 from ↵ | Rémi Verschelde | |
YuriSizov/editor-main-control-screen-container-node Rename `EditorInterface.get_editor_main_control` to `get_editor_main_screen` | |||
2022-09-07 | Merge pull request #65437 from YuriSizov/theme-gui-renames | Rémi Verschelde | |
Improve naming of theme properties throughout GUI code | |||
2022-09-07 | [Net] Rename StreamPeerSSL to StreamPeerTLS. | Fabio Alessandrelli | |
SSL has been deprectated almost 10 years ago. | |||
2022-09-07 | Enable material editor preview to be rotated. | Anilforextra | |
2022-09-07 | Rename EditorInterface.get_editor_main_control to get_editor_main_screen | Yuri Sizov | |
2022-09-06 | Rename raise() to move_to_front() | kobewi | |
2022-09-06 | Improve naming of theme properties throughout GUI code | Yuri Sizov | |
Rename ItemList's bg -> panel Rename ItemList's bg_focus -> focus Rename ProgressBar's bg -> background Rename ProgressBar's fg -> fill Rename Tree's bg -> panel Rename Tree's bg_focus -> focus Rename ScrollContainer's bg -> panel Rename FileDialog's *_icon_modulate -> *_icon_color Rename FileDialog's files_disabled -> file_disabled_color Rename CheckButton's on/off -> checked/unchecked Rename check_v_adjust -> check_v_offset | |||
2022-09-06 | Rename CONNECT_ONESHOT TO CONNECT_ONE_SHOT | Micky | |
For consistency. Every other exposed `one_shot` is spaced out like this. | |||
2022-09-06 | Merge pull request #64661 from Mickeon/rename-tilemap-world | Rémi Verschelde | |
Rename TileMap/GridMap.`world_to_map` and opposite to `local_to_map` | |||
2022-09-06 | Merge pull request #64417 from aaronfranke/has-space | Rémi Verschelde | |
Replace AABB/Rect2/Rect2i has_no_* methods with has_* methods | |||
2022-09-06 | Merge pull request #65361 from Mickeon/rename-range-lerp | Rémi Verschelde | |
Rename `range_lerp` to `remap` | |||
2022-09-06 | Fix various uninitialized member pointers | Rémi Verschelde | |
Using this command: ``` find -name "thirdparty" -prune -o -name "*.h" -exec sed -i {} -e '/return /! s/\t\([A-Za-z0-9_]* \*[A-Za-z0-9_]*\)\;/\t\1 = nullptr;/g' \; ``` And then reviewing the changes manually to discard the ones that don't seem correct/safe/good (notably changes to `core` unions). | |||
2022-09-06 | Merge pull request #65402 from m4gr3d/disable_android_editor_auto_focus_main | Rémi Verschelde | |
2022-09-06 | Merge pull request #65354 from V-Sekai/state_machine_freeze_new_transition | Rémi Verschelde | |
2022-09-05 | Disable logic that triggers automatic focus gain as the Godot Editor is loaded | Fredia Huya-Kouadio | |
For the Godot Android Editor, this is an inconvenience as it causes the soft keyboard to show and block half of the view | |||
2022-09-06 | Rename `range_lerp` to `remap` | Micky | |
2022-09-05 | Rename TileMap/GridMap.`world_to_map` and opposite to `local_to_map` | Micky | |
For both TileMap and GridMap: - `world_to_map` -> `local_to_map` - `map_to_world` -> `map_to_local` Also changes any mention of "world" in this context to "local" to avoid future confusion. Finally, updates the docs of both methods for consistency. In particular, adding a note on how to convert the returned values from local to global coordinates and vice versa. | |||
2022-09-05 | Merge pull request #65306 from ↵ | Rémi Verschelde | |
Rindbee/fix-Skeleton3DEditor-causing-crash-in-sanitizer-enabled-builds | |||
2022-09-05 | Fix UndoRedo when creating new AnimationStateMachine transition and node. | SaracenOne | |
2022-09-05 | Freeze line when releasing mouse to create a new transition. | SaracenOne | |
2022-09-04 | Replace Rect2(i) has_no_area with has_area | Aaron Franke | |
2022-09-04 | Fix Skeleton3DEditor causing crash in sanitizer enabled builds | Rindbee | |
The life cycle of the `Skeleton3DEditor` singleton is too short, and when it is destroyed, part of the logic needs to be called when its child nodes exist. | |||
2022-09-03 | Fix Skeleton3DEditor crash | Rindbee | |
2022-09-02 | Merge pull request #65210 from YuriSizov/control-customizable-cache-p3 | Rémi Verschelde | |
2022-09-02 | Merge pull request #64952 from Chaosus/vs_rename_uniform_to_param | Rémi Verschelde | |
2022-09-02 | Fix theme propagation in various parts of the editor | Yuri Sizov | |
2022-09-02 | Add `is_zero_approx` methods to `Vector2`, `3`, and `4` | Jonathan Nicholl | |
2022-09-01 | Merge pull request #64198 from Geometror/add-bitmap-tests | Rémi Verschelde | |
2022-09-01 | Merge pull request #63479 from DarkKilauea/nav-link | Rémi Verschelde | |
2022-09-01 | Merge pull request #65135 from reduz/export-customization-plugins | Rémi Verschelde | |
2022-09-01 | Refactor BitMap and add tests | Hendrik Brucker | |
Co-authored-by: Resul Çelik <resul_celik@hotmail.com> | |||
2022-09-01 | Add support for scene/resource customization in export plugins | Juan Linietsky | |
EditorExportPlugin adds a set of callbacks to allow customizing scenes, resources or subresources in all files exported: * Can take scene files, resource files and subresources in all of them. * Uses a cache for the converted files if nothing changes, so this work only happens if a file is modified. * Uses hashing to differentiate export configuration caches. * Removed the previous conversion code to binary, as this one uses existing stuff. This API is useful in several scenarios: * Needed by the "server" export platform to get rid of textures, meshes, audio, etc. * Needed by text to binary converters. * Needed by eventual optimizations such as shader precompiling on export, mesh merging and optimization, etc. This is a draft, feedback is very welcome. | |||
2022-09-01 | Rename `uniform` to `parameter` across the engine | Yuri Rubinsky | |
2022-09-01 | Merge pull request #65124 from zhehangd/fix_basis | Rémi Verschelde | |
2022-09-01 | Merge pull request #65162 from YuriSizov/editor-gradients-united | Rémi Verschelde | |
Unite `GradientEdit` and `GradientEditor` as editor-only widget | |||
2022-08-31 | Basis constructor: row vectors -> column vectors | Zhehang Ding | |
2022-08-31 | Unite GradientEdit and GradientEditor as editor-only widget | Yuri Sizov | |
2022-08-31 | Implement Physical Light Units as an optional setting. | clayjohn | |
This allows light sources to be specified in physical light units in addition to the regular energy multiplier. In order to avoid loss of precision at high values, brightness values are premultiplied by an exposure normalization value. In support of Physical Light Units this PR also renames CameraEffects to CameraAttributes. |