Age | Commit message (Collapse) | Author |
|
For us, it practically only changes the fact that `A<A<int>>` is now
used instead of the C++03 compatible `A<A<int> >`.
Note: clang-format 10+ changed the `Standard` arguments to fully
specified `c++11`, `c++14`, etc. versions, but we can't use `c++17`
now if we want to preserve compatibility with clang-format 8 and 9.
`Cpp11` is still supported as deprecated alias for `Latest`.
|
|
- Fix `callable_mp` bindings to methods which used to have default
arguments passed to `bind_method`. We now have to re-specify them
manually when connecting.
- Re-add `GroupsEditor::update_tree` binding.
- Misc code quality changes along the way.
|
|
|
|
It's tedious work...
Some can't be ported as they depend on private or protected methods
of different classes, which is not supported by callable_mp (even if
it's a class inherited by the current one).
|
|
Remove now unnecessary bindings of signal callbacks in the public API.
There might be some false positives that need rebinding if they were
meant to be public.
No regular expressions were harmed in the making of this commit.
(Nah, just kidding.)
|
|
|
|
objects and made them default.
|
|
Specifically: "exisiting_script_removable" -> "existing_script_removable"
|
|
|
|
-Texture renamed to Texture2D
-TextureLayered as base now inherits 2Darray, cubemap and cubemap array
-Removed all references to flags in textures (they will go in the shader)
-Texture3D gone for now (will come back later done properly)
-Create base rasterizer for RenderDevice, RasterizerRD
|
|
|
|
|
|
Happy new year to the wonderful Godot community!
We're starting a new decade with a well-established, non-profit, free
and open source game engine, and tons of further improvements in the
pipeline from hundreds of contributors.
Godot will keep getting better, and we're looking forward to all the
games that the community will keep developing and releasing with it.
|
|
|
|
|
|
|
|
|
|
|
|
Hopefully fixes #24484 and fixes #27222.
|
|
aole/placeholder-confirmation-dialog-for-editable-children
Placeholder confirmation dialog for editable children
|
|
Fire placeholder confirmation dialog box when editable children option is already checked.
Fixes #28863
|
|
BenjaminRiley/save-original-scene-after-save-as-branch
'Save Branch as Scene' also saves original scene
|
|
When saving a branch as a scene, can now undo replacing the original branch with the new branch scene. 'Save Branch as Scene' previously would not mark the original scene as changed, and therefore no prompt would appear if the scene was closed immediately after saving the branch.
The new branch scene is not deleted when undo-ing.
|
|
Add overriden properties to the documentation
|
|
|
|
Improve the node deletion confirmation message
|
|
|
|
- Add "the root node" in the beginning if the selected node
is the current scene's root
- Add "and its children" at the end of the message if the node
has at least one child and is not an instanced scene
|
|
Fixes #31855
|
|
The confirmation message now displays the number of nodes to delete,
or the node's name if only one node is selected.
|
|
This can be useful for plugins that rely on some signals emitted by it, Like my Networked Scene Editor plugin https://github.com/thimenesup/GodotNetworkedSceneEditor
|
|
Condensed some if and ERR statements. Added dots to end of error messages
Couldn't figure out EXPLAINC. These files gave me trouble: core/error_macros.h, core/io/file_access_buffered_fa.h (where is it?),
core/os/memory.cpp,
drivers/png/png_driver_common.cpp,
drivers/xaudio2/audio_driver_xaudio2.cpp (where is it?)
|
|
|
|
|
|
Make custom types more subtle and more useful
|
|
Implements #6067 (aaronfranke's idea)
Fixes #26980
|
|
Fixes #20187
|
|
Prevent the application from crashing by simply checking if current "selection" is not null before accessing it.
Fixes #30493
|
|
|
|
Smarter node placement after duplicating
|
|
Reparent selection without flattening
|
|
|
|
|
|
When reparenting a multi-selection via drag and drop, the hierarchy was flattened. This change resolves that issue.
|
|
Expand/collapse nodes recursively in scene tree dock
|
|
SceneTreeDock will now only attach scripts to the selected node if the ScriptCreateDialog was opened from the SceneTreeDock
|
|
|
|
ScriptCreateDialog was opened from the SceneTreeDock
|
|
Fix editor crash when saving a scene containing an inherited scene instance.
|
|
- Don't show create_root_dialog if remote scenetree visible
- Hide create_root_dialog on showing of remote scenetree
Fixes #29288
|