summaryrefslogtreecommitdiffstats
path: root/core/object.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
* | Removes type information from vararg method bindsIgnacio Etcheverry2017-08-101-1/+1
| |
* | Removes type information from method bindsIgnacio Etcheverry2017-08-101-8/+8
| |
* | Adds missing type information to virtual method bindsIgnacio Etcheverry2017-08-101-1/+1
|/
* Makes all Godot API's methods Lower CaseIndah Sylvia2017-08-071-8/+8
|
* Fix is_class check typo in ObjectDB::cleanupRuslan Mustakov2017-08-061-1/+1
|
* Made bool constructor explicit in Variant to avoid bugs, fixes #7843Juan Linietsky2017-08-051-6/+13
|
* function to add script and instance at once, as needed by neikeqJuan Linietsky2017-07-221-0/+11
|
* _get return type fixRamesh Ravone2017-07-181-1/+1
|
* Added a simpler/faster way to bind script languages instance wrappers to GodotJuan Linietsky2017-07-161-0/+24
|
* Bindings: Fix Object::get_meta return type.Andreas Haas2017-07-161-1/+1
| | | | The method was shown as void in the docs.
* Merge pull request #9195 from kubecz3k/obj-incoming-connectionsRémi Verschelde2017-06-271-0/+16
|\ | | | | Ability to get a list of signals that are targeting given object
| * Ability to get a list of signals that are targeting objectJakub Grzesik2017-06-151-0/+16
| |
* | -Added folding to property editor, persistent on objects it editsJuan Linietsky2017-06-251-0/+42
|/ | | | -Some changes to tree to support this properly
* -Restored multithread capability to VisualServerJuan Linietsky2017-06-091-6/+6
| | | | -Restored resource previews!
* Add "Godot Engine contributors" copyright lineRémi Verschelde2017-04-081-0/+1
|
* fixed ClassDB inconsistenciesKarroffel2017-03-131-1/+1
| | | | fixes #7960
* A Whole New World (clang-format edition)Rémi Verschelde2017-03-051-647/+528
| | | | | | | | | | | | | | | | | | | | | | | | I can show you the code Pretty, with proper whitespace Tell me, coder, now when did You last write readable code? I can open your eyes Make you see your bad indent Force you to respect the style The core devs agreed upon A whole new world A new fantastic code format A de facto standard With some sugar Enforced with clang-format A whole new world A dazzling style we all dreamed of And when we read it through It's crystal clear That now we're in a whole new world of code
* -begin of export work, not done yetJuan Linietsky2017-02-151-4/+4
| | | | -fixes to make scenes exported from godot 2.x work
* Rename the _MD macro to D_METHODHein-Pieter van Braam2017-02-131-36/+36
| | | | | | This new name also makes its purpose a little clearer This is a step towards fixing #56
* Style: Cleanups, added headers, renamed filesRémi Verschelde2017-01-161-1/+2
| | | | | | | | | 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-7/+11
| | | | | 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.
* -All types have editable script now in propertiesJuan Linietsky2017-01-091-2/+0
| | | | -Changed clip to a property in Control which can be set by the user
* Memory pool vectors (DVector) have been enormously simplified in code, and ↵Juan Linietsky2017-01-071-9/+36
| | | | renamed to PoolVector
* ObjectTypeDB was renamed to ClassDB. Types are meant to be more generic to ↵Juan Linietsky2017-01-021-68/+68
| | | | | | | | 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!
* Throw error when trying to emit a non-existing signal.Andreas Haas2016-09-251-0/+9
| | | | closes #6017
* Merge pull request #5920 from 29jm/fix-warningsJuan Linietsky2016-09-101-0/+1
|\ | | | | Fix some more warnings
| * Fix some warnings about unhandled switch casesJohan Manuel2016-08-131-0/+1
| |
* | Renamed the bind_native functions to bind_vararg, should make it show the ↵Juan Linietsky2016-09-071-20/+4
| | | | | | | | documentation more clearly and also make it easier to bind to C#
* | More visual script workJuan Linietsky2016-08-251-29/+92
| | | | | | | | | | | | | | | | | | -Block switches to 2d/3d editor if editing visual script -Added cast node in flow control -Added ability to do RPC in visual script -Comment nodes -Fix bug with inverted cable in connecting backwards -Copy and paste nodes, including from different scripts
* | Allow documenting unexposed return types in bind_native_methodeska2016-08-061-1/+1
|/ | | | Document return type of `Object.call` and `GDScript.new`
* Remove unused variables (fourth pass) + dead codeRémi Verschelde2016-07-081-1/+1
| | | | Also fix a potential regression from 3fcb9b1ec179b99d979d4cfea9b5e3c80e4a3e33.
* Object: get_signal_connection_list fixedJ08nY2016-06-211-8/+10
| | | | | now returns only the connections for the signal argument, as specified fixes #5329
* Fix indentation issues in last commitsRémi Verschelde2016-06-071-3/+3
| | | | Ping @reduz.
* Added function get_signals_connected_to_this_this()Juan Linietsky2016-06-061-0/+7
| | | | should help properly implement #5058
* Created a NodeDock with signals and groupsJuan Linietsky2016-06-041-0/+18
|
* Changed import workflowJuan Linietsky2016-05-271-0/+7
| | | | | | | | | | | | | | | | -Rearrange favorites in fs dock with drag and drop -Removed import -> sub-scene, moved to scenetree contextual menu -Removed import -> re-import , moved and integrated to FS dock -Added ability in FS dock to re-import more than one resource simultaneously -Added ability to drag from native filesystem explorer to Godot, only works on Windows though -Removed scene reimport merge options, never worked well. Eventually merging materials should be re-added -Added ability to set custom root node type when importing scenes -Re-Import is now automatic, can be configured back to manual in editor settings -Added resource previews in property list for many resource types
* Real-Time Remote Inspector supportJuan Linietsky2016-05-221-1/+1
|
* First version of ProfilerJuan Linietsky2016-05-211-0/+1
| | | | | It is now possible to profile GDScript as well as some parts of Godot internals.
* New reworked AnimatedSprite!Juan Linietsky2016-05-141-0/+5
| | | | | | | | | -New SpriteFrames editor, with support for drag&drop, multiple animation sets, animation speed and loop. -New AnimatedSprite, with support for all the new features! AnimatedSprite3D has not been updated yet. -Added support for drag&drop to other editors, such as resourcepreload, sample library, etc.
* remove trailing whitespaceHubert Jarosz2016-03-091-30/+30
|
* -make signals throw an error when target method is not found, fixes #2036Juan Linietsky2016-01-041-67/+53
| | | | | -removed 4 arguments limit for emit_signal() from script -remvoed 4 arguments limit for call_deferred() from script
* Merge pull request #3184 from vnen/update-copyright-2016Juan Linietsky2016-01-011-1/+1
|\ | | | | Update copyright to 2016 in headers
| * Update copyright to 2016 in headersGeorge Marques2016-01-011-1/+1
| |
* | introspection of signals and signal connections from GDScript was not ↵Juan Linietsky2016-01-011-16/+53
|/ | | | working, fixes #2325
* Add missing argument names in GDScript bindingsRémi Verschelde2015-12-281-2/+2
| | | | | All classes were reviewed apart from VisualServer for which no argument name is documented at all. While doing this review, I found quite a few bugs that were fixed either in earlier commits or this one (mostly documentation bugs though, i.e. some arguments were listed at the wrong place).
* replaced :var by :Variant in documentation, fixes #2897Juan Linietsky2015-12-141-1/+1
|
* Fix error message when using is_connected with a script signalFranklin Sobrinho2015-12-111-0/+4
|
* -Display on animation editor which keys are invalid and which tracks are ↵Juan Linietsky2015-12-051-3/+24
| | | | | | unresolved -Added a tool to clean up unresolved tracks and unused keys
* fixed crash when creating new object with wrong number of argumentsadmix2015-11-281-1/+4
|