Age | Commit message (Collapse) | Author |
|
Rename RayCasts collision_layer to collision_mask
|
|
The point is that `RayCast`s are checked against objects' `collision_layer`(s), but they themselves are considered no to _belong_ to any layer. Therefore, the correct name for their property is `collision_mask`, rather than `collision_layer`.
Only renaming is needed since the behavior was already the right one, only that it wasn't matching what users would expect from the name and description of the property.
Fixes #7589, where it's also discussed.
|
|
|
|
Fix adding a NavigationPolygonInstance to a Node2D freezing the editor
[ci skip]
|
|
Fixes #11975
|
|
with a (1,1) motion scale synchs perfectly with a regular stationary sprite that is outside the ParallaxBackground, regardless of the zoom level and movement of the camera.
|
|
|
|
|
|
|
|
classes
|
|
and edited docs for Area2D due to renaming o get_audio_bus and set_audio_bus
|
|
Rename user facing methods and variables as well as the corresponding
C++ methods according to the folloming changes:
* pos -> position
* rot -> rotation
* loc -> location
C++ variables are left as is.
|
|
Fix enums bindings
|
|
Add missed bindings for enums
Move some enums to class to have correct output of api.json
|
|
KinematicBody2D api most friendlier
|
|
same, to avoid confusing. Closes #11211
|
|
|
|
Fix unused variable warnings
|
|
Remove assignment and declarations in if statements
|
|
Fix various assorted warnings
|
|
Fix serveral recent new clang-format errors
[ci skip]
|
|
|
|
KinematicBody
|
|
The forth in my quest to make Godot 3.x compile with -Werror on GCC7
|
|
After discussing with @reduz and @akien-mga it was decided that we do
not allow assignments or declarations in if statements. This PR removes
the instances of this I could find by automated means.
|
|
Fix various warnings that don't have enough instances to merit
individual commits. Also fixes a potential bug in audio_server.cpp.
|
|
|
|
#10730
Also disabled the auto shut down of the property when stream ends, to make it easier to animate
|
|
|
|
add shadow_filter variant PCF7
|
|
The second in my quest to make Godot 3.x compile with -Werror on GCC7
|
|
#10093
|
|
|
|
Guarantee start & end points are returned by Navigation2D
|
|
Let TileMap apply its material
|
|
DocData and virtual method type hints fixes
|
|
- Makes vararg methods automatically use PROPERTY_USAGE_NIL_IS_VARIANT on return types
- Completely removes the ":type" suffix for method names. Virtual methods must use the MethodInfo constructors that takes Variant::Type or PropertyHint as the first parameter for the return type (with CLASS_INFO as a helper to get the PropertyInfo). Parameters must use PROPERTY_HINT_RESOURCE_TYPE and hint string.
- PROPERTY_USAGE_NIL_IS_VARIANT is no longer needed for parameters, because parameters cannot be void.
- Adds missing PROPERTY_USAGE_NIL_IS_VARIANT to virtual and built-in methods that return Variant.
|
|
Allow to disable shadow gradients in Light2D
|
|
|
|
|
|
|
|
|
|
Currently the shadow gradient can't be disabled and always has a minimum value of 1.
I'm not sure why though, the default value seems to be 0 and the rasterizer checks for 0 [here](https://github.com/godotengine/godot/blob/8fc6bb8f771c520c15320c3b4be561abc648d65d/drivers/gles3/rasterizer_canvas_gles3.cpp#L1284) before enabling it.
Feels like a bug to me, but if there's a reason for that let me know.
As a side effect, this edit effectively changes the default value from 1 to 0 for new projects.
|
|
Currently we rely on some undefined behavior when Object->cast_to() gets
called with a Null pointer. This used to work fine with GCC < 6 but
newer versions of GCC remove all codepaths in which the this pointer is
Null. However, the non-static cast_to() was supposed to be null safe.
This patch makes cast_to() Null safe and removes the now redundant Null
checks where they existed.
It is explained in this article: https://www.viva64.com/en/b/0226/
|
|
The change in #10524 subtly changes the behavior of set_motion_scale()
and set_motion_offset() if the ParallaxLayer does not have a parent
node. Previously it would still set the corresponding property, but
after this change the property change would be discarded.
I'm not entirely sure if this actually matters as there doesn't appear
to be any code that picks up this change if the ParallaxLayer gets
re-parented later, but it's better to not change behavior regardless.
|
|
This fixes #10515
|
|
Removed unnecessary assignments
|
|
ClassDB: Provide the enum name of integer constants
|
|
|
|
|