aboutsummaryrefslogtreecommitdiff
path: root/tools/editor/editor_data.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Refactoring: rename tools/editor/ to editor/Rémi Verschelde2017-03-051-979/+0
| | | | | | The other subfolders of tools/ had already been moved to either editor/, misc/ or thirdparty/, so the hiding the editor code that deep was no longer meaningful.
* -renamed globals.h to global_config.cpp (this seems to have caused a few ↵Juan Linietsky2017-02-211-1/+1
| | | | | | modified files) -.pck and .zip exporting redone, seems to be working..
* Rename the _MD macro to D_METHODHein-Pieter van Braam2017-02-131-6/+6
| | | | | | This new name also makes its purpose a little clearer This is a step towards fixing #56
* Removed import/export system, will start new one from scratch.Juan Linietsky2017-01-251-20/+0
|
* Style: Cleanups, added headers, renamed filesRémi Verschelde2017-01-161-0/+1
| | | | | | | | | Made sure files in core/ and tools/ have a proper Godot license header when written by us. Also renamed aabb.{cpp,h} and object_type_db.{cpp,h} to rect3.{cpp,h} and class_db.{cpp,h} respectively. Also added a proper header to core/io/base64.{c,h} after clarifying the licensing with the original author (public domain).
* Style: Fix whole-line commented codeRémi Verschelde2017-01-141-3/+5
| | | | | They do not play well with clang-format which aligns the `//` part with the rest of the code block, thus producing badly indented commented code.
* Renamed most signals so they refer to:Juan Linietsky2017-01-121-2/+2
| | | | | -An action being requested to the user in present tense: (ie, draw, gui_input, etc) -A notification that an action happened, in past tense (ie, area_entered, modal_closed, etc).
* Groundbreaking!! Godot resources can now be flagged to be local to the scene ↵Juan Linietsky2017-01-101-1/+1
| | | | | | | | | being edited! This means that each time this scene is instanced, the resource will be unique! As such, thanks to this, the following features were implemented: -ButtonGroup is no longer a control, it's now a resource local to the scene -ViewportTexture can be created from the editor and set to any object, making ViewportSprite and other kind of nodes obsolete!
* ObjectTypeDB was renamed to ClassDB. Types are meant to be more generic to ↵Juan Linietsky2017-01-021-7/+7
| | | | | | | | Variant. All usages of "type" to refer to classes were renamed to "class" ClassDB has been exposed to GDScript. OBJ_TYPE() macro is now GDCLASS()
* Welcome in 2017, dear changelog reader!Rémi Verschelde2017-01-011-1/+1
| | | | | | | | That year should bring the long-awaited OpenGL ES 3.0 compatible renderer with state-of-the-art rendering techniques tuned to work as low as middle end handheld devices - without compromising with the possibilities given for higher end desktop games of course. Great times ahead for the Godot community and the gamers that will play our games!
* fix get_selected_nodes()Juan Linietsky2016-09-101-2/+14
|
* Prevent to add node to selection when node is not inside treevolzhs2016-08-271-1/+1
|
* save the editor state of the right scene instead of currentMarianoGNU2016-07-081-0/+7
|
* Save all edited scenes when Runing (and auto-save is enabled). Fixes #4410MarianoGNU2016-07-081-9/+22
|
* Editor properly reloads scenes if they changed on disk or were reimportedJuan Linietsky2016-06-281-0/+4
|
* Modified editor strings to be translatable in the futureJuan Linietsky2016-05-031-3/+3
|
* Enables the possibility of editing on multiple plugins at same time on same ↵hodes2016-04-021-0/+10
| | | | object type.
* remove trailing whitespaceHubert Jarosz2016-03-091-3/+3
|
* Completed the support for plugins! It is not possible to add plugins.Juan Linietsky2016-02-271-2/+10
| | | | | | Not all APIs are provided yet, please request whathever you are missing. Some example plugins are provided in demos/plugins. Just copy them to a folder in your project named addons/ and then enable them from the project settings. Have fun!
* First attempt at making a more useful EditorPlugin API. Still undocumented, ↵Juan Linietsky2016-02-271-1/+18
| | | | but feedback welcome!
* -Fixed revert scene, should work proprely now, fixes #2782Juan Linietsky2016-01-231-0/+10
|
* -Make sure scenes properly update when switching tabs, even if sub-instances ↵Juan Linietsky2016-01-141-2/+2
| | | | changed. Fixes #3201
* Update copyright to 2016 in headersGeorge Marques2016-01-011-1/+1
|
* -scenes are properly reloaded when a dependency changes, fixes #2896Juan Linietsky2015-12-131-0/+90
| | | | (it's clevery done so local changes to scenes are kept even if unsaved)
* -ability to change scripts in external editor and still have properties ↵Juan Linietsky2015-12-091-0/+8
| | | | reloaded in godot UI, fixes #3003
* -removed resources dock, good bye old friendJuan Linietsky2015-09-011-0/+21
|
* -added hints to sprite v/hframes, fixes truncation problemJuan Linietsky2015-08-291-1/+1
| | | | -removed an error being printed often unnecesarly about missing child
* Multiple, simultaneous node editing spuport!!Juan Linietsky2015-08-251-3/+3
| | | | ..but will you be brave enough to try it? :)
* Live edit WORK IN PROGRESSJuan Linietsky2015-08-021-0/+18
| | | | | | | | | | 1) press the heart while the game is running 2) select a scene to live edit from the opened scenes 3) edit/add/remove nodes or resources, change their properties, etc. 4) watch changes reflected in running game, in all places this scene is edited 5) It's not perfect obviously, but the aim of it is to try to reflect your changes as best as possible in the running game.
* QOL, script buttons in scene tabsJuan Linietsky2015-07-261-0/+17
|
* -added icons for root node types on tabsJuan Linietsky2015-07-241-0/+8
|
* Multiple scene editing *POTENTIALLY UNSTABLE*Juan Linietsky2015-06-221-0/+173
| | | | | | | | | | | -ability to edit multiple scenes at the same time -resource internal IDs are now persistent, this makes multiple scene editing possible but maaaaay result in file corruption bugs (tested and could not find anything but possibility exists because core code changed, report immediately if you find this). -properly save settings, layout, etc when edited -script editing is independent from scene editing now -show a yellow box when a script belongs to the scene
* Updated copyright year in all headersJuan Linietsky2015-04-181-1/+1
|
* SceneMainLoop -> SceneTreeJuan Linietsky2014-11-051-2/+2
| | | | | | | | | | | | -=-=-=-=-=-=-=-=-=-=-=-=-=- *YOUR SOURCE MIGHT NOT WORK* For mor information on fix: https://github.com/okamstudio/godot/wiki/devel_scene_tree Other stuff: -Shower of bullets demo -Fixes all around
* GODOT IS OPEN SOURCEJuan Linietsky2014-02-091-0/+580