Age | Commit message (Collapse) | Author |
|
Mention that look_at() expects global coordinates
|
|
Mention constructor arguments in duplicate() doc
|
|
Document AnimationPlayer's 'get_queue()' and 'caches_cleared'
|
|
Fix ambiguous method description regarding `body_test_motion` in 2D
|
|
Remove outdated information from skeleton class reference
|
|
Fix region editor for NinePatchRect
|
|
Fix misc. source comment typos
|
|
Found using `codespell -q 3 -S ./thirdparty,*.po -L ang,ba,cas,dof,doubleclick,fave,hist,leapyear,lod,nd,numer,ois,paket,seeked,sinc,switchs,te,uint -D ~/Projects/codespell/codespell_lib/data/dictionary.txt `
|
|
Improve the `Image.get_pixel()` and `Image.get_pixelv()` documentation
|
|
|
|
|
|
See #32147 and #32148.
|
|
|
|
|
|
|
|
|
|
|
|
VCS integration for Godot Editor
|
|
The VCS interface can be thought of like a proxy system, where any call
to the API is redirected to the actual implementation of the VCS API
which may be existing in the form of a GDNative plugin which is marked
as a singleton and is not marked reloadable. If the implementation
doesn't exist in the file system, it only returns the default responses which contain
mostly empty containers of the data type that every API call returns.
EditorVCSInterface is used like a Godot object with a script attached to it. The script
is the implementation of the API and the object is the interface to the
script, which returns default responses if the script doesn't exist or
if the script doesn't define a function that handles that particular API call.
The entire system has been implemented using Object::call() and its
ability to switch to the script instance to handle the API call if the
script exists. Look for VersionControlEditorPlugin::_initialize() for
the essential API setup.
|
|
Add an `editor_description` property to Node for documentation purposes
|
|
Add feature to Button to make its icon expand/shrink with the button's size
|
|
Don't clamp color to [0, 1] in Linear tonemapping
|
|
Remove redundant transform method in Geometry singleton
|
|
Added link to tutorial for VisualShaderNodeCustom
|
|
Transform2D's xform method can be used instead which handles
`PoolVector2Array` now (as well as 3D version).
|
|
Add transform methods for PoolVector*Array
|
|
Add 'is_point_in_circle()' to Geometry class, and general file cleanup
|
|
|
|
Improve AudioStreamSample and AudioStreamGenerator documentation
|
|
|
|
- Add a link to the audio generator demo in AudioStreamGenerator
and AudioStreamGeneratorPlayback.
- Mention that signed PCM8 data is expected in AudioStreamSample
(and how to convert unsigned PCM8 to signed PCM8).
|
|
Changed the behaviour of the Linear tonemapping operator to not clamp to [0, 1] range
in the case when KEEP_3D_LINEAR is defined. This allows to render values > 1.0 in
floating point texture targets (via Viewport) for further processing or saving high
dynamic range data into files. This only works when no color conversion is active.
|
|
|
|
|
|
Similarly to `Vector2` and `Rect2` transforms in 2D and Vector3, Plane,
and AABB in 3D. PoolVector2Array and PoolVector3Array were the only
missing Variant types in both Transform2D and Transform respectively.
|
|
Add a project description setting
|
|
|
|
The description is displayed as a tooltip when hovering the project
in the Project Manager. It can span multiple lines.
This partially addresses #8167.
|
|
|
|
The previous value (0) was a special case in the fog shader.
It made the shader use the Camera's `far` value as the fog depth end
value, which led to an inconsistency in the fog rendering between
the editor and a running project. This is because the editor camera
uses a `far` property of 500 by default, whereas the Camera node's
`far` property is set to 100 by default.
The new fixed value is equal to the default `far` property in Camera,
which leads to a consistent appearance between the editor and a running
project.
This closes #31686.
|
|
Allow to reserve space for nodes in A* and elements in OAHashMap explicitly.
|
|
* also handle overflow occurring in _get_probe_length
|
|
multiple editor/project manager instances, recent/favourite project list to project manager dock menu and opened scene list to editor dock menu.
|
|
|
|
It is implemented using editor-only metadata, in a way similar to
edit locking or Position2D gizmo extents.
This closes #2082.
|
|
Add Vector2/3 sign and posmod functions, axis, docs, misc additions
|
|
Fix custom inertia in physics2d
|
|
Fix wrong hyperlinks in Control and Tree.
|
|
|
|
This reverts commit e2c3bbabb0a12f58585bb441d91ee8882225b0ee.
This was superseded by #29871 which adds more crypto features with a
dedicated interface.
Since this commit was never in a stable release (merged during 3.2 dev),
we revert it to avoid having to deprecate it in favor of the Crypto API.
See https://github.com/godotengine/godot/pull/31187#issuecomment-523377965
|