Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-01-14 | removed duplicated functions in class hierarchy that were bound more than once | Juan Linietsky | |
added a check to detect this case in the future | |||
2017-01-14 | Style: Fix whole-line commented code | Rémi Verschelde | |
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. | |||
2017-01-14 | Renamed call_group to call_group_flags, made call_group without flags the ↵ | Juan Linietsky | |
default | |||
2017-01-13 | rename monitoring functions | Juan Linietsky | |
2017-01-13 | Created new Engine singleton, and moved engine related OS functions to it. | Juan Linietsky | |
2017-01-13 | Rename collision layer as suggested in #5696 | Juan Linietsky | |
2017-01-13 | New API for visibility in both CanvasItem and Spatial | Juan Linietsky | |
visible (property) - access set_visible(bool) is_visible() is_visible_in_tree() - true when visible and parents visible show() hide() - for convenience | |||
2017-01-12 | Must now register with set_transform_notify() to get ↵ | Juan Linietsky | |
NOTIFICATION_TRANSFORM_CHANGED | |||
2017-01-12 | Renamed most signals so they refer to: | Juan Linietsky | |
-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). | |||
2017-01-11 | Type renames: | Juan Linietsky | |
Matrix32 -> Transform2D Matrix3 -> Basis AABB -> Rect3 RawArray -> PoolByteArray IntArray -> PoolIntArray FloatArray -> PoolFloatArray Vector2Array -> PoolVector2Array Vector3Array -> PoolVector3Array ColorArray -> PoolColorArray | |||
2017-01-10 | It is now possible to name layers of different kinds! | Juan Linietsky | |
2017-01-10 | - _ready() callback only happens once now, if you want to receive it again, ↵ | Juan Linietsky | |
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. | |||
2017-01-09 | Fix modulate property bind to Color | volzhs | |
2017-01-08 | Renamed finished to animation_finished, also passes the animation name when ↵ | Juan Linietsky | |
finished | |||
2017-01-08 | removed unnecesary modulate funtions, which were superseded by self_modulate | Juan Linietsky | |
2017-01-07 | Memory pool vectors (DVector) have been enormously simplified in code, and ↵ | Juan Linietsky | |
renamed to PoolVector | |||
2017-01-04 | -Conversion of most properties to a simpler syntax, easier to use by script | Juan Linietsky | |
-Modified help to display properties GDScript can still not make use of them, though. | |||
2017-01-03 | Begin modifying properties to make them more friendly to script and doc. | Juan Linietsky | |
2017-01-02 | ObjectTypeDB was renamed to ClassDB. Types are meant to be more generic to ↵ | Juan Linietsky | |
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() | |||
2017-01-02 | Merge remote-tracking branch 'origin/gles3' into gles3-on-master | Rémi Verschelde | |
Various merge conflicts have been fixed manually and some mistakes might have been made - time will tell :) | |||
2017-01-02 | Merge pull request #7410 from nounoursheureux/master | Rémi Verschelde | |
Add the 'finished' signal to AnimatedSprite | |||
2017-01-02 | Merge pull request #7406 from neikeq/pr-issue-5076 | Rémi Verschelde | |
TileMap: _update_dirty_quadrants() cancel pending update pre return | |||
2017-01-02 | Merge pull request #7382 from volzhs/fix-visibility | Rémi Verschelde | |
Able to change visibility when ancestor node is hidden | |||
2017-01-02 | Add the 'finished' signal to AnimatedSprite | Wilhem Barbier | |
2017-01-01 | Welcome in 2017, dear changelog reader! | Rémi Verschelde | |
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! | |||
2017-01-01 | TileMap: _update_dirty_quadrants() cancel pending update pre return | Ignacio Etcheverry | |
2016-12-30 | begin work on new particle system | reduz | |
2016-12-28 | Able to change visibility when ancestor node is hidden | volzhs | |
2016-12-10 | KinematicBody: Fix wrong method bind return type | Ignacio Etcheverry | |
2016-12-03 | Particles2D: Fix initial size randomness property having no effect. | Andreas Haas | |
It was just a little typo :p | |||
2016-11-24 | TileMap now honors blending mode. | Ovnuniarchos | |
2016-11-01 | style: Fix PEP8 whitespace issues in Python files | Rémi Verschelde | |
Done with `autopep8 --select=E2,W2`, fixes: - E201 - Remove extraneous whitespace. - E202 - Remove extraneous whitespace. - E203 - Remove extraneous whitespace. - E211 - Remove extraneous whitespace. - E221 - Fix extraneous whitespace around keywords. - E222 - Fix extraneous whitespace around keywords. - E223 - Fix extraneous whitespace around keywords. - E224 - Remove extraneous whitespace around operator. - E225 - Fix missing whitespace around operator. - E226 - Fix missing whitespace around operator. - E227 - Fix missing whitespace around operator. - E228 - Fix missing whitespace around operator. - E231 - Add missing whitespace. - E231 - Fix various deprecated code (via lib2to3). - E241 - Fix extraneous whitespace around keywords. - E242 - Remove extraneous whitespace around operator. - E251 - Remove whitespace around parameter '=' sign. - E261 - Fix spacing after comment hash. - E262 - Fix spacing after comment hash. - E265 - Format block comments. - E271 - Fix extraneous whitespace around keywords. - E272 - Fix extraneous whitespace around keywords. - E273 - Fix extraneous whitespace around keywords. - E274 - Fix extraneous whitespace around keywords. - W291 - Remove trailing whitespace. - W293 - Remove trailing whitespace. | |||
2016-10-22 | Merge pull request #6090 from WalasPrime/raytrace_force | Rémi Verschelde | |
Added force_raycast_update GDScript method for RayCast[2D] | |||
2016-10-17 | SCsub: Add python shebang as a hint for syntax highlighting | Rémi Verschelde | |
Also switch existing shebangs to "better" /usr/bin/env python. | |||
2016-10-11 | Sprite: Fix inspector not showing changes on "frame" property. | Andreas Haas | |
Fixes #6562 | |||
2016-10-10 | 2D Shaders are working again using the new syntax, though all is buggy in ↵ | Juan Linietsky | |
general | |||
2016-10-04 | Add editor_only param to Light2D | Pedro J. Estébanez | |
2016-10-03 | Begining of GLES3 renderer: | Juan Linietsky | |
-Most 2D drawing is implemented -Missing shaders -Missing all 3D -Editor needs to be set on update always to be used, otherwise it does not refresh -Large parts of editor not working | |||
2016-10-03 | Added force_raycast_update GDScript method for RayCast[2D] | Karol Walasek | |
2016-09-29 | Fix #6480, area duplicated param | Pawel Kowal | |
2016-09-19 | Fix for #6158. Converting Vector2 to Size2 for scaling functions. | anneomcl | |
2016-09-15 | Center camera2D with the proper viewport size | Juan Linietsky | |
2016-09-14 | Added a few functions to make 2D split screen easier. | Juan Linietsky | |
2016-09-01 | -Fixed issue in Kinematicbody2D | Juan Linietsky | |
2016-08-31 | More improvements to visual script.. | Juan Linietsky | |
fixed a bug of not saving when sub-nodes changed. | |||
2016-08-31 | draw_line: Properly bind antialiased argument | Rémi Verschelde | |
2016-08-30 | More visual script improvements | Juan Linietsky | |
-Added anti-aliasing on lines -Improved draw performance enormously -Removed sequence ports for most nodes, current visual scripts will likely be broken now. Sorry! | |||
2016-08-30 | Merge pull request #5670 from timoschwarzer/feature/camera2d_limit_smoothing | Rémi Verschelde | |
Add an option to smooth camera limits when camera smoothing is enabled. | |||
2016-08-29 | Merge pull request #6159 from touilleMan/issue-6148 | Rémi Verschelde | |
Add Node2d global rot/rotd/scale methods | |||
2016-08-28 | Several all around fixes to visual scripting (in the process of creating demos) | Juan Linietsky | |