Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-10-14 | Make some Image methods static | kobewi | |
2022-10-14 | Merge pull request #63607 from BastiaanOlij/fix_xr_origin | Rémi Verschelde | |
Add current setting to XROrigin3D and fix double positioning HMD | |||
2022-10-13 | Comment not to remove `data` structs in some Nodes | Micky | |
2022-10-13 | Add current setting to XROrigin3D and fix double positioning HMD | Bastiaan Olij | |
2022-10-11 | Merge pull request #66221 from Mickeon/painstakingly-appending-ds-en-you-tea-es | Rémi Verschelde | |
Rename remaining "*_enable" to "*_enabled" | |||
2022-10-11 | Merge pull request #67192 from RedMser/light-scale-warning | Rémi Verschelde | |
Show warning when scaling Light3D nodes | |||
2022-10-10 | Show warning when scaling Light3D nodes | RedMser | |
2022-10-10 | Remove incorrect px suffixes | RedMser | |
2022-10-09 | Merge pull request #67076 from timothyqiu/hint-enum-suffix | Rémi Verschelde | |
Remove invalid suffix hint for enum property | |||
2022-10-08 | Merge pull request #65983 from Mickeon/rename-audio-player-volume-db | Rémi Verschelde | |
Rename AudioStreamPlayer3D's `unit_db` to `volume_db` | |||
2022-10-08 | Merge pull request #67062 from timothyqiu/enum-space | Rémi Verschelde | |
Remove leading spaces from enumerator name hints | |||
2022-10-08 | Remove invalid suffix hint for enum property | Haoyu Qiu | |
2022-10-08 | Remove leading spaces from enumerator name hints | Haoyu Qiu | |
For `PROPERTY_HINT_ENUM` properties, enumerator names can be provided as a comma separated list. There're a few properties that add leading spaces to the names (e.g. `First, Second, Third`). These spaces are included in the Inspector dropdown, which is unexpected. It's better to leave the surrounding spaces untouched because it could be part of the resulting string value (the variable is a string enum). And most other enum hints don't contain surrounding whitespaces. This PR removes the spaces and documents this `PROPERTY_HINT_ENUM` behavior. | |||
2022-10-07 | declare "_validate_property" as protected | Arthur J | |
In other classes, the function _validate_property is declared as protected (in the case of Area2D), but in Area3D it's declared as private, which causes compile errors when trying to extend the class in a C++ module for example. | |||
2022-10-07 | Fix MSVC warnings, rename shadowed variables, fix uninitialized values, ↵ | bruvzg | |
change warnings=all to use /W4. | |||
2022-10-06 | Merge pull request #66951 from rburing/restore_recovery_as_collision | Rémi Verschelde | |
Revert "Turn on recovery as collisions only for floor snapping" | |||
2022-10-05 | Revert "Turn on recovery as collisions only for floor snapping as this leads ↵ | Ricardo Buring | |
to unwanted behaviour for other surface than the floor." This reverts commit 10395f5df2a1cac6ed83e674c084e62a88fcdde9. | |||
2022-10-05 | Merge pull request #66720 from qarmin/unintialized_memory | Rémi Verschelde | |
Remove usage of unitialized variables | |||
2022-10-05 | Merge pull request #66839 from aaronfranke/editor-prop-hide-slider | Rémi Verschelde | |
Fix `hide_slider` vs `no_slider` inconsistency in editor property code | |||
2022-10-03 | Move "Create Debug Tangents" into an editor plugin | bad | |
Instead of exporting the "create_debug_tangents" function via METHOD_FLAG_EDITOR it gets executed by an editor plugin. This moves it from the "Manage object properties" menu into a mesh menu. It also adds undo/redo functionality to the create debug tangents option. | |||
2022-10-03 | Fix hide_slider vs no_slider inconsistency in editor property code | Aaron Franke | |
2022-10-03 | Remove NO_THREADS fallback code, Godot 4 requires thread support | Rémi Verschelde | |
This also removes `OS::can_use_threads` from the public API since it's always true. | |||
2022-10-01 | Remove usage of unitialized variables | Rafał Mikrut | |
2022-09-29 | Merge pull request #66592 from KoBeWi/look_at_me_I_am_the_captain_now | Rémi Verschelde | |
Fail `look_at()` if not inside tree | |||
2022-09-29 | Merge pull request #66143 from DarkKilauea/nav-queries-agent | Rémi Verschelde | |
Update NavigationAgent to use query_path | |||
2022-09-29 | Fail look_at() if not inside tree | kobewi | |
2022-09-29 | Merge pull request #65807 from clayjohn/light-units-bug | Rémi Verschelde | |
Validate physical light units in GI classes. | |||
2022-09-28 | Update NavigationAgent to use query_path | Josh Jones | |
This paves the way for having agents respond to link traversal. | |||
2022-09-22 | Merge pull request #64679 from DarkKilauea/nav-region-props | Rémi Verschelde | |
Improve consistency of NavigationRegion setters | |||
2022-09-22 | Merge pull request #66110 from Zylann/reference_get_count | Rémi Verschelde | |
get_reference_count()` | |||
2022-09-21 | Improve consistancy of NavigationRegion setters | Josh Jones | |
2022-09-21 | Rename remaining "*_enable" to "*_enabled" | Micky | |
Material.`proximity_fade_enable` -> `proximity_fade_enabled` Material.`set_proximity_fade` -> `set_proximity_fade_enabled` (Material.`is_proximity_fade_enabled` is unchanged) Area3D.`reverb_bus_enable` -> `reverb_bus_enabled` (`set_use_reverb_bus` & `is_using_reverb_bus` are unchanged) RDPipelineRasterizationState: `depth_bias_enable` -> `depth_bias_enabled` `set_depth_bias_enable` -> `set_depth_bias_enabled` `get_depth_bias_enable` -> `get_depth_bias_enabled` Bonus: Area3D.`set_reverb_bus` -> `set_reverb_bus_name` Area3D.`get_reverb_bus` -> `set_get_reverb_bus_name` | |||
2022-09-21 | Rename and expose `RefCounted::get_reference_count()` | Marc Gilleron | |
2022-09-21 | Merge pull request #65828 from rburing/body_state_sync_callable | Rémi Verschelde | |
make `body_set_state_sync_callback` take a `Callable` | |||
2022-09-20 | Merge pull request #66064 from kleonc/sprite3d-fix-drawing-with-vertical-margins | Rémi Verschelde | |
`Sprite3D`/`AnimatedSprite3D` Fix drawing `AtlasTexture`s with vertical margins differently than in 2D | |||
2022-09-19 | Merge pull request #66112 from Zylann/get_configuration_warnings_psa | Rémi Verschelde | |
Change return type of `get_configuration_warnings` to `PackedStringArray` | |||
2022-09-19 | Change return type of `get_configuration_warnings` to `PackedStringArray` | Marc Gilleron | |
2022-09-19 | Increases the number of maximum detected collisions | fabriceci | |
2022-09-19 | Merge pull request #64728 from fabriceci/only-report-recovery-for-floor-snapping | Rémi Verschelde | |
Turn on recovery as collisions only for floor snapping | |||
2022-09-19 | Expose `NOTIFICATION_LOCAL_TRANSFORM_CHANGED` | Marc Gilleron | |
2022-09-18 | Turn on recovery as collisions only for floor snapping as this leads to ↵ | fabriceci | |
unwanted behaviour for other surface than the floor. | |||
2022-09-18 | `SpriteBase3D` Fix drawing AtlasTextures with vertical margins differently ↵ | kleonc | |
than in 2D | |||
2022-09-18 | Move duplicated drawing code from `Sprite3D`/`AnimatedSprite3D` to ↵ | kleonc | |
`SpriteBase3D` | |||
2022-09-18 | Merge pull request #44143 from KoBeWi/callable_multiplayer | Rémi Verschelde | |
2022-09-18 | Port remaining connections to callable_mp | Tomasz Chabora | |
2022-09-18 | Merge pull request #65931 from ↵ | Rémi Verschelde | |
fabriceci/add-recovery-as-collision-in-low-level-methods Add recovery_as_collision in move_and_collide/test_move | |||
2022-09-17 | Rename AudioStreamPlayer3D's `unit_db` to `volume_db` | Micky | |
AudioStreamPlayer3D.`unit_db` -> `volume_db` Now matches the same name AudioStreamPlayer and AudioStreamPlayer2D use. | |||
2022-09-17 | Add recovery_as_collision in move_and_collide/test_move | fabriceci | |
2022-09-16 | Tweak LightmapGI defaults to be closer to the CPU lightmapper | Hugo Locurcio | |
- Use 3 bounces by default. - Enable environment lighting from the scene by default. - This is not done in `3.x` for compatibility with existing projects, but it makes sense to do this by default since pretty much all outdoor scenes benefit from this. - Set the custom environment color to white (like ReflectionProbe). - Its default energy is still 0, so it's invisible by default. - Enable the generation of dynamic object probes by default. - Tweak the `max_texture_size` property hint for better usability. - Improve error messages when passing invalid sizes to `LightmapGI.set_max_texture_size()`. | |||
2022-09-16 | Merge pull request #65148 from Mickeon/animated-sprite-negative-speed-scale | Rémi Verschelde | |
Allow negative `speed_scale` in AnimatedSprite2D & 3D |