aboutsummaryrefslogtreecommitdiff
path: root/doc/base (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* | | Fixed Particle2D docs - radians to degrees for some paramsKarol Walasek2016-10-131-2/+2
|/ /
* | Merge pull request #6781 from volzhs/unnecessary-parenthesesRémi Verschelde2016-10-101-2/+2
|\ \ | | | | | | | | | | | | Remove unnecessary parentheses [ci skip]
| * | Remove unnecessary parenthesesvolzhs2016-10-111-2/+2
| |/
* | Merge pull request #6613 from pkowal1982/tweenRémi Verschelde2016-10-091-8/+8
|\ \ | |/ |/| Tween reset/stop/resume/remove for all object properties at once
| * Tween reset/stop/resume/remove for all object properties at oncePawel Kowal2016-09-251-8/+8
| |
* | Filled blanks and normalized documentation on RayCast[2D]Karol Walasek2016-10-011-4/+33
| |
* | Classref: Sync template with current sourceRémi Verschelde2016-10-011-12/+249
|/
* Add docs for XMLparser, VideoPlayer and most of TreeGeorge Marques2016-09-191-0/+106
|
* Add a function to plugin get the main screen parentGeorge Marques2016-09-161-0/+7
| | | | | - Fix a bug where the main screen button did not disappear when the plugin was deactivated.
* Update documentation on joystick vibration.Andreas Haas2016-09-161-1/+2
| | | | | Added a note that long vibration durations are not recommended because of hardware limitations. For example, my ps4 controller can only vibrate for ~3s on linux.
* fix get_selected_nodes()Juan Linietsky2016-09-101-13/+20
|
* -Added bindings to the resource filesystem for editorJuan Linietsky2016-09-101-3/+194
| | | | -Added set_child_rect, which was unavailable for script
* small clarification in docJuan Linietsky2016-09-101-1/+1
|
* Made it possible to properly draw over the 2D canvas for 2D objects. ↵Juan Linietsky2016-09-101-6/+21
| | | | Arranged some functions to achieve this.
* -Added way to generate resource previews from script plugin.Juan Linietsky2016-09-101-124/+177
| | | | -Updated documentation
* Merge pull request #5879 from gau-veldt/subarray_patchJuan Linietsky2016-09-101-0/+11
|\ | | | | Subarray patch
| * Added slicing operation to DVector via DVector.subarray(int start,int end) ↵Gau o fthe Veldt2016-07-231-0/+11
| | | | | | | | | | | | | | | | | | method. Negative indices index from the end of the array. Indices are range checked before attempting and return appropriate error when out of range. Binding for RawArray in gdscript to access DVector.subarray() provided. Documentation of RawArray.subarray() in classes.xml provided.
* | Merge pull request #5942 from pkowal1982/scrollJuan Linietsky2016-09-101-1/+1
|\ \ | | | | | | ScrollContainer expand children bug fix
| * | ScrollContainer expand children bug fixPawel Kowal2016-07-271-1/+1
| | |
* | | Added ItemList get_v_scroll to docsPaulb232016-09-091-0/+7
| | |
* | | Change the documentation to reflect that Directory.list_dir_begin()Gastronok2016-09-071-1/+1
| | | | | | | | | | | | | | | | | | | | | returns true (not false) when a stream could not be initialized. (See, for example, https://github.com/godotengine/godot/blob/master/drivers/windows/dir_access_windows.cpp#L76 )
* | | Merge pull request #6420 from Paulb23/itemlist_tooltip_disable_issue_6240Rémi Verschelde2016-09-071-0/+18
|\ \ \ | | | | | | | | Itemlist tooltip disable issue 6240
| * | | Document itemlist disable tooltipPaulb232016-09-071-0/+18
| | | |
* | | | classref: Sync with current sourceRémi Verschelde2016-09-071-26/+178
|/ / /
* | | classref: Sync with recent changesRémi Verschelde2016-08-311-157/+914
| | |
* | | Merge pull request #5670 from timoschwarzer/feature/camera2d_limit_smoothingRémi Verschelde2016-08-301-0/+8
|\ \ \ | | | | | | | | Add an option to smooth camera limits when camera smoothing is enabled.
| * | | Add an option to smooth camera limits when camera smoothing is enabled.Timo Schwarzer2016-07-131-0/+8
| | | |
* | | | Merge pull request #5262 from vnen/button-signalsRémi Verschelde2016-08-301-2/+12
|\ \ \ \ | | | | | | | | | | Add button_down and button_up signals
| * | | | Better document the BaseButton signalsGeorge Marques2016-08-261-2/+12
| | | | |
* | | | | Merge pull request #6159 from touilleMan/issue-6148Rémi Verschelde2016-08-291-0/+42
|\ \ \ \ \ | | | | | | | | | | | | Add Node2d global rot/rotd/scale methods
| * | | | | Add Node2D's set_global_rot get_global_rot set_global_rotd get_global_rotd ↵Emmanuel Leblond2016-08-151-0/+42
| | | | | | | | | | | | | | | | | | | | | | | | set_global_scale get_global_scale methods.
* | | | | | Merge pull request #6187 from TheHX/pr-pinfo-functionRémi Verschelde2016-08-271-0/+38
|\ \ \ \ \ \ | | | | | | | | | | | | | | Added add_property_info function to Globals and EditorSettings classes
| * | | | | | Update Globals and EditorSettings docsFranklin Sobrinho2016-08-161-0/+38
| | |/ / / / | |/| | | |
* / | | | | Documentation for most of ItemList control.Gau o fthe Veldt2016-08-181-1/+46
|/ / / / / | | | | | | | | | | | | | | | The icon stuff is incomplete since I haven't used icons.
* / / / / Update EditorPlugin docFranklin Sobrinho2016-08-151-0/+24
|/ / / /
* | | | classref: Sync with current sourceRémi Verschelde2016-08-101-36/+1737
| | | |
* | | | Some additions to the OS documentation (#6037)MSC2016-08-051-0/+22
| | | |
* | | | [ci skip] update Raycast documentationHubert Jarosz2016-08-031-0/+2
| | | | | | | | | | | | | | | | | | | | clarification that set_cast_to needs LOCAL point and get_collision_point gives GLOBAL point
* | | | Document FuncRef, GDFunctionState, InstancePlaceholder, RID, World2Deska2016-07-301-2/+26
| | | |
* | | | Array has() documentationPawel Kowal2016-07-271-0/+9
| | | |
* | | | Update Tween class documentationJavier López Úbeda2016-07-251-3/+3
| |/ / |/| |
* | | Update documentation.MarianoGNU2016-07-241-1/+1
| |/ |/|
* | Add some doc to ImmediateGeometryJuan Linietsky2016-07-231-0/+16
| |
* | Merge pull request #5851 from 29jm/typo-scrollRémi Verschelde2016-07-221-4/+4
|\ \ | | | | | | Fix typo in ScrollContainer documentation
| * | Fix typo in ScrollContainer documentationJohan Manuel2016-07-221-4/+4
| | |
* | | Merge pull request #5847 from 29jm/patch-3Rémi Verschelde2016-07-221-0/+19
|\| | | | | | | | Expose virtual keyboard functions to GDScript
| * | Expose virtual keyboard functions to GDScriptJohan Manuel2016-07-211-0/+19
| | |
* | | Added examples to RegEx docZher Huei Lee2016-07-211-17/+22
| | |
* | | Merge pull request #5560 from vnen/os-request-attentionRémi Verschelde2016-07-211-0/+5
|\ \ \ | |/ / |/| | Add OS.request_attention() for Windows
| * | Add OS.request_attention() for WindowsGeorge Marques2016-07-051-0/+5
| | |