Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-09-16 | Small documentation clarification added to CanvasItem. | Jared | |
2018-09-15 | Merge pull request #21973 from guilhermefelipecgs/fix_default_cursor_shape | Rémi Verschelde | |
Some fixes to mouse's cursor and shape | |||
2018-09-15 | doc: Sync classref with current source | Rémi Verschelde | |
2018-09-15 | Merge pull request #22087 from Faless/master_of_puppets | Rémi Verschelde | |
Deprecate slave keyword in favor of puppet. | |||
2018-09-15 | Clearly deprecate sync too in favor of remotesync. | Fabio Alessandrelli | |
NOTE: This changes the RPC_MODE_* enum values. Games should be re-exported. GDNative rebuilt. | |||
2018-09-15 | Rename slave keyword to puppet | Fabio Alessandrelli | |
The slave keyword will still be available as deprecated in 3.1 but will be dropped from future releases. | |||
2018-09-14 | Expose "get_modal_stack_top()" to GDScript | Michael Alexsander Silva Dias | |
2018-09-14 | doc: Mention get_node in Node.get_child documentation | Rémi Verschelde | |
See #22052. | |||
2018-09-13 | Mark AnimatedTexture frame_* properties as internal | Rémi Verschelde | |
This way they no longer appear in the documentation, and the related setters and getters do. | |||
2018-09-13 | Fix set_custom_mouse_cursor changing to incorrect cursor shape | Guilherme Felipe | |
[Docs] Add class ref for Input::set_default_cursor_shape | |||
2018-09-13 | [DOCS] Project Settings: Default clear color | Max Hilbrunner | |
2018-09-13 | Merge pull request #21982 from luzpaz/misc-typos | Rémi Verschelde | |
Misc. typos | |||
2018-09-12 | Misc. typos | luz.paz | |
Found via `codespell -q 3 -I ../godot-word-whitelist.txt --skip="./thirdparty,*.po"` | |||
2018-09-13 | Revert "Drop deprecated compatibility methods from AnimatedSprite" | Rémi Verschelde | |
2018-09-12 | Merge pull request #21705 from KellyThomas/tree-create-item | Rémi Verschelde | |
Change return value of Tree.create_item() from Object to TreeItem | |||
2018-09-12 | Merge pull request #21988 from KellyThomas/array-invert-2 | Rémi Verschelde | |
Standardize documentation for the pool arrays' invert methods | |||
2018-09-12 | Merge pull request #21780 from akien-mga/animatedsprite-deprecated | Rémi Verschelde | |
Drop deprecated compatibility methods from AnimatedSprite | |||
2018-09-12 | Standardize documentation for the pool arrays' invert methods | Kelly Thomas | |
2018-09-11 | doc: Sync classref with current source | Rémi Verschelde | |
2018-09-10 | Merge pull request #21937 from romlok/remotetransform | Rémi Verschelde | |
Clarify which direction RemoteTransform[2D] work | |||
2018-09-10 | Merge pull request #21842 from merumelu/curve-point-count | Rémi Verschelde | |
Bind Curve::get_point_count | |||
2018-09-10 | Clarify which direction RemoteTransform[2D] work | Mel Collins | |
2018-09-10 | Fix mistake in Array.xml | VirtualBox | |
2018-09-10 | added clarification about Input.get_accelerometer only working when project ↵ | Carl Scarlett | |
is exported | |||
2018-09-09 | Drop deprecated compatibility methods from AnimatedSprite | Rémi Verschelde | |
They were deprecated in 2.1, but never properly identified as such and thus never removed. Fixes #21765. | |||
2018-09-07 | Bind Curve::get_point_count | merumelu | |
2018-09-03 | Fix custom cursor hotspot | Guilherme Felipe | |
Cursor hotspot must be inside image on Linux. Adding validation for all platforms for consistency. | |||
2018-09-03 | Change return value of Tree.create_item() from Object to TreeItem | Kelly Thomas | |
2018-09-01 | Merge pull request #21636 from akien-mga/docdata-variant | Rémi Verschelde | |
DocData: Fix return type listed as "var" instead of "Variant" | |||
2018-09-01 | Merge pull request #21670 from cbscribe/kcc_class_edits | Rémi Verschelde | |
[DOCS] Classref additions and corrections | |||
2018-09-01 | [DOCS] Classref additions and corrections | Chris Bradfield | |
2018-09-01 | Improve ClassDB information for some some signal parameters | Kelly Thomas | |
2018-08-31 | DocData: Fix return type listed as "var" instead of "Variant" | Rémi Verschelde | |
2018-08-31 | update class docs | Kelly Thomas | |
2018-08-30 | RayCast2D: Fix reporting old collider after collision ended | Rémi Verschelde | |
It now behaves the same as RayCast (3D). Fixed documentation accordingly and documented new configuration options. Supersedes and closes #20567. | |||
2018-08-30 | Merge pull request #21585 from TGRCdev/rigidbody_docs | Rémi Verschelde | |
Documented some RigidBody and PhysicsDirectBodyState methods | |||
2018-08-29 | Added documentation for some RigidBody methods, and copied the descriptions ↵ | Tiger C | |
to matching PhysicsDirectBodyState methods. | |||
2018-08-29 | doc: Sync classref with current source | Rémi Verschelde | |
2018-08-29 | Moved documentation for methods made accessible from super class for Mesh | Bastiaan Olij | |
2018-08-28 | Merge pull request #21454 from char0xff/doc | Max Hilbrunner | |
Update UndoRedo.xml | |||
2018-08-28 | Merge pull request #21444 from romlok/input-propagation | Max Hilbrunner | |
Clarify direction of input event propagation | |||
2018-08-28 | Merge pull request #21514 from cbscribe/kcc_docs_fixes2 | Rémi Verschelde | |
[DOCS] Classref corrections and clarifications | |||
2018-08-27 | [DOCS] Corrections and clarifications | Chris Bradfield | |
2018-08-26 | Update UndoRedo.xml | VirtualBox | |
2018-08-26 | Fall back to GLES2 if GLES3 is not working | Hein-Pieter van Braam | |
This adds a static is_viable() method to all rasterizers which has to be called before initializing the rasterizer. This allows us to check what rasterizer to use in OS::initialize together with the GL context initialization. This commit also adds a new project setting "rendering/quality/driver/driver_fallback" which allows the creator of a project to specify whether or not fallback to GLES2 is allowed. This setting is ignored for the editor so the editor will always open even if the project itself cannot run. This will hopefully reduce confusion for users downloading projects from the internet. We also no longer crash when GLES3 is not functioning on a platform. This fixes #15324 | |||
2018-08-26 | Clarify direction of input event propagation | Mel Collins | |
2018-08-24 | Particles: Allow speed_scale at 0 in property hint, equivalent to pause | Rémi Verschelde | |
Supersedes and closes #21193. | |||
2018-08-21 | doc: Sync classref with current source | Rémi Verschelde | |
2018-08-19 | Merge pull request #21176 from cbscribe/kcc_doc_updates | Rémi Verschelde | |
[DOCS] Many class ref updates | |||
2018-08-18 | [DOCS] Many class ref updates | Chris Bradfield | |