Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-08-10 | Removes type information from method binds | Ignacio Etcheverry | |
2017-07-19 | Add object type hint for docs | Poommetee Ketson | |
2017-06-30 | -Many fixes to VisualScript, fixed property names, etc. | Juan Linietsky | |
-Added ability to set/get a field in GetSet, as well as assignment ops -Added a Select node -Fixed update bugs related to variable list and exported properties, closes #9458 | |||
2017-06-25 | Ability to restart particle system with a function call | Juan Linietsky | |
2017-06-25 | BuildSystem: generated files have .gen.extension | Poommetee Ketson | |
2017-06-23 | Small fixes required to get platformer to work. | Juan Linietsky | |
Added back CanvasItemMaterial | |||
2017-06-21 | 2D GPU Particles working.. | Juan Linietsky | |
2017-06-18 | Texture rect_region drawing now clamps UV to avoid bleeding. This avoids ↵ | Juan Linietsky | |
scenarios like single-texture tilemap tiles leaking pixels to the next tile when filter is enabled on it. | |||
2017-06-17 | Add normalmap support for drawing in all low level primitives. Only added ↵ | Juan Linietsky | |
support in Sprite so far. | |||
2017-05-20 | Removal of InputEvent as built-in Variant type.. | Juan Linietsky | |
this might cause bugs I haven't found yet.. | |||
2017-04-10 | Rename [gs]et_pos to [gs]et_position for Controls | Sergey Pusnei | |
Control set_pos -> set_position Control set_global_pos -> set_global_position [gs]et_mouse_pos -> [gs]et_mouse_position [gs]et_global_mouse_pos -> [gs]et_global_mouse_position fixes #8005 | |||
2017-04-08 | Add "Godot Engine contributors" copyright line | Rémi Verschelde | |
2017-04-07 | Fix build on older GCC versions | Rémi Verschelde | |
Travis builds would fail with: ./drivers/gles3/rasterizer_storage_gles3.h:1018:19: error: ISO C++ forbids initialization of member 'fixed_fps' [-fpermissive] | |||
2017-04-06 | New particle system, mostly working, some small features missing. | Juan Linietsky | |
2017-04-03 | Fix more property names in _change_notify calls. | Andreas Haas | |
2017-03-05 | A Whole New World (clang-format edition) | Rémi Verschelde | |
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 | |||
2017-02-15 | Many fixes to make exported scenes work better, still buggy. | Juan Linietsky | |
2017-02-13 | Rename the _MD macro to D_METHOD | Hein-Pieter van Braam | |
This new name also makes its purpose a little clearer This is a step towards fixing #56 | |||
2017-02-13 | Remove use of _SCS from ADD_METHOD | Hein-Pieter van Braam | |
This saves typing and is a step towards fixing #56 | |||
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 | 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-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-09 | Fix modulate property bind to Color | volzhs | |
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 #7382 from volzhs/fix-visibility | Rémi Verschelde | |
Able to change visibility when ancestor node is hidden | |||
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! | |||
2016-12-28 | Able to change visibility when ancestor node is hidden | volzhs | |
2016-10-10 | 2D Shaders are working again using the new syntax, though all is buggy in ↵ | Juan Linietsky | |
general | |||
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-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-07-10 | Conversion function for screen coords to local Canvas coords | Kyle Luce | |
- Useful if you need to Convert screen coords to the coordinate space of a CanvasItem, but don't have an associated InputEvent to use in #make_event_local. For example, if you have a particular point on the screen you'd like to project into World Space, for various reasons, you would use this function on the root of the scene. This is analogous to ray casting from screen space in 3D. | |||
2016-06-27 | Properly deliver localized coordinates when passing gui events through ↵ | Juan Linietsky | |
parents, closes #4215 | |||
2016-06-26 | Ability to set draw transform as a matrix, closes #5428 | Juan Linietsky | |
2016-06-23 | Rename CanvasItem.edit_get() to edit_get_state() | George Marques | |
This makes more sense of what it does and correlates to edit_set_state() | |||
2016-06-20 | fix CanvasItem.get_global_transform() and CanvasItem.get_local_transform(), ↵ | Juan Linietsky | |
closes #4075 | |||
2016-06-20 | Remove unused connection. ShaderEditor should'nt handle ShaderGraphs. | MarianoGNU | |
Fixes #4678 && #4745 | |||
2016-06-13 | added a function CanvasItem.get_item_and_children_rect() , fixes #4738 | Juan Linietsky | |
2016-06-07 | Fix indentation issues in last commits | Rémi Verschelde | |
Ping @reduz. | |||
2016-06-06 | -Fix small bug regarding to canvas layer detection, closes #4381 | Juan Linietsky | |
2016-05-04 | Fix wrong return and argument types in documentation | Ignacio Etcheverry | |
2016-03-09 | remove trailing whitespace | Hubert Jarosz | |
2016-01-24 | -Take in consideration canvas layers for GUI input | Juan Linietsky | |
2016-01-02 | -Fix global transform cache not being cleared in 2D nodes, fixes many editor ↵ | Juan Linietsky | |
bugs, closes #2115 |