aboutsummaryrefslogtreecommitdiff
path: root/doc/classes
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #19612 from Zylann/get_ticks_usecRémi Verschelde2018-06-181-0/+7
|\ | | | | Expose OS.get_ticks_usec()
| * Expose OS.get_ticks_usec()Marc Gilleron2018-06-181-0/+7
| |
* | Add longer description to ViewportTexture docMel Collins2018-06-181-0/+2
| |
* | Added description for abs function in Rect2unknown2018-06-181-0/+1
| |
* | Merge pull request #19622 from mhilbrunner/docs-builtinsMax Hilbrunner2018-06-181-1/+1
|\ \ | | | | | | [DOCS] Builtin keywords because search is terribad
| * | [DOCS] Builtin keywords because search is terribadMax Hilbrunner2018-06-181-1/+1
| |/
* | Merge pull request #19615 from romlok/viewporttexturedocMax Hilbrunner2018-06-181-0/+2
|\ \ | | | | | | Add a little to ViewportTexture docs
| * | Add a little to ViewportTexture docsMel Collins2018-06-171-0/+2
| |/
* | Merge pull request #19621 from mhilbrunner/docs-treeitemMax Hilbrunner2018-06-181-1/+1
|\ \ | | | | | | [DOCS] TreeItem: Small fix for remove_child()
| * | [DOCS] TreeItem: Small fix for remove_child()Max Hilbrunner2018-06-181-1/+1
| |/
* / [DOCS] InputEventMouseButton: FactorMax Hilbrunner2018-06-181-1/+1
|/
* Fix Vector2 doc of floor, add ceil docletheed2018-06-151-1/+2
|
* doc: Remove extraneous empty lines in descriptionsRémi Verschelde2018-06-1510-17/+0
|
* Added some details in skeleton docs.tagcup2018-06-141-2/+10
| | | | Workaround for #19551.
* Fix invalid DEFVAL in SpatialEditorGizmo::add_unscaled_billboardRémi Verschelde2018-06-132-2/+6
| | | | | Likely added by mistake in #19487. Should fix #19543.
* Style fixes for commit d5bb6faaRémi Verschelde2018-06-133-98/+115
|
* Merge pull request #19526 from robojumper/fix_tutorialsRémi Verschelde2018-06-1370-85/+85
|\ | | | | Add support for tutorial links to makerst.py
| * Add support for tutorial links to makerst.pyrobojumper2018-06-1271-86/+86
| | | | | | | | Also change the <tutorials> structure to make use of individual <link> tags
* | -Make sure that ProjectSettings are properly dumped when dumping docs.Juan Linietsky2018-06-1110-5/+804
|/ | | | | | -Documented all properties of project settings Update documentation for ProjectSettings
* updated Viewport docs to correct wrong information and fill out empty sectionsclayjohn2018-06-101-2/+6
|
* Added some documentation to particlesBastiaan Olij2018-06-081-0/+9
|
* Doc: Fix typo in File documentationRémi Verschelde2018-06-051-2/+2
| | | | Fixes #19383.
* Add option to disable automatic multiplayer pollFabio Alessandrelli2018-06-032-5/+8
| | | | | | | | Automatic poll from SceneTree is enabled by default. This allows for polling (and thus RPCs/RSETs) manually in other loops (e.g. physics, thread, specific step) and for proper mutex protecion when accessing the multiplayer API from threads (e.g. for sending larger files in chunks).
* Merge pull request #19266 from akien-mga/os-execute-docMax Hilbrunner2018-05-301-8/+16
|\ | | | | Improve return value and docs on OS.execute regarding blocking/non-blocking variants
| * Improve return value of OS.execute in blocking/non-blocking variantsRémi Verschelde2018-05-301-8/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Initialized the PID to -2, which will be the value returns in blocking- mode where the PID is not available. (-1 was already taken to signify an execution failure). OS::execute will now properly return a non-OK error code when it fails to execute the target file. The documentation was rewritten to be very clear about the differences between blocking and non-blocking mode. Fixes #19056.
* | New sync RPC modes to match all combinationsFabio Alessandrelli2018-05-291-4/+13
| |
* | Refactor RPCMode enum and checksFabio Alessandrelli2018-05-292-19/+19
|/
* Revert "RPCMode refactor, more sync modes"Max Hilbrunner2018-05-292-28/+19
|
* Merge pull request #19021 from Faless/rpc_sync_fixMax Hilbrunner2018-05-292-19/+28
|\ | | | | RPCMode refactor, more sync modes
| * New sync RPC modes to match all combinationsFabio Alessandrelli2018-05-261-4/+13
| |
| * Refactor RPCMode enum and checksFabio Alessandrelli2018-05-262-19/+19
| |
* | Fix MethodInfo for EditorInspectorPlugin.can_handleRémi Verschelde2018-05-281-1/+1
| |
* | Sync classref with current sourceRémi Verschelde2018-05-2823-59/+402
| | | | | | | | Also fix binding of Basis.slerp
* | Merge pull request #18899 from ibrahn/gdscript-license-infoRémi Verschelde2018-05-281-0/+44
|\ \ | | | | | | GDScript access to copyright, license, author and donor information.
| * | GDScript access to copyright, license, author and donor information.Ibrahn Sahir2018-05-191-0/+44
| | | | | | | | | | | | | | | | | | | | | | | | | | | Adds following functions to the Engine singleton: get_author_info - names of Godot authors get_copyright_info - detailed source copyright get_license_info get_donor_info - donor names get_license_info - full text of licenses used, indexed by license names get_license_text - the text of the Godot Expat license
* | | Fixed GroupCallFlags links in the SceneTree's doc.Michael Alexsander Silva Dias2018-05-271-3/+3
| | |
* | | Merge pull request #18379 from ZDDM/18-04-23-audiostream-docsMax Hilbrunner2018-05-261-0/+3
|\ \ \ | | | | | | | | Fully expose the data variable in AudioStreamSample and AudioStreamOGGVorbis
| * | | Fully exposes data variable on AudioStreamSample/AudioStreamOGGVorbis...Zumo2018-05-011-0/+3
| | | | | | | | | | | | | | | | ...and also changes "_set_data" and "_get_data" to "set_data" and "get_data" respectively.
* | | | Merge pull request #18747 from anakimluke/patch-1Max Hilbrunner2018-05-261-1/+1
|\ \ \ \ | | | | | | | | | | fixed minor doc wording problem
| * | | | fixed minor doc wording problemanakimluke2018-05-091-1/+1
| | | | |
* | | | | Added some quick info on shaders to the docsBastiaan Olij2018-05-262-2/+8
| |_|_|/ |/| | |
* | | | [DOCS] Array sortMax Hilbrunner2018-05-251-2/+2
| | | |
* | | | Merge pull request #18752 from danilo2205/enhanced_path_followRémi Verschelde2018-05-253-1/+73
|\ \ \ \ | | | | | | | | | | Up Vector for Curve3D and OrientedPathFollow Implementation
| * | | | Up vector implementation and OrientedPathFollow.danilo22052018-05-203-1/+73
| | |_|/ | |/| |
* | | | Merge pull request #14715 from Krakean/string_add_rsplit2Max Hilbrunner2018-05-231-0/+14
|\ \ \ \ | | | | | | | | | | Added rsplit() method to String class
| * | | | Added rsplit() for String classDmitry Koteroff2017-12-151-0/+14
| | | | | | | | | | | | | | | | | | | | Docs updated
* | | | | [DOCS] Update VideoPlayer classrefChris Bradfield2018-05-202-13/+20
| |/ / / |/| | |
* | | | Merge pull request #18804 from tagcup/vec_slerpRémi Verschelde2018-05-164-7/+76
|\ \ \ \ | | | | | | | | | | Add SLERP to Vector{2,3}, optimize Quat's Vector3 rotation.
| * | | | Add SLERP to Vector{2,3}, optimize Quat's Vector3 rotation.tagcup2018-05-124-7/+76
| | | | | | | | | | | | | | | | | | | | Also even out Basis and Quat APIs a little.
* | | | | Merge pull request #18814 from PJB3005/18-05-12-imagetexture-load-errorRémi Verschelde2018-05-162-2/+4
|\ \ \ \ \ | | | | | | | | | | | | ImageTexture.load returns an error code.