aboutsummaryrefslogtreecommitdiff
path: root/editor/scene_tree_dock.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Fix context menu of first node in a new scenesersoong2017-11-241-1/+1
|
* Improved update for remote scene tree and remote object.geequlim2017-11-231-0/+4
|
* Add editor setting to allow keep show local scene tree while debugger start.geequlim2017-11-221-2/+10
| | | | Rename editor setting scene_tree_refresh_interval to remote_scene_tree_refresh_interval.
* Merge pull request #12284 from bojidar-bg/allow-subproperty-setRémi Verschelde2017-11-211-1/+1
|\ | | | | Allow for getting/setting "dotted" properties of objects
| * Allow for getting/setting indexed properties of objects using get/set_indexedBojidar Marinov2017-11-211-1/+1
| | | | | | | | Performance is around the same as using pure set() through GDScript.
* | Merge pull request #11940 from GodotExplorer/debuggerRémi Verschelde2017-11-201-0/+2
|\ \ | | | | | | Enhanced debugger for godot 3.0
| * | Move the remote scene tree to the scene tree dock.Geequlim2017-11-171-0/+2
| | | | | | | | | | | | | | | | | | Ignore all script constants in the global section of the breakpoint stack. Check property size before send to avoid too large of data be sent. Fix crash while clear the remote objects from the debugger.
* | | Merge pull request #12359 from kubecz3k/spatial-lockRémi Verschelde2017-11-201-0/+4
|\ \ \ | | | | | | | | ability to lock spatial nodes transform in editor
| * | | ability to lock spatial nodes transform in editorJakub Grzesik2017-11-111-0/+4
| | | |
* | | | Merge pull request #13041 from RandomShaper/unify-node-duplicateRémi Verschelde2017-11-201-78/+2
|\ \ \ \ | | | | | | | | | | Let SceneTreeDock duplicate nodes via Node::duplicate()
| * | | | Let SceneTreeDock duplicate nodes via Node::duplicate()Pedro J. Estébanez2017-11-191-78/+2
| | |/ / | |/| | | | | | | | | | Helps with #11182.
* / | | Fix #10798: Fixes Change Type does not change iconOrkun2017-11-191-0/+2
|/ / / | | | | | | | | | | | | | | | | | | Problem : While replacing old node properties with new ones, we also copy meta data of old node's icon Solve: don't copy meta so don't override _editor_icon
* | | Merge pull request #12976 from Paulb23/scene_tree_add_undo_issue_6125Rémi Verschelde2017-11-161-0/+1
|\ \ \ | | | | | | | | Fixed scene tree updating when undo/redo root node creation, issue 6125
| * | | Fixed scene tree updating when undoing root node creation, issue 6125Paulb232017-11-161-0/+1
| | |/ | |/|
* | | Add support for remote debug in scene tree.Juan Linietsky2017-11-151-0/+60
| | |
* | | Duplicate signals fixesChaosus2017-11-131-0/+8
|/ /
* / Fixed scene tree not updating when undo/redo delete of root node, issue 3642Paulb232017-11-121-0/+1
|/
* Editor: Update 2D viewport and inspector selection on delete. Fix #12591.mhilbrunner2017-11-081-4/+6
|
* Use node name as default filename when attaching script.Benjamin2017-10-311-0/+8
| | | | | | When attaching a script to a node that isn't saved to a scene file, use its name as default filename. If the edited scene's root node *has* been saved to a file, use that directory.
* create dialog search preferrence fixes: #11697toger52017-09-291-0/+12
|
* Fixed a lot of HiDPI metrics.Daniel J. Ramirez2017-09-181-1/+0
|
* Merge pull request #11007 from saltares/issue-9988Rémi Verschelde2017-09-121-1/+1
|\ | | | | Renames _add_child_below_node() to add_child_below_node(). Fixes #9988.
| * Renames _add_child_below_node() to add_child_below_node(). Closes #9988.David Saltares2017-09-051-1/+1
| |
* | Merge pull request #11026 from hpvb/fix-assign-in-ifRémi Verschelde2017-09-121-17/+28
|\ \ | | | | | | Remove assignment and declarations in if statements
| * | Remove assignment and declarations in if statementsHein-Pieter van Braam2017-09-081-17/+28
| |/ | | | | | | | | | | After discussing with @reduz and @akien-mga it was decided that we do not allow assignments or declarations in if statements. This PR removes the instances of this I could find by automated means.
* / Fix duplication of nodes resulting in shared metadataBojidar Marinov2017-09-111-1/+8
|/ | | | Fixes #9547
* added icon updating to most ui elementstoger52017-08-301-0/+8
|
* Improved and added some iconsDaniel J. Ramirez2017-08-291-2/+2
|
* Use HTTPS URL for Godot's website in the headersRémi Verschelde2017-08-271-1/+1
|
* Cleanup tons of obsolete commented out codeRémi Verschelde2017-08-261-127/+7
| | | | | Mostly in EditorNode, dropping some obsolete editor plugins and also a cleanup of ProjectSettings/EditorSettings.
* Editor: Add some more translatable strings.Andreas Haas2017-08-251-1/+1
|
* Convert Object::cast_to() to the static versionHein-Pieter van Braam2017-08-241-27/+23
| | | | | | | | | | | | Currently we rely on some undefined behavior when Object->cast_to() gets called with a Null pointer. This used to work fine with GCC < 6 but newer versions of GCC remove all codepaths in which the this pointer is Null. However, the non-static cast_to() was supposed to be null safe. This patch makes cast_to() Null safe and removes the now redundant Null checks where they existed. It is explained in this article: https://www.viva64.com/en/b/0226/
* Properly manage drawing of primitives when they lack an area, fixes #8930Juan Linietsky2017-08-181-0/+2
|
* Makes all Godot API's methods Lower CaseIndah Sylvia2017-08-071-3/+3
|
* correct RMB options for instanced inherited sceneJakub Grzesik2017-07-281-2/+2
| | | | | | | When scene is inherited and later instanced as a part of another scene, only options related to instancing will be visible - same behavior as in 2.x closes #9901
* Merge pull request #9706 from djrm/theme_fixesRémi Verschelde2017-07-231-5/+2
|\ | | | | Icons can now be added inside line edits (Search icon).
| * Icons can now be added inside line edits (Search icon).Daniel J. Ramirez2017-07-191-5/+2
| | | | | | | | | | | | Fixed window title bar margins. fixed compilation error
* | -Renamed GlobalConfig to ProjectSettings, makes more sense.Juan Linietsky2017-07-191-2/+2
|/ | | | -Added system for feature overrides, it's pretty cool :)
* Fix uncheckable checkboxes in RMB menu. closes #9625Jakub Grzesik2017-07-141-6/+11
|
* fix for redundant RMB options for toplevel nodeJakub Grzesik2017-07-041-3/+5
|
* Clicking on subscene icon will open itJakub Grzesik2017-07-031-0/+130
| | | | All options are moved into RMB menu
* Quick access list to subresources on RMBJuan Linietsky2017-06-051-0/+62
|
* Removal of InputEvent as built-in Variant type..Juan Linietsky2017-05-201-4/+6
| | | | this might cause bugs I haven't found yet..
* Merge pull request #8631 from volzhs/editor-theme-customRémi Verschelde2017-05-201-2/+1
|\ | | | | New customizable editor theme
| * New customizable editor themevolzhs2017-05-091-1/+2
| |
| * Revert "Add new editor and default theme (WIP)"volzhs2017-05-031-2/+0
| | | | | | | | This reverts commit f045efe007cffb87238ee519b7f33d710814ded7.
* | Reworked look and feel of Add Script Dialog.Przemysław Gołąb (n-pigeon)2017-05-061-2/+1
|/ | | | | Untangled a lot of Controls logic code and placed it in one place. Which squashed few bugs and made code easier to maintain.
* Update editor themevolzhs2017-04-281-0/+1
|
* Add new editor and default theme (WIP)Daniel J. Ramirez2017-04-271-0/+2
|
* Rename [gs]et_pos to [gs]et_position for ControlsSergey Pusnei2017-04-101-4/+4
| | | | | | | | Control set_pos -> set_position Control set_global_pos -> set_global_position [gs]et_mouse_pos -> [gs]et_mouse_position [gs]et_global_mouse_pos -> [gs]et_global_mouse_position fixes #8005