aboutsummaryrefslogtreecommitdiff
path: root/doc/base (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
| * Sync classrefJ08nY2016-06-131-33/+40
| |
* | Merge pull request #5210 from J08nY/issue-5189Rémi Verschelde2016-06-151-1/+1
|\ \ | | | | | | String documentation: .ord_at() returns int not String
| * | String documentation: .ord_at() returns int not StringJ08nY2016-06-141-1/+1
| |/ | | | | | | fixes #5189
* / Add joystick vibration support on Linux (#5043)Wilhem Barbier2016-06-151-0/+37
|/
* Merge pull request #5177 from vnen/string-subsequenceJuan Linietsky2016-06-131-0/+18
|\ | | | | Add subsequence search to tools
| * Add documentation to String.is_subsequence_of{,i}George Marques2016-06-121-0/+18
| |
* | Documented many Physics2D* classesOvnuniarchos2016-06-121-30/+273
|/
* Add documentation for Array.find and Array.rfindGeorge Marques2016-06-101-2/+13
|
* Filling in documentationCowThing2016-06-081-2/+46
| | | | | Documentation for BoneAttachment, KinematicBody, ParallaxBackground, ParallaxLayer, and TestCube
* Merge pull request #4861 from brakhane/negative-indexingJuan Linietsky2016-06-071-1/+1
|\ | | | | Add support for Python-like negative indexing
| * Add support for Python-like negative indexingDennis Brakhane2016-06-051-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Negative indexing is a useful feature in Python, especially when combined with array slicing. Array slicing will hopefully be implemented later, but negative indexing is useful in its own right. A negative index is indexing from the end of an array, "array[-1] == array[array.size()-1]", using a negative index larger/smaller than the length of the array is still an error. While primarily useful for arrays and strings, support is also added to "array like" structures like Vector3 and Color. This is done just to be consistent; vector3[2] is much clearer than vector3[-1], but disallowing it while allowing it for an array with 3 elements seems confusing.
* | Classref for: ImageTexture, Image, LargeTextureJ08nY2016-06-071-0/+52
| |
* | Sync classrefJ08nY2016-06-071-3/+203
| |
* | Added Dictionary.values()J08nY2016-06-051-56/+63
|/
* Document Viewport and ViewportSprite classesBojidar Marinov2016-06-051-0/+62
|
* Sync with -doctoolBojidar Marinov2016-06-051-0/+106
|
* Added InputMap.get_actions()J08nY2016-06-041-0/+17
| | | | get_actions() lists all actions in the InputMap.
* Merge pull request #5027 from J08nY/gdscriptRémi Verschelde2016-06-041-0/+18
|\ | | | | Add Array.find_last() and Array.count()
| * Added Array.find_last() and Array.count()J08nY2016-06-031-0/+18
| |
* | Merge pull request #4300 from leezh/control_focus_modeRémi Verschelde2016-06-041-0/+21
|\ \ | |/ |/| Exposed Control::focus_mode to the scene editor
| * GUI Focus mode improvementsZher Huei Lee2016-05-231-0/+21
| | | | | | | | | | | | | | | | Exposed `get_focus_mode()` to the script Added `focus_mode` to the property panels for line-edit and sliders Added `enabled_focus_mode` to the property panels for buttons enabled_focus_mode is used when button is enabled/disabled
* | Added classref for HTTPClient and HTTPRequestJ08nY2016-06-031-3/+59
| |
* | Sync classrefJ08nY2016-06-031-13/+48
| |
* | StaticBody documentationP-GLEZ2016-06-011-4/+14
| | | | | | | | | | Documented StaticBody. Also corrected an error in StaticBody2D documentation
* | Merge pull request #4933 from J08nY/classrefRémi Verschelde2016-06-011-57/+450
|\ \ | | | | | | Added RigidBody and finished Resource class-reference
| * | Added classref for RigidBody, and finished classref for ResourceJ08nY2016-05-301-3/+57
| | |
| * | Sync class-ref with code base.J08nY2016-05-301-56/+395
| | |
* | | classref: Area documentationP-GLEZ2016-05-311-0/+2
| | | | | | | | | | | | One method was missing.
* | | Area DocumentationP-GLEZ2016-05-311-3/+49
| | | | | | | | | | | | | | | Ported the Area2D documentation into its 3D counterpart. Also fixed some typos
* | | Merge pull request #4931 from CowThing/classref-editRémi Verschelde2016-05-301-0/+33
|\ \ \ | |/ / |/| | Filling in documentation
| * | Filling in documentationCowThing2016-05-301-0/+33
| |/ | | | | | | VisibilityNotifier and VisibilityEnabler (2D and 3D).
* | Merge pull request #4845 from vnen/pr-magnetometerRémi Verschelde2016-05-291-0/+7
|\ \ | | | | | | Add magnetometer sensor support for Android
| * | Add documentation for Input.get_magnetometer()George Marques2016-05-271-0/+7
| |/
* | Documented Light2D and LightOccluder2DJulian Murgia - StraToN2016-05-291-0/+48
| |
* | Documented BackBufferCopy. Need validation for the different copy modes ↵Julian Murgia - StraToN2016-05-281-0/+9
|/ | | | (constants)
* VehicleBody: Cosmetic fixes to previous commitRémi Verschelde2016-05-211-9/+6
|
* Add get_linear_velocity() method to VehicleBody classAgustin Benavidez2016-05-211-0/+14
| | | Doc added also.
* Document the FileDialog and partial OS methodsGeequlim2016-05-201-0/+14
|
* Fix a XML error with the documentationBojidar Marinov2016-05-201-1/+1
|
* Filling in documentation.CowThing2016-05-151-0/+38
| | | | AABB, Color, Rect2, Transform, Vector2, and Vector3.
* Merge pull request #4563 from djrm/classref-editRémi Verschelde2016-05-131-3/+116
|\ | | | | Documented @GlobalScope singletons and some keys
| * Documented @GlobalScope singletons and some keysDaniel J. Ramirez2016-05-051-3/+116
| |
* | Fix some errors in some rotation functions, also clarify that certain ↵Daniel J. Ramirez2016-05-121-7/+8
| | | | | | | | parameters are expressed in radians
* | classref: Fixed return types in Area and Area2D (#4635)MattUV2016-05-121-2/+2
| |
* | classref: Directory and ConfigFileRémi Verschelde2016-05-121-26/+68
| |
* | classref: Sync with current sourceRémi Verschelde2016-05-121-2/+62
| |
* | Updated caret blink method documentationPaulb232016-05-111-0/+28
| |
* | Sync classes.xml with current sourcesRémi Verschelde2016-05-091-33/+127
|/ | | | Also fix a typo in the binding of Control::set_drag_forwarding.
* Partial documentation for OS methodsDaniel J. Ramirez2016-05-051-1/+19
|
* Documented LinkButtonDaniel J. Ramirez2016-05-051-0/+8
|