Age | Commit message (Collapse) | Author |
|
-Removed FuncRef, since Callable makes it obsolete
-Removed int_types.h as its obsolete in c++11+
-Changed color names code
|
|
Removed make_binders and the old style generated binders.
|
|
|
|
|
|
-Sphere Attractor
-Box Attractor
-Vector Field
-Sphere Collider
-Box Collider
-Baked SDF Collider
-Heightmap Collider
|
|
|
|
|
|
Renamed toplevel to be top_level
|
|
Relates to #42479, though I don't think it would crash in the master version.
|
|
Update all get_configuration_warning() to retrieve warnings from the parent
|
|
|
|
|
|
|
|
`cast_to` is sometimes mistaken as a method rather than a property.
`target_position` makes it more obvious that it's a property.
|
|
|
|
|
|
Implement CollisionShape3D.make_convex_from_siblings()
|
|
|
|
even if nodes are no longer in the tree.
|
|
|
|
Changed CPU velocity calculation for EMISSION_SHAPE_DIRECTED_POINTS
to follow the same logic as in the GPU version:
mat2 rotm;
rotm[0] = texelFetch(emission_texture_normal, emission_tex_ofs, 0).xy;
rotm[1] = rotm[0].yx * vec2(1.0, -1.0);
VELOCITY.xy = rotm * VELOCITY.xy;
Now both CPUParticles2D & CPUParticles3D (z disabled) show the same results
as their GPU counterparts and take the initial velocity settings into account.
|
|
|
|
p_one_time = true
|
|
In general they are more confusing to users because they expect
inheritance to fully override parent methods. This behavior can be
enabled by script writers using a simple super() call.
|
|
Fix spelling & grammar in comments, docs, and messages
|
|
|
|
|
|
Fixes jitter.
|
|
|
|
Add optional parameter to specify whether applying rotation to the
PathFollow3D's Transform is necessary, preventing erroneous updates.
|
|
Refactor physics force and impulse code to use (force, position) order
|
|
Environment: Refactor code for readability + more
|
|
Enable raycast nodes by default
|
|
- Makes all boolean setters/getters consistent.
- Fixes bug where `glow_hdr_bleed_scale` was not used.
- Split CameraEffects to their own source file.
- Reorder all Environment method and properties declarations,
definitions and bindings to be consistent with each other
and with the order of property bindings.
- Bind missing enum values added with SDFGI.
- Remove unused SDFGI enhance_ssr boolean.
- Sync doc changes after SDFGI merge and other misc changes.
|
|
Camera3D::is_position_behind to avoid redundant work.
|
|
Move GI to a deferred pass
|
|
Also ensure that default closest_safe and closest_unsafe values are
defined in cast_motion() and before cast_motion() is called.
|
|
Increase the default DirectionalLight3D and OmniLight3D shadow biases
|
|
Normalise p_up_direction vector in move_and_slide()
|
|
move_and_slide_with_snap() and fix tolerance in
move_and_slide_with_snap() max floor angle.
|
|
Skeleton and Skeleton inspector low-level changes
|
|
Changes listed below:
* Added helper functions to Skeleton3D for converting transforms from bone space to global space, and vice versa.
* Updated the Skeleton3D class reference.
* Changed the icon used for bones in the Skeleton3D inspector to use BoneAttachement3D's icon.
* Changed the Skeleton3D inspector to use EditorPropertyTransform and EditorPropertyVector3 when possible.
* Placed the Transform/Matrix for each bone in a sub-section, so it is visually similar to the Node3D inspector.
|
|
Fixes #36372 as Path2D/Path3D's `curve` property no longer uses a Curve
instance as default value, but instead it gets a (unique) default Curve
instance when created through the editor (CreateDialog).
ClassDB gets a sanity check to ensure that we don't do the same mistake
for other properties in the future, but instead use the dedicated
property usage hint.
Fixes #36372.
Fixes #36650.
Supersedes #36644 and #36656.
Co-authored-by: Thakee Nathees <thakeenathees@gmail.com>
Co-authored-by: simpuid <utkarsh.email@yahoo.com>
|
|
|
|
This also clarifies some parts in the DirectionalLight documentation.
|
|
Split `Geometry` singleton into `Geometry2D` and `Geometry3D`
|
|
|
|
Extra `_2d` suffixes are removed from 2D methods accoringly.
|
|
This should decrease the amount of visible shadow acne by default.
|
|
Co-authored-by: Marios Staikopoulos <marios@staik.net>
|