Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-05-05 | Core: Rename math 'phi' arguments to 'angle' | Rémi Verschelde | |
2022-05-05 | Specify return value of Transform3D.scaled() and more | Micky | |
Add more `[code]` (Transform3D) Co-authored-by: kleonc <9283098+kleonc@users.noreply.github.com> Add more `[code]` (Transform2D) Co-authored-by: kleonc <9283098+kleonc@users.noreply.github.com> | |||
2022-05-04 | Add ability to `bake_navigation_mesh` off thread. | Pawel Lampe | |
This feature makes it possible to workaround problems such as: - long baking time due to heavy synchronization when parsing geometry from mesh instances - crash when freeing `NavigationMeshInstance` while baking - errors when actively baking node tree is being detached from the scene tree | |||
2022-05-04 | Merge pull request #60740 from KoBeWi/postapo_frame_draw | Rémi Verschelde | |
2022-05-04 | Merge pull request #60723 from reduz/refactor-module-initialization | Rémi Verschelde | |
2022-05-04 | Refactor module initialization | reduz | |
* Changed to use the same stages as extensions. * Makes the initialization more coherent, helping solve problems due to lack of stages. * Makes it easier to port between module and extension. * removed the DRIVER initialization level (no longer needed). | |||
2022-05-04 | Merge pull request #60731 from KoBeWi/action_editor | Rémi Verschelde | |
Clarify InputMap.action_get_events() in the editor | |||
2022-05-04 | Improve Viewport.get_texture() description | kobewi | |
2022-05-03 | Add OS::is_process_running function. | mdavisprog | |
Adds the is_process_running function to the native OS class and exposes it to script. This is implemented on Windows and Unix platforms. A stub is provided for other platforms that do not support this function. Documentation is updated to reflect new API function. | |||
2022-05-03 | Clarify InputMap.action_get_events() in the editor | kobewi | |
2022-05-03 | Merge pull request #60583 from reduz/placeholder-assets | Rémi Verschelde | |
2022-05-03 | Merge pull request #59321 from Calinou/primitive-meshes-csg-tweak-default-sizes | Rémi Verschelde | |
Decrease default sizes of some primitive and CSG meshes for consistency | |||
2022-05-03 | Merge pull request #51102 from Calinou/renderingserver-add-api-version-getter | Rémi Verschelde | |
Add `get_video_adapter_api_version()` to RenderingServer | |||
2022-05-03 | Merge pull request #24402 from guilhermefelipecgs/state_machine_improvement | Rémi Verschelde | |
Improvements to AnimationNodeStateMachine | |||
2022-05-03 | Merge pull request #60644 from PureAsbestos/master | Rémi Verschelde | |
2022-05-03 | Add `get_video_adapter_api_version()` to RenderingServer | Hugo Locurcio | |
This method can be used to get the graphics API version currently in use (such as Vulkan). It can be used by projects for troubleshooting or statistical purposes. | |||
2022-05-02 | Improvements of state machine | Guilherme Felipe | |
- Open the menu to add new animation nodes by dragging the transitions to empty areas and automatically connecting them. - Adds box selection to the state machine. - Add feature to group/ungroup selected nodes in a "sub" state machine. - Add start/end node by default. In addition, add new color to these nodes to differentiate then. - Add tooltip for transitions to show the connection "from -> to". - Add new "type" of transition line when multiple transitions are grouped. - Add popup to connect nodes in sub state machine. - Add dialog to select which nodes can be deleted when they are grouped. - Add classes: AnimationNodeStartState AnimationNodeEndState EditorAnimationMultiTransitionEdit - Implements disabled transition API Changes: - Now it's posible to add transitions between state machines, `AnimationNodeStateMachine::add_transition` will works with relative path, this means you can use it like this `add_transition("Idle", "Walk", tr)` or `add_transition("Idle", "StateMachine/Shoot)`. | |||
2022-05-02 | Fix screen_get_usable_rect returning display safe area | Marcel Admiraal | |
2022-05-02 | Merge pull request #60551 from madmiraal/implement-3466 | Rémi Verschelde | |
Add a method for obtaining display cutouts on Android | |||
2022-05-01 | Merge pull request #60655 from smix8/navigation_region_rid_4.x | Rémi Verschelde | |
Add get_region_rid() to NavigationRegion2D and NavigationRegion3D | |||
2022-04-30 | Merge pull request #60650 from bruvzg/lbl_n_spr_z_order | Rémi Verschelde | |
2022-04-30 | Expose Label3D and Sprite*3D material render priority properties. | bruvzg | |
2022-04-30 | Add get_region_rid() NavigationRegion2D and NavigationRegion3D | smix8 | |
Add get_region_rid() to NavigationRegion2D and NavigationRegion3D | |||
2022-04-30 | Merge pull request #60614 from timothyqiu/lerp-angle-doc | Rémi Verschelde | |
2022-04-30 | Document lerp_angle behavior when angles are approximately PI apart | Haoyu Qiu | |
2022-04-30 | Merge pull request #59419 from Calinou/doc-basematerial3d-detail | Rémi Verschelde | |
2022-04-29 | Change 'throws an error' to 'prints an error' in classref | PureAsbestos | |
2022-04-29 | Merge pull request #59411 from Calinou/doc-tonemap | Rémi Verschelde | |
Improve documentation for tonemapping operators | |||
2022-04-29 | Merge pull request #59418 from Calinou/doc-environment | Hugo Locurcio | |
2022-04-29 | Merge pull request #60070 from Calinou/proceduralskymaterial-add-dithering | Rémi Verschelde | |
Add dithering to ProceduralSkyMaterial to combat banding | |||
2022-04-29 | Small improvements to get_first_node_in_group() | kobewi | |
2022-04-29 | Merge pull request #60405 from CheetoMonster/documentation-edits | Rémi Verschelde | |
BoxContainer description to point to the "Using Containers" page | |||
2022-04-28 | [Label3D] Add offset property. | bruvzg | |
2022-04-28 | Merge pull request #58599 from Calinou/styleboxflat-add-skew | Rémi Verschelde | |
Add a Skew property to StyleBoxFlat | |||
2022-04-28 | Miscellaneous Tween fixes | Haoyu Qiu | |
2022-04-28 | Implement text-to-speech support on Android, iOS, HTML5, Linux, macOS and ↵ | bruvzg | |
Windows. Implement TextServer word break method. | |||
2022-04-28 | Implement placeholder assets | reduz | |
* Placeholder textures * Placeholder meshes * Placeholder material This PR is the first step towards implementing https://github.com/godotengine/godot-proposals/issues/2756 It adds an asset type that uses no resources, which can be used to replace the existing ones on export for using on the upcoming server export. | |||
2022-04-28 | Link to Container tutorial | Chris verBurg | |
Users happening across any of the Container pages may not already know the intent of Containers, or which others are available. This commit adds a link to the existing "GUI containers" page in their tutorials sections. | |||
2022-04-27 | Decrease default sizes of some primitive and CSG meshes for consistency | Hugo Locurcio | |
2022-04-27 | Merge pull request #58685 from ↵ | Rémi Verschelde | |
IgorKordiukiewicz/gpu_particles_2d_interpolation_property Added interpolation property to GPUParticles2D | |||
2022-04-27 | Merge pull request #59582 from Faless/net/4.x_tcp_explicit_poll | Rémi Verschelde | |
2022-04-27 | Merge pull request #60331 from KoBeWi/tween_static() | Rémi Verschelde | |
2022-04-27 | Merge pull request #60275 from octetdev2/prefer-constant-for-docs | Rémi Verschelde | |
2022-04-27 | Merge pull request #59393 from techiepriyansh/move-gltf-export-under-scene-menu | Rémi Verschelde | |
2022-04-27 | Merge pull request #60319 from TokageItLab/implement-global-rest | Rémi Verschelde | |
2022-04-27 | Merge pull request #59979 from bruvzg/cpp_check2 | Rémi Verschelde | |
2022-04-27 | doc: Update iOS hint for Input.vibrate_handheld after #60397 | Rémi Verschelde | |
2022-04-27 | Expose move_to_trash() | kobewi | |
2022-04-26 | Merge pull request #60513 from Calinou/default-font-add-msdf-mipmap | Rémi Verschelde | |
Add MSDF and mipmap generation project settings for the default font | |||
2022-04-26 | [Net] Allow branch-specific MultiplayerAPIs. | Fabio Alessandrelli | |
Removes custom_multiplayer from Node. MultiplayerAPI overrides are now set at SceneTree level, and apply to whole branches. Impact on performance when using only the default multiplayer or overriding it is minimal, the use of branches can likely be further optimized by caching nodes and relevant MultiplayerAPI IDs. |