aboutsummaryrefslogtreecommitdiff
path: root/tools/editor/property_selector.h
Commit message (Collapse)AuthorAgeFilesLines
* Refactoring: rename tools/editor/ to editor/Rémi Verschelde2017-03-051-83/+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.
* Style: Cleanups, added headers, renamed filesRémi Verschelde2017-01-161-0/+28
| | | | | | | | | 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).
* ObjectTypeDB was renamed to ClassDB. Types are meant to be more generic to ↵Juan Linietsky2017-01-021-1/+1
| | | | | | | | 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()
* Even more work on visual script editor:Juan Linietsky2016-08-261-2/+2
| | | | | | | | -Added constructor nodes, specialized and conversion ones. -Cleaned up how unconnected input default values are shown and edited (much cleaner) -Dragging scene nodes into graph makes a call dialog appear by deault -Dragging properties into graph is set by default, not get -fixed dragging internal functions into graph
* Making bits of docs appear in different dialogues is made easier with ↵Juan Linietsky2016-08-231-2/+3
| | | | EditorHelpBit
* Proper function/property selection in visual script editing for property.Juan Linietsky2016-08-231-0/+54
This one has an ordered list, built-in description, search, etc.