Age | Commit message (Collapse) | Author |
|
Added warning when disabling editable_instance
|
|
Fix various warnings raised by Clang 7
|
|
Fixed inspector not going back to single-node when deselecting an item.
|
|
Fixed name of deleted node not dissapearing from inspector dock.
|
|
Namely:
[-Wunneeded-internal-declaration]
[-Wunused-comparison]
[-Wunused-const-variable]
[-Wunused-function]
[-Wunused-private-fields]
Fixes the following Clang 7 warnings:
```
editor/plugins/script_editor_plugin.cpp:1417:20: warning: function '_find_node_with_script' is not needed and will not be emitted [-Wunneeded-internal-declaration]
editor/scene_tree_dock.cpp:1859:14: warning: function '_find_last_visible' is not needed and will not be emitted [-Wunneeded-internal-declaration]
modules/gdscript/gdscript_parser.cpp:7838:19: warning: equality comparison result unused [-Wunused-comparison]
scene/resources/mesh.cpp:549:35: warning: unused variable '_array_types' [-Wunused-const-variable]
scene/resources/mesh.cpp:563:18: warning: unused variable '_format_translate' [-Wunused-const-variable]
drivers/gles3/rasterizer_scene_gles3.cpp:54:28: warning: unused function 'store_transform2d' [-Wunused-function]
core/io/file_access_network.h:50:6: warning: private field 'ml' is not used [-Wunused-private-field]
core/io/file_access_zip.h:93:14: warning: private field 'archive' is not used [-Wunused-private-field]
core/io/resource_format_binary.h:122:6: warning: private field 'bin_meta_idx' is not used [-Wunused-private-field]
core/message_queue.h:47:9: warning: private field 'mutex' is not used [-Wunused-private-field]
main/tests/test_gui.cpp:63:11: warning: private field 'control' is not used [-Wunused-private-field]
modules/gdscript/gdscript_parser.h:558:7: warning: private field 'completion_static' is not used [-Wunused-private-field]
platform/x11/os_x11.h:148:11: warning: private field 'ip_unix' is not used [-Wunused-private-field]
platform/x11/os_x11.h:180:7: warning: private field 'net_wm_icon' is not used [-Wunused-private-field]
platform/x11/os_x11.h:189:6: warning: private field 'audio_driver_index' is not used [-Wunused-private-field]
platform/x11/os_x11.h:190:15: warning: private field 'capture_idle' is not used [-Wunused-private-field]
servers/physics/body_pair_sw.h:79:6: warning: private field 'cc' is not used [-Wunused-private-field]
servers/visual/visual_server_raster.h:62:7: warning: private field 'draw_extra_frame' is not used [-Wunused-private-field]
```
|
|
Fixed inspector not going back to single-node when deselecting an item.
|
|
Fixed name of deleted node not dissapearing from inspector dock.
|
|
Fixed setting node as root deleting all non-children of that node.
|
|
Change viewport type (2D/3D) according to the type of node just created
from the "Create Root Node" menu.
|
|
Fixed favorite nodes list not being saved
|
|
Added warning when disabling editable_instance to prevent data loss.
|
|
|
|
|
|
It would default either to '.gd' when created from the script editor,
or to 'res:///NodeName.gd' (three '/') when created from the scene tree dock.
|
|
Prevent overwriting open scenes when saving, this fixes #17628
|
|
|
|
|
|
|
|
|
|
Add toggle for favorites in create_root_dialog
|
|
Tweak some editor button texts
|
|
|
|
- Add pressed state to clear button
- Enable clear button on all inputs with search icon
- Remove duplicate clear buttons
- Fix rendering of icon for center and right alignments
- Add clear button to more search fields
- Add clear icon to default theme
- Add method to control enabled state of clear button
- Add property to enable clear button from inspector
|
|
|
|
|
|
[ci skip]
|
|
|
|
Context Menu Improvements
|
|
|
|
|
|
Rename 'Discard Instancing' to 'Make Local'
|
|
|
|
|
|
Rename the option in the right click menu in the Scene nodes
because Discard Instancing is confusing (it could imply deleting the
instance). I renamed it to Make Local which is used for example in
Blender as well when talking about appending assets from other files.
I think it's clearer. Or it can be renamed to Make Instance Local, but I
thought it's a bit oo long so I went just with Make Local as this option
appears in the menu only when the node is an instance anyway.
|
|
Make same child index as edited scene when using live edit
|
|
|
|
|
|
|
|
Fix bug in cdcfb9582e6e9f18df1475619f2ebe62b7f0bdce leading to the
root node not being selected by default.
Fix #18557.
|
|
-Plenty of fixes and improvements to new inspector
-Fixes that were needed to make inspector work better
|
|
|
|
-Changed UI resizing code, gained huge amount of speed.
-Reorganized timer sync to clean up behavior (sorry forgot commit this before)
-
|
|
Implements "Batch Rename" editor tool.
|
|
If no node is selected, it will default to selecting the tree root node to instance a child under. This solves #18557
|
|
|
|
Extended node rename function to also support renaming node path script instance property
|
|
|
|
|
|
properties and fixed animation rename bug perform_node_renames function now also checks for any script instance with node paths so they also get renamed to point to new paths. This also fixes a bug with animation player renaming where two nodes had the same name.
|
|
Allow Attach and Clear Script on multiple nodes
|