summaryrefslogtreecommitdiff
path: root/doc/classes
AgeCommit message (Collapse)Author
2020-07-03Add documentation for shortcut_keys_enabledSlooth
2020-07-02Fix incorrect documentation for Vector2.angle()Aaron Franke
2020-07-02Merge pull request #39415 from SkyLucilfer/PotGenerationRémi Verschelde
Add POT generation feature in Editor
2020-07-02Merge pull request #37350 from aaronfranke/force-impulseRémi Verschelde
Refactor physics force and impulse code to use (force, position) order
2020-07-02Add translation parser plugin supportSkyJJ
2020-07-02Merge pull request #38390 from Xrayez/doc-offset-poly-translateRémi Verschelde
Clarify `Geometry.offset_polygon_2d` regarding vertices translation
2020-07-02Merge pull request #34926 from Xrayez/draw-transform-defaultsRémi Verschelde
Provide `draw_set_transform` defaults for rotation and scale
2020-07-01Merge pull request #32516 from nekomatata/texture-button-flipRémi Verschelde
Added flip_h and flip_v properties in TextureButton
2020-07-01Provide `draw_set_transform` defaults for rotation and scaleAndrii Doroshenko (Xrayez)
2020-07-01Clarify `Geometry.offset_polygon_2d` regarding vertices translationAndrii Doroshenko (Xrayez)
The method is used to either inflate or deflate a polygon. For translating/transforming a polygon, use `Transform2D.xform`.
2020-07-01Environment: Refactor code for readability + moreRémi Verschelde
- Makes all boolean setters/getters consistent. - Fixes bug where `glow_hdr_bleed_scale` was not used. - Split CameraEffects to their own source file. - Reorder all Environment method and properties declarations, definitions and bindings to be consistent with each other and with the order of property bindings. - Bind missing enum values added with SDFGI. - Remove unused SDFGI enhance_ssr boolean. - Sync doc changes after SDFGI merge and other misc changes.
2020-07-01Added flip_h and flip_v properties in TextureButtonPouleyKetchoupp
2020-06-30Merge pull request #35633 from Xrayez/physics-shape-propertyRémi Verschelde
Expose shape property for shape query parameters classes
2020-06-29Added Custom Performance Monitor and feature to read intermediate values of ↵simpu
Monitor Custom monitors can be added/removed/checked using `Performance.add_custom_monitor`/`Performance.remove_custom_monitor`/`Performance.has_custom_monitor` The value can be viewed in the `Monitor` tab of Debugger. Text before `/` is used to categorize the custom monitor. `EditorPerformanceProfiler` class is created to separate logic from `ScriptEditorDebugger` User can click on the graph of monitors to read the value at that point. Graph includes intermediate base lines.
2020-06-26Keep the bottom panel visible when enabling the distraction-free modeHugo Locurcio
- Document the `EditorInterface.distraction_free_mode` property. This closes https://github.com/godotengine/godot-proposals/issues/951.
2020-06-26Expose shape property for shape query parameters classesAndrii Doroshenko (Xrayez)
Co-authored-by: PouleyKetchoupp <pouleyketchoup@gmail.com>
2020-06-25doc: Sync classref with current sourceRémi Verschelde
2020-06-23Tween.xml word order fixAndreas Gustafsson
Change the word order of '...the where...' into '...where the...'.
2020-06-23Clarify what a string being empty meansMeriipu
Should close https://github.com/godotengine/godot-docs/issues/2432
2020-06-22Merge pull request #39755 from Faless/crypto/encryption_pr_4.0Rémi Verschelde
Crypto enhancements, AESContext, RSA public key, signature, verification.
2020-06-21Fix Joint2D docskyace65
2020-06-21Document how Vector2, Vector3 and Color behave in a boolean contextHugo Locurcio
See #39731.
2020-06-21Merge pull request #39712 from akien-mga/古池や蛙飛び込む水の音Rémi Verschelde
Move Haiku platform port to external repository
2020-06-21Update bool documentation to be more clearAaron Franke
2020-06-20Move Haiku platform port to external repositoryRémi Verschelde
The Haiku port now resides at: https://github.com/godotengine/godot-haiku-platform While we're happy to support as many Free and Open Source platforms as we can, we need to put the main focus on the platforms that we can reasonably maintain, and for Haiku we have been lacking maintainers ever since the port was first merged in 2015. The Haiku code has not been compiling and much less working at least since the release of Godot 3.0, and while some attempts have been made at fixing things, it's still not functional today in the `3.2` branch (and much less in `master`, understandably). Having it in an external repository should hopefully enable Haiku contributors to fix issues in their own time, and possibly tag versions compatible with past Godot releases once they are ready.
2020-06-19Remove ToolButton in favor of ButtonHugo Locurcio
ToolButton has no redeeming differences with Button; it's just a Button with the Flat property enabled by default. Removing it avoids some confusion when creating GUIs. Existing ToolButtons will be converted to Buttons, but the Flat property won't be enabled automatically. This closes https://github.com/godotengine/godot-proposals/issues/1081.
2020-06-19Added Texture2DArray support to visual shadersYuri Roubinsky
2020-06-19Merge pull request #39641 from akien-mga/mono-always-define-optionsRémi Verschelde
Mono: Always define options in main.cpp to keep them in docs
2020-06-19Merge pull request #33235 from nekomatata/rich-text-label-fit-heightRémi Verschelde
Option in RichTextLabel for height to fit content
2020-06-18Document AES and new Crypto/CryptoKey functions.Fabio Alessandrelli
2020-06-18Mono: Always define options in main.cpp to keep them in docsRémi Verschelde
Otherwise generating docs with non-Mono builds removes them, which is not so convenient for the documentation work.
2020-06-18doc: Fix rebase error from #39589Rémi Verschelde
2020-06-18Document Mono-specific classesHugo Locurcio
This fully documents all Mono-specific classes.
2020-06-17DocData: Skip language-specific ClassDoc without methods/constantsRémi Verschelde
Removes the useless `@C#`, `@NativeScript` and `@VisualScript` entries.
2020-06-16Merge pull request #39541 from Ev1lbl0w/feature/disable-renderingRémi Verschelde
Expose disable_render_loop property to GDScript
2020-06-16Expose disable_render_loop property to GDScriptEv1lbl0w
2020-06-16Merge pull request #37903 from Xrayez/shape-2d-draw-bindRémi Verschelde
Bind Shape2D draw method
2020-06-16Merge pull request #39126 from TwistedTwigleg/GSOC_2020_Working_BranchRémi Verschelde
Skeleton and Skeleton inspector low-level changes
2020-06-15Merge pull request #39189 from touilleMan/issue-38925Rémi Verschelde
Unify OS.get_system_time_* and OS.get_unix_time
2020-06-15Made low level changes to the Skeleton3D class and Skeleton3D inspector. ↵TwistedTwigleg
Changes listed below: * Added helper functions to Skeleton3D for converting transforms from bone space to global space, and vice versa. * Updated the Skeleton3D class reference. * Changed the icon used for bones in the Skeleton3D inspector to use BoneAttachement3D's icon. * Changed the Skeleton3D inspector to use EditorPropertyTransform and EditorPropertyVector3 when possible. * Placed the Transform/Matrix for each bone in a sub-section, so it is visually similar to the Node3D inspector.
2020-06-15Merge pull request #39546 from vorblen/masterRémi Verschelde
Add description for "absorbent" and "rough"
2020-06-15Merge pull request #39439 from Lefl1/rename_get_action_listRémi Verschelde
Renamed InputMap.get_action_list to InputMap.action_get_events
2020-06-15Renamed InputMap.get_action_list to InputMap.get_action_eventsLennard
2020-06-15Add description for "absorbent" and "rough"Vorblen
2020-06-15Merge pull request #39322 from dominiks/filedialog-title-docRémi Verschelde
Add note about automatic window title to FileDialog documentation.
2020-06-15Merge pull request #39457 from bruvzg/kbd_layoutsRémi Verschelde
Add keyboard layout enumeration / set / get functions.
2020-06-15Merge pull request #39490 from Calinou/doc-node-virtual-method-treeRémi Verschelde
Clarify Node virtual methdods not being called if node is orphan
2020-06-15Merge pull request #39521 from 31/fix-image-createfromdataRémi Verschelde
Fix Image.create_from_data "use_mipmaps" class doc
2020-06-15Merge pull request #39462 from Calinou/doc-in-operatorRémi Verschelde
Document the `in` operator in String, Array and Dictionary classes
2020-06-15Merge pull request #39520 from skyace65/labelRémi Verschelde
Fix label percent visible doc description