Age | Commit message (Collapse) | Author |
|
|
|
attached to a joint with bullet physics bullet
Fixes #16424
|
|
|
|
Added pitch scale property to AudioStreamPlayer, AudioStreamPlayer2D and AudioStreamPlayer3D
|
|
Fix crash on deleted rigidbodies without contact monitor (issue 15904)
|
|
|
|
|
|
Using v1.11.0 from https://github.com/lucasdemarchi/codespell
|
|
anything).
Seen too many users misunderstanding the edit rect is the shape.
|
|
'name' default param should not be used since there is problem with name shadowing
|
|
Update collision shapes data on tree entered
|
|
Reset collider on ray node
|
|
|
|
of tree notification.
Updated doc accordingly.
|
|
Notable potentially breaking changes:
- PROPERTY_USAGE_NOEDITOR is now PROPERTY_USAGE_STORAGE | PROPERTY_USAGE_NETWORK, without PROPERTY_USAGE_INTERNAL
- Some properties were renamed, and sometimes even shadowed by new ones
- New getter methods (some virtual) were added
|
|
This is needed because the final startup values for shapes may change between parenting and entering the scene tree. For instance, if the collision shape belongs to a inherited scene.
Fixes #13835.
|
|
Fixed crash on duplicate GIProbe baking
|
|
|
|
|
|
|
|
Added RigidBody functionality to VehicleBody
|
|
|
|
Using `misc/scripts/fix_headers.py` on all Godot files.
Some missing header guards were added, and the header inclusion order
was fixed in the Bullet module.
|
|
|
|
Restore the behavior of Spatial rotations recently changed in c1153f5.
|
|
AudioStreamPlayer3D
|
|
Happy new year to the wonderful Godot community!
|
|
|
|
|
|
|
|
|
|
this case), fixes #13393
|
|
That change was borne out of a confusion regarding the meaning of "local" in #14569.
Affine transformations in Spatial simply correspond to affine operations of its Transform. Such operations take place in a coordinate system that is defined by the parent Spatial. When there is no parent, they correspond to operations in the global coordinate system.
This coordinate system, which is relative to the parent, has been referred to as the local coordinate system in the docs so far, but this sloppy language has apparently confused some users, making them think that the local coordinate system refers to the one whose axes are "painted" on the Spatial node itself.
To avoid such conceptual conflations and misunderstandings in the future, the parent-relative local system is now referred to as "parent-local", and the object-relative local system is called "object-local" in the docs.
This commit adds the functionality "requested" in #14569, not by changing how rotate/scale/translate works, but by adding new rotate_object_local, scale_object_local and translate_object_local functions. Also, for completeness, there is now global_scale.
This commit also updates another part of the docs regarding the rotation property of Spatial, which also leads to confusion among some users.
|
|
Set particles emitting to false when particles finish emitting with one-shot enabled
|
|
#14569
|
|
Fix crash & error at saving scene
|
|
|
|
-Disabled Opus, implementation is wrong.
|
|
enabled
|
|
Few small tweaks for ARVR
|
|
|
|
many import problems from Blender, GLTF2, etc.
|
|
added new center on hmd option
|
|
-Fixed a bug recently introduced when releasing mouse events and calling popups
|
|
The previous commit corrected the RNG behavior for the lightbaker but
also made it significantly slower on high core count systems. Due to the
vector of states being physically close together in RAM we force a cache
synchronization across all cores whenever we call for the next random
number to be generated.
This will create a temporary local copy of the RNG state before entering
the loop and then saving it back to the global state when done. This
will preserve the per-thread RNG state (and random number quality) while
significantly improving performance.
On my 16 thread box it saves 3 minutes baking the Sponza scene, bringing
performance back in line to before the various RNG fixes were
introduced, being slightly faster than the first implementation.
|
|
In our previous attempts to fix the lightmapper we may have
inadvertently introduced the same issue we were trying to fix. It
appears that rand() will on some platforms introduce a mutex making it
slower and on others may have a per-thread state that would need to be
initialized with srand() on each thread. This slows down the lightbaking
further.
This sets up a separate rng state for each OpenMP thread by calling
rand() only in the single-threaded part of the code. We then keep a
vector of states.
I believe this solves our problems.
|
|
Sorry for the churn
|
|
|
|
|
|
|