Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-04-14 | Merge pull request #37316 from nekomatata/physical-bone-settings | Rémi Verschelde | |
Add PhysicalBone rotation, damping, axis lock & can sleep | |||
2020-04-14 | Add PhysicalBone rotation, damping, axis lock & can sleep | PouleyKetchoupp | |
2020-04-13 | Merge pull request #37749 from clayjohn/Vulkan-improved-ss | Rémi Verschelde | |
Add vogel filter and settings to soft shadows | |||
2020-04-10 | Add proper quality settings to soft shadows | clayjohn | |
2020-04-10 | Fix OptionButton docs godotengine#36803 | Zak Grumbles | |
* item_selected and item_focused docs incorrectly had 'id' as the parameter. Changed to 'index'. * Fix parameter name in ADD_SIGNAL callin code. | |||
2020-04-10 | Merge pull request #37297 from dalexeev/doc_file | Rémi Verschelde | |
Improve the `File.store_{8,16,32,64}()` documentation | |||
2020-04-10 | Merge pull request #37383 from WARIO-MDMA/godotphysics-rename | Rémi Verschelde | |
Rename "GodotPhysics" to "GodotPhysics{2D,3D}" | |||
2020-04-10 | Merge pull request #37426 from pycbouh/docs-override-properties | Rémi Verschelde | |
Add more verbosity for property overrides in RST documentation | |||
2020-04-10 | Merge pull request #37482 from zak-grumbles/fix_dict_duplicate_docs | Rémi Verschelde | |
Clarify Dictionary duplicate parameters in docs | |||
2020-04-10 | Merge pull request #37566 from lucaslcode/clarify_autotile | Rémi Verschelde | |
clarify autotile_coord in docs | |||
2020-04-10 | Merge pull request #37699 from lupoDharkael/committing-typo | Rémi Verschelde | |
Replace is_commiting_action with is_committing_action | |||
2020-04-09 | Clarify documentation and indicate that rect_clip_content affects only ↵ | Markus Sauermann | |
CanvasItem based nodes. Resolves #37683 | |||
2020-04-09 | Renaming all ARVR nodes to XR | Bastiaan Olij | |
2020-04-09 | Rename "GodotPhysics" to "GodotPhysics{2D,3D}" | WARIO-MDMA | |
2020-04-08 | Replace is_commiting_action with is_committing_action | lupoDharkael | |
2020-04-08 | Improve the CameraServer and CameraFeed class documentations | Hugo Locurcio | |
This closes https://github.com/godotengine/godot-docs/issues/3255. | |||
2020-04-07 | i18n: Sync translate template for class reference | Rémi Verschelde | |
Adds initial fr.po translation for initialization on Weblate. | |||
2020-04-07 | Merge pull request #37589 from Nannaquin/updatecolordoc | Rémi Verschelde | |
Add reference of Color8 function to Color class documentation | |||
2020-04-06 | Merge pull request #37556 from KoBeWi/kill_get_index | Rémi Verschelde | |
Remove Node.get_position_in_parent() | |||
2020-04-06 | Remove Node.get_position_in_parent() | Tomasz Chabora | |
2020-04-05 | Add reference of Color8 function to Color class documentation | Nannaquin | |
2020-04-04 | Merge pull request #37391 from dreamsComeTrue/embedded-windows-mode | Rémi Verschelde | |
Expose 'Embedded Windows Mode' as Editor and Project Settings | |||
2020-04-03 | clarify autotile_coord in docs | lucaslcode | |
I had no idea what 'coordinate' meant in the context of autotiles, so just adding some clarification for future people who have the same problem. | |||
2020-04-03 | Expose 'Embedded Windows Mode' as Editor and Project Settings | Dominik 'dreamsComeTrue' Jasiński | |
2020-04-03 | Re-expose a simplified version of the stretch properties in SubViewport | Michael Alexsander | |
2020-04-03 | Merge pull request #37505 from YeldhamDev/viewcont_rename | Rémi Verschelde | |
Rename ViewportContainer to SubViewportContainer | |||
2020-04-03 | doc: Sync classref with current source | Rémi Verschelde | |
2020-04-02 | Clarify Dictionary duplicate params godotengine#37162 | Zak Grumbles | |
* Added additional clarification for the function of the 'deep' parameter in the Dictionary's `duplicate` method. | |||
2020-04-01 | Rename ViewportContainer to SubViewportContainer | Michael Alexsander | |
2020-03-31 | Merge pull request #35765 from clayjohn/master | Rémi Verschelde | |
Add a method to retrieve active material from MeshInstance | |||
2020-03-31 | Merge pull request #37442 from YeldhamDev/subviewport_register | Rémi Verschelde | |
Register SubViewport class | |||
2020-03-31 | doc: Sync classref with DisplayServer/Window changes | Rémi Verschelde | |
2020-03-30 | Clarify docs for Thread.start() godotengine#36032 | Zak Grumbles | |
* Updated docs for Thread.start() to specify that the method argument must accept one parameter. | |||
2020-03-30 | Add a method to retrieve active material from MeshInstance | clayjohn | |
2020-03-31 | Merge pull request #37445 from nekomatata/hook-makerst-fix | Rémi Verschelde | |
Fixed errors in makerst pre-commit hook | |||
2020-03-31 | Fixed errors in makerst pre-commit hook | PouleyKetchoupp | |
2020-03-30 | Register SubViewport class | Michael Alexsander | |
2020-03-30 | Merge pull request #37436 from akien-mga/doc-node-renames | Rémi Verschelde | |
doc: Update classref with node renames | |||
2020-03-30 | doc: Update classref with node renames | Rémi Verschelde | |
A few extra renames for classes which were missed in last week's PRs. | |||
2020-03-30 | Add more verbosity for property overrides in RST documentation | Yuri Sizov | |
2020-03-30 | SCons: Format buildsystem files with psf/black | Rémi Verschelde | |
Configured for a max line length of 120 characters. psf/black is very opinionated and purposely doesn't leave much room for configuration. The output is mostly OK so that should be fine for us, but some things worth noting: - Manually wrapped strings will be reflowed, so by using a line length of 120 for the sake of preserving readability for our long command calls, it also means that some manually wrapped strings are back on the same line and should be manually merged again. - Code generators using string concatenation extensively look awful, since black puts each operand on a single line. We need to refactor these generators to use more pythonic string formatting, for which many options are available (`%`, `format` or f-strings). - CI checks and a pre-commit hook will be added to ensure that future buildsystem changes are well-formatted. | |||
2020-03-26 | Merge pull request #37259 from Calinou/doc-editorfeatureprofile | Rémi Verschelde | |
Document the EditorFeatureProfile class | |||
2020-03-25 | Improve the `File.store_{8,16,32,64}()` documentation | Danil Alexeev | |
Added information about the intervals of values that the functions `store_{8,16,32,64}()` can correctly write to the file. | |||
2020-03-25 | SCons: Drop support for Python 2 | Rémi Verschelde | |
We now require SCons 3.0+ (first version with Python 3 support), and we set min required Python 3 version to 3.5 (3.4 and earlier are EOL). | |||
2020-03-23 | Document the EditorFeatureProfile class | Hugo Locurcio | |
2020-03-23 | Merge pull request #33508 from nekomatata/object-has-signal | Rémi Verschelde | |
Added has_signal method for Object | |||
2020-03-23 | Added has_signal method for Object | PouleyKetchoupp | |
2020-03-22 | Merge pull request #37179 from clayjohn/VULKAN-sky-shader | Rémi Verschelde | |
Implement Sky Shaders | |||
2020-03-21 | Working sky shader implementation | clayjohn | |
2020-03-20 | i18n: Generate translation template for class reference | Rémi Verschelde | |