summaryrefslogtreecommitdiff
path: root/doc/classes
AgeCommit message (Collapse)Author
2022-10-22Merge pull request #67718 from Mickeon/doc-peeves-the-constant-burdenMax Hilbrunner
Tweak `@GlobalScope` constants documentation overall
2022-10-22Fix class doc for TileMap navigation visibility modesmix8
fix small copy&paste error
2022-10-22Merge pull request #67725 from TokageItLab/add-tuts-link-retargetMax Hilbrunner
Add a tutorial link to `BoneMap` and `SkeletonProfile`
2022-10-22Add a tutorial link to Retarget ClassesSilc Renew
2022-10-21Tweak `@GlobalScope` constants documentation overallMicky
General: - Replace most type names with strong references (such as "integer" to "[int]"); - Made the writing style closer to how the rest of the documentation is formatted. - Use uppercase Inspector when referring to the Inspector dock. - Describe missing MethodFlags, Variant.Type constants. Key: - Add " key." to the `KEY_0` to `KEY_9` constants; - Reword some MouseButton constants; - In a programming context, it's kind of odd hearing about the plural of "mouse". Error: - Reword OK constant to flow better, use `printerr()` over `print()`; - Describe where `ERR_HELP` is used by the engine; - Point to the Github Issues Page in ERR_BUG. PropertyHint: - Mention that PROPERTY_HINT_IMAGE_COMPRESS_LOSSY and PROPERTY_HINT_IMAGE_COMPRESS_LOSSLESS are unused; - Mention that PROPERTY_HINT_PASSWORD allows a placeholder string. - Describe PROPERTY_HINT_OBJECT_TOO_BIG, PROPERTY_HINT_MAX. PropertyUsageFlags: - Describe PROPERTY_USAGE_HIGH_END_GFX, PROPERTY_USAGE_ARRAY.
2022-10-21Merge pull request #67072 from Mickeon/uh-oh-stinkyMax Hilbrunner
Rewrite most of Resource's documentation
2022-10-21Merge pull request #67254 from TechnoPorg/doc-projection-classMax Hilbrunner
Fully document the Projection class.
2022-10-21Merge pull request #67648 from Calinou/doc-cylindershape3d-bugsMax Hilbrunner
Document known issues with CylinderShape3D
2022-10-21Merge pull request #67656 from MewPurPur/instance🧹Max Hilbrunner
Fix minor mistakes throughout the documentation
2022-10-21Merge pull request #67684 from patchfx/fix-typo-in-draw-rect-regionMax Hilbrunner
Fix tp_canvas_item typo in _draw_rect_region
2022-10-21Merge pull request #67444 from nonunknown/array_pick_randomMax Hilbrunner
Add ability to pick random value from array
2022-10-21Fix small mistakes throughout much of the documentationVolTer
2022-10-20Merge pull request #67506 from squashiv/masterClay John
Expose Shape2D::get_rect to scripting
2022-10-20Fix tp_canvas_item typo in _draw_rect_regionRichard Patching
2022-10-20add ability to pick random value from arrayNonunknown
2022-10-20Expose Shape2D::get_rect to scriptingsquash
2022-10-19Fully document the Projection class.TechnoPorg
Projection is a 4x4 matrix that applies a projective transformation.
2022-10-19Document known issues with CylinderShape3DHugo Locurcio
2022-10-19Merge pull request #66950 from ↵Clay John
Calinou/doc-surfacetool-generate-normals-smooth-groups Document `SurfaceTool.generate_normals()` interaction with smooth groups
2022-10-19Merge pull request #66279 from aaronfranke/control-min-sizeMax Hilbrunner
Revert `custom_minimum_size` type back to `Vector2` instead of `Vector2i`
2022-10-19Merge pull request #66940 from aaronfranke/doc-get-tr-aabbMax Hilbrunner
Remove the global space `get_transformed_aabb` helper method
2022-10-19Merge pull request #65613 from ↵Max Hilbrunner
Commander-Firestrike/audiostreamgeneratorplayback_docs_fix_0 Update AudioStreamGeneratorPlayback.xml
2022-10-19Merge pull request #66134 from MewPurPur/fix-outdated-editor-settingsMax Hilbrunner
Improve some Text Editor editor settings
2022-10-19Merge pull request #66410 from RedMser/patch-1Max Hilbrunner
Fix `Control.get_global_rect` documentation
2022-10-19Merge pull request #66326 from zak-grumbles/editor_script_reference_docsMax Hilbrunner
Add note regarding RefCounted to EditorScript docs
2022-10-19Merge pull request #67001 from KoBeWi/🎲Max Hilbrunner
Fill random docs
2022-10-19Merge pull request #67208 from Mickeon/doc-peeves-the-peeveningMax Hilbrunner
Tweak `@GlobalScope` functions documentation overall
2022-10-18Rewrite most of Resource's documentationMicky
2022-10-18Tweak `@GlobalScope` functions documentation overallMicky
Generally: - Made use of [param] more frequently; - Link to other classes' documentation more often; - Improve and add more examples; - Ensure that multiple comments of an codeblock example are spaced out equally for better readability; - Made the writing style closer to how the rest of the documentation is formatted; - Ensure these are called "functions", not "methods". - Fixed a few typos. - Touched up a few cases of zero being written as "zero" or "0" where "0" or "0.0" would be more appropriate. - Removed mentions of "(real)". In 3.x, this was associated with floats, because TYPE_FLOAT was called TYPE_REAL. More specifically: - Every type-safe version of a function (such as `ceili` has a consistent final note ("A type-safe version of [method ceil], returning a [int]"). - Added more details to `randomize`, `seed`. - Corrected `floori()`'s description. It's not the same as `int()`. This was not correct behavior and has been fixed.
2022-10-18Remove the global space `get_transformed_aabb` helper methodAaron Franke
2022-10-17Merge pull request #67458 from ↵Rémi Verschelde
Sauermann/fix-expose-viewport-get-screen-transform Expose Viewport::get_screen_transform to GDScript
2022-10-17Merge pull request #67322 from ztc0611/add-ios-ui-optionsRémi Verschelde
Add iOS UI Options
2022-10-16Fix missing parenthesis in the documentationDominus Iniquitatis
2022-10-15Expose Viewport::get_screen_transform to GDScriptMarkus Sauermann
2022-10-15Merge pull request #63332 from KoBeWi/static_images_aka_photosRémi Verschelde
Make some Image methods static
2022-10-15Merge pull request #67403 from bitbrain/rename-to-positionRémi Verschelde
Rename `pos` to `index` on Node
2022-10-14Rename pos -> index on NodeMiguel Gonzalez Sanchez
2022-10-14Add STATIC_CALLED_ON_INSTANCE warning to highlightclayjohn
when static functions are called directly from objects
2022-10-14Make some Image methods statickobewi
2022-10-14Always update Viewport's last_mosue_positionMarkus Sauermann
When the mouse cursor is over a embedded Window, the Viewport's last_mouse_position did not get updated. This patch makes sure that the update happens on every InputEventMouse. Document canvas layer of embedded Windows.
2022-10-14Merge pull request #63607 from BastiaanOlij/fix_xr_originRémi Verschelde
Add current setting to XROrigin3D and fix double positioning HMD
2022-10-13Merge pull request #67057 from Anutrix/rng-generator-default-seedRémi Verschelde
2022-10-13Move Shortcut Context to Control and ensure that `shortcut_input` adheres to ↵Eric M
contexts. Also ensure that controls with no context are only triggered AFTER nodes which do have a context.
2022-10-13Merge pull request #67320 from Calinou/fix-volumetric-fog-low-densityRémi Verschelde
Fix volumetric fog not rendering at densities lower than or equal to 0.001
2022-10-13Merge pull request #66349 from A-Lamia/Amount_At_CollisionRémi Verschelde
PARTICLES: adds amount property to collision sub particles.
2022-10-13Add current setting to XROrigin3D and fix double positioning HMDBastiaan Olij
2022-10-13Fix volumetric fog not rendering at densities lower than or equal to 0.001Hugo Locurcio
This allows volumetric fog to render with the lowest density that can be specified in the inspector (0.0001).
2022-10-12Add iOS UI OptionsZach Coleman
2022-10-13particles: add amount property to sub property collision.Lamia
2022-10-12Rename `set`/`get_indexed`'s "property" to "property_path"Micky
Also touches up the Documentation slightly.