Age | Commit message (Collapse) | Author |
|
|
|
|
|
ClassDB: Provide the enum name of integer constants
|
|
|
|
It is possible to propagate a notification down the Node tree by
using `propagate_notification`, but there was no such method for
doing the same but with method calls.
This commit adds the `propagate_call` method, which calls a method
on a node and all child nodes. An optional paramter `parent_first`
determines whether the parent node gets called before or after the
children have been visited. It defaults to false, so the parent
gets called last.
|
|
Fixes #10244.
|
|
|
|
Thus fixing some invalid changes that had still made it to the master branch.
|
|
-Added system for feature overrides, it's pretty cool :)
|
|
|
|
-Fixded BackBuffercopy object
|
|
|
|
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
|
|
Add more options to Node.duplicate()
|
|
modified files)
-.pck and .zip exporting redone, seems to be working..
|
|
to decide whether signals, groups and/or scripts should be set in the copied nodes or not; it's default value makes the method include everything, as usual
|
|
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).
|
|
(cherry picked from commit 87fd54b2f18928213021fef7f330d0c314cf7ac7)
|
|
use request_ready()
- C++ Nodes mostly do an internal process callback, so it does not conflict with users willing to use their own process callbacks
- callbacks such as _input, _process, _fixed_process _unhandled_input, _unhandled_key_input do not requiere calling a function to enable them. They are enabled automatically if found on the script.
|
|
poups when translation is changed.
-Added a NOTIFICATION_TRANSLATION_CHANGED for controls that need custom code
-Sorry, editor will not update automatically because it uses a different translatio method.
|
|
-Changed clip to a property in Control which can be set by the user
|
|
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()
|
|
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!
|
|
Fixes #6005
|
|
Make 'name_num_separator' a project setting
Make all node operations separator-aware
|
|
|
|
It's complete, but absolutely and completely untested, undocumented and NSFW.
Have fun :-)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-Added a new "add" and "instance" buttons for scene tree
-Added a vformat() function to ease translation work
|
|
|
|
-filesystem dock dnd support
-property list dnd support
-scene tree dnd support
|
|
|
|
|
|
|
|
the editor, closes #3017
|
|
BUT DONT TRUST ME IT MAY STILL BREAK, USE WITH CARE!!
|
|
-Ability to edit and keep changes of instanced scenes and sub-scenes
-Ability to inherit from other scenes
|
|
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.
|
|
-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
|
|
by popular request
|
|
|
|
-added NOTIFICATION_INSTANCED
|
|
|
|
child.queue_free() instead. Fixes #1603
|