diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-11-01 22:12:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-01 22:12:47 +0100 |
commit | af4fd9de9c02052f3dc7330cd7cb6aa3f2107191 (patch) | |
tree | eeac97cd39ee467902921a75fbdf3e5238716f4a /scene/resources/ray_shape.cpp | |
parent | 86fdb51e04a10362b502df95dd52286701aec521 (diff) | |
parent | 9ddb3265e1a6d2f9937ff6a27d04302d76c10431 (diff) |
Merge pull request #33238 from qarmin/other_fixes
Fix some crashes, overflows and using variables without values
Diffstat (limited to 'scene/resources/ray_shape.cpp')
-rw-r--r-- | scene/resources/ray_shape.cpp | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/scene/resources/ray_shape.cpp b/scene/resources/ray_shape.cpp index 5a696aee23..f185263a36 100644 --- a/scene/resources/ray_shape.cpp +++ b/scene/resources/ray_shape.cpp @@ -90,6 +90,12 @@ void RayShape::_bind_methods() { RayShape::RayShape() : Shape(PhysicsServer::get_singleton()->shape_create(PhysicsServer::SHAPE_RAY)) { - set_length(1.0); - set_slips_on_slope(false); + length = 1.0; + slips_on_slope = false; + + /* Code copied from setters to prevent the use of uninitialized variables */ + _update_shape(); + notify_change_to_owners(); + _change_notify("length"); + _change_notify("slips_on_slope"); } |