| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
This PR aims to help "fix" #43440
|
|\
| |
| |
| | |
Fix `Projection::invert` for orthographic projection
|
| |
| |
| |
| |
| |
| | |
Fixes #68878, specially when using orthographic projection.
Also adds some tests.
|
|\ \
| | |
| | |
| | | |
Add basic tests for Fontfile
|
| | | |
|
|/ /
| |
| |
| |
| |
| | |
Replace two while loops with fposmodp.
Document radial_initial_angle wrapping.
Add testcases for set_radial_initial_angle()
|
| |
| |
| |
| | |
Co-authored-by: sam <samsface@gmail.com>
|
| | |
|
|\ \
| | |
| | |
| | | |
Fix TabBar initialization issue and add tests
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | |
| | | | |
Add Unit Test cases for `Sky`
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | |
| | | | | |
Add unit tests for `PacketPeer`
|
| |/ / /
| | | |
| | | |
| | | | |
Partially fixes #43440
|
|/ / /
| | |
| | |
| | | |
Partially fixes #43440
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
If the module is enabled (default), 2D physics works as it did before.
If the module is disabled and no other 2D physics server is registered
(via a module or GDExtension), then we fall back to a dummy
implementation which effectively disables 2D physics functionality (and
a warning is printed).
The dummy 2D physics server can also be selected explicitly, in which
case no warning is printed.
|
|/ /
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
If the module is enabled (default), 3D physics works as it did before.
If the module is disabled and no other 3D physics server is registered
(via a module or GDExtension), then we fall back to a dummy
implementation which effectively disables 3D physics functionality (and
a warning is printed).
The dummy 3D physics server can also be selected explicitly, in which
case no warning is printed.
|
| |
| |
| |
| |
| | |
Individual bones are not represented as `Node`s in Godot, in order to support meta functionality for them the skeleton has to carry the information similarly to how other per-bone properties are handled.
- Also adds support for GLTF import/export
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
- Added test cases for setting and getting key properties of Parallax2D, including:
- Scroll scale
- Repeat size and times
- Autoscroll
- Scroll and screen offset
- Limit begin and end
- Follow viewport and ignore camera scroll flags
|
| |
| |
| |
| |
| |
| |
| | |
Added test cases for constructor and property getters/setters:
- Map width, depth, and data
- Minimum and maximum height
- Update map data from image
|
| | |
|
|\ \
| | |
| | |
| | | |
Ability to convert native engine types to JSON and back.
|
| |/
| |
| |
| |
| |
| | |
Implements support for all engine types in JSON encoding/decoding
Co-Authored-By: Juan <reduzio@gmail.com>
Co-Authored-By: Rémi Verschelde <rverschelde@gmail.com>
|
|\ \
| | |
| | |
| | | |
Add unit tests for `OptionButton`
|
| | | |
|
|\ \ \
| | | |
| | | |
| | | | |
Add button unit test
|
| | |/
| |/| |
|
|\ \ \
| | | |
| | | |
| | | | |
Add unit tests for GradientTexture1D and GradientTexture2D
|
| | | |
| | | |
| | | |
| | | | |
Co-authored-by: ArthyChaux <53626057+ArthyChaux@users.noreply.github.com>
|
|\ \ \ \
| | | | |
| | | | |
| | | | | |
Add unit tests for `StyleBoxTexture`
|
| | |/ /
| |/| |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Capitalization fix in test_style_box_texture.h
Co-authored-by: Hugo Locurcio <hugo.locurcio@hugo.pro>
Newline fix in test_style_box_texture.h
Co-authored-by: Hugo Locurcio <hugo.locurcio@hugo.pro>
|
|/ / /
| | |
| | |
| | | |
Added TreeItem::last_child to avoid needing to iterate through all children to get to the end. This mainly helps in cases where one TreeItem has many children (1000s), and new children are added to the end, as each add had to iterate through all previously added children.
|
| |/
|/| |
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| |
| | |
* Replaces `find(...) != -1` with `contains` for `String`
* Replaces `find(...) == -1` with `!contains` for `String`
* Replaces `find(...) != -1` with `has` for containers
* Replaces `find(...) == -1` with `!has` for containers
|
|\ \
| | |
| | |
| | | |
Reduce and prevent unnecessary random-access to `List`
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Random-access access to `List` when iterating is `O(n^2)` (`O(n)` when
accessing a single element)
* Removed subscript operator, in favor of a more explicit `get`
* Added conversion from `Iterator` to `ConstIterator`
* Remade existing operations into other solutions when applicable
|
|/ / |
|
|/ |
|
|\
| |
| |
| | |
Add unit tests for `OAHashMap`
|
| | |
|
|\ \
| | |
| | |
| | | |
Add unit tests for Camera2D
|
| | | |
|
| |/
|/| |
|
| |
| |
| |
| |
| |
| |
| |
| | |
Added to:
* `Callable`s
* `Object`s
* `ClassDB`
* `Script(Instance)`s
|
| | |
|