summaryrefslogtreecommitdiff
path: root/doc
AgeCommit message (Collapse)Author
2021-10-15Merge pull request #53833 from akien-mga/remove-webm-supportRémi Verschelde
2021-10-15Add scene Post-Import Plugin support.reduz
* New plugin system to control the whole import workflow * Can add options and run code at every import step (general, per node, mesh, animation, material etc.) This constitutes a first version of these plugins. The ability to interact with the import preview dialog will likely be added later on.
2021-10-15Remove WebM support (and deps libvpx and opus)Rémi Verschelde
We've had many issues with WebM support and specifically the libvpx library over the years, mostly due to its poor integration in Godot's buildsystem, but without anyone really interested in improving this state. With the new GDExtensions in Godot 4.0, we intend to move video decoding to first-party extensions, and this would likely be done using something like libvlc to expose more codecs. Removing the `webm` module means we can remove libsimplewebm, libvpx and opus, which we were only used for that purpose. Both libvpx and opus were fairly complex pieces of the buildsystem, so this is a nice cleanup. This also removes the compile-time dependency on `yasm`. Fixes lots of compilation or non-working WebM issues which will be linked in the PR.
2021-10-14Merge pull request #53054 from MaxLap/doc_shape_signalsCamille Mohr-Daurat
Improve area/body_shape_entered/exited signals parameter names and doc
2021-10-14Improve area/body_shape_entered/exited signals parameter names and docMaxime Lapointe
Fix some typoed names from the doc Add _index to "index" parameters of *_shape_* signals, this is both in doc and in the template. This makes the code, signature and doc easier to understand Add method to get Node from the _index params of those signals. This was not as easy to find as one would expect. Putting this information where it is needed will help.
2021-10-14Fix the height fog effectBrian Semrau
2021-10-13Merge pull request #53597 from Xeadriel/patch-1Rémi Verschelde
2021-10-13Remove REST transform influence in skeleton bonesreduz
* Animations and Skeletons are now pose-only. * Rest transform is kept as reference (when it exists) and for IK * Improves 3D model compatibility (non uniform transforms will properly work, as well as all animations coming from Autodesk products).
2021-10-13Add that elapsed_time in CharFXTransform resets when RichTextLabels text is ↵Xeadriel
changed Update doc/classes/CharFXTransform.xml Grammar fix Co-authored-by: Aaron Record <50304111+LightningAA@users.noreply.github.com>
2021-10-13Prevent tiles outside atlas textureGilles Roudière
2021-10-13Merge pull request #53689 from reduz/remove-animation-transform3d-trackRémi Verschelde
2021-10-12Remove animation 3D transform track, replace by loc/rot/scale tracks.reduz
* `Animation.TYPE_TRANSFORM3D` track is gone. * Added POSITION_3D, ROTATION_3D, SCALE_3D tracks. * GLTF2, Collada, FBX importers will only import the track types found. * Skeleton3D bone poses are now Pos/Rot/Scale, pose matrix removed. * AnimationPlayer and AnimationTree animate these tracks separately, only when found. * Removed BakeReset code, is useless with these changes. This is the first in a series of commits designed to make the animation system in Godot more useful, which includes: * Better compatibility with Autodesk products * Better reusability of animations across models (including retargeting). * Proper animation compression. * etc. *Note* GLTF2 animation saving went broken with this PR, needs to be fixed in a subsequent one.
2021-10-12Merge pull request #53636 from KoBeWi/colorayerRémi Verschelde
Add modulate property to TileMap layers
2021-10-12Add a way to force undo/redo operations to be kept in MERGE_ENDS modeGilles Roudière
2021-10-12Merge pull request #52548 from m4gr3d/customize_metadata_dir_masterRémi Verschelde
Make the project data directory customizable
2021-10-11Revert "Implement reverse playback and ping-pong loop in AnimationPlayer and ↵Juan Linietsky
NodeAnimation"
2021-10-11Make the project data directory customizable.ne0fhyk
2021-10-11Merge pull request #48332 from TokageItLab/implement-ping-pongRémi Verschelde
2021-10-11Move add_syntax_highlighter bind to ScriptEditorBasePaulb23
2021-10-10Add modulate property to TileMap layerskobewi
2021-10-09Mention remove_node() side effect of potentially setting owner to nullzacryol
2021-10-09Fix typo in the `Timer.wait_time` descriptionHugo Locurcio
2021-10-09implement ping-pong loop in animationTokage
Co-authored-by: Chaosus <chaosus89@gmail.com>
2021-10-09Add a warning for Timer nodes with very low wait timesHugo Locurcio
Very low wait times behave in unpredictable ways depending on the rendered frame rate. This is because the timeout signal is only emitted once per rendered frame (or physics frame, depending on the timer's process mode).
2021-10-09Fix missing argument names in bindingsRémi Verschelde
While at it, tweak some boolean setters to use `p_enabled` for the bool. Also renames `draw_minimap()` to `set_draw_minimap()`.
2021-10-08Allow any floating-point value as a 3D rendering scale optionHugo Locurcio
This allows for finer control over 3D rendering resolution. Supersampling can also be performed by setting a 3D rendering resolution above 1.0, which is useful for offline rendering or for very high-end GPUs.
2021-10-08Merge pull request #53549 from DeeJayLSP/refcounted-fix-descriptionRémi Verschelde
2021-10-08Fix RefCounted descriptionDeeJayLSP
If the class name is modified, its name in the description should be too. However, pluralization is a bit complicated in this case. I'll give the options `RefCounteds` and `reference-counted objects`. Maybe both can be used.
2021-10-08[Net] Add call_local argument to Node.rpc_config.Fabio Alessandrelli
2021-10-07Merge pull request #53493 from DeeJayLSP/patch-1Rémi Verschelde
2021-10-07Merge pull request #53541 from Calinou/doc-call-group-nullRémi Verschelde
2021-10-07Merge pull request #53523 from Calinou/remove-occlusion-colorRémi Verschelde
2021-10-07Merge pull request #53538 from Calinou/environment-ssr-fade-no-negative-valuesRémi Verschelde
2021-10-07Document null argument limitation with `SceneTree.call_group()`Hugo Locurcio
2021-10-07Don't allow translucent colors in built-in sky material propertiesHugo Locurcio
The colors' alpha channel is ignored, so there's no point in exposing it in the editor.
2021-10-07Clamp Environment's SSR fade-in and fade-out to positive valuesHugo Locurcio
Negative values result in rendering glitches.
2021-10-07Remove unimplemented `Environment.ambient_light_occlusion_color` propertyHugo Locurcio
This property was intended to provide a way to have SSAO or VoxelGI ambient occlusion with a color other than black. However, it was dropped during the Vulkan renderer development due to the performance overhead it caused when the feature wasn't used.
2021-10-07DisplayServer: Add multiple descriptions for methods.DeeJayLSP
Added multiple descriptions for clipboard, mouse and window methods.
2021-10-07i18n: Sync classref translations with `3.x` branchRémi Verschelde
The files are directed copied from the version which was merged in `3.x` together with the translations from Weblate. For future commits we can do cherry-picks from `3.x` to `master` like usual for the editor translations.
2021-10-06Merge pull request #53455 from briansemrau/thread-is-executingRémi Verschelde
[core_bind] Add `Thread::is_alive`. Replace `is_active` with `is_started` to align with core/os/Thread API.
2021-10-06Merge pull request #45699 from TokageItLab/implement-skeleton-editor-gizmoRémi Verschelde
Implement Skeleton Editor Gizmo
2021-10-06[core_bind] Add `is_alive` to Thread. Replace `is_active` with `is_started`.Brian Semrau
Replacing `is_active` resolves an API discrepancy between core_bind Thread and core/os Thread.
2021-10-07Implemented SkeletonEditorGizmoSilc Renew
Co-authored-by: Lyuma <xn.lyuma@gmail.com>
2021-10-06Merge pull request #53472 from akien-mga/doc-update-tutorial-linksRémi Verschelde
2021-10-06doc: Update links to latest documentation after content reorganizationRémi Verschelde
2021-10-06Change dragging cursor on Windowskobewi
2021-10-06Merge pull request #53416 from DeeJayLSP/patch-1Rémi Verschelde
2021-10-06Merge pull request #53446 from nekomatata/container-pre-sort-childrenRémi Verschelde
2021-10-05Describe how window mode setter and getter worksDeeJayLSP
2021-10-05Add pre-sort signal and notification in ContainerPouleyKetchoupp
Allows processing before children are sorted, useful for custom containers inherited from existing ones like BoxContainer.