diff options
author | Rafał Mikrut <mikrutrafal54@gmail.com> | 2019-11-01 16:16:31 +0100 |
---|---|---|
committer | Rafał Mikrut <mikrutrafal54@gmail.com> | 2019-11-01 16:16:31 +0100 |
commit | 9ddb3265e1a6d2f9937ff6a27d04302d76c10431 (patch) | |
tree | bb38c5666f5d94af4fef6ca9e013ea77722ebdd5 /scene/resources | |
parent | 23a381d8827dbcb2d295fa393a5400f7a7e0a1c1 (diff) |
Fix some crashes, overflows and using variables without values
Diffstat (limited to 'scene/resources')
-rw-r--r-- | scene/resources/ray_shape.cpp | 10 | ||||
-rw-r--r-- | scene/resources/visual_shader_nodes.cpp | 1 |
2 files changed, 9 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"); } diff --git a/scene/resources/visual_shader_nodes.cpp b/scene/resources/visual_shader_nodes.cpp index a7df736c78..bd9dd7c23d 100644 --- a/scene/resources/visual_shader_nodes.cpp +++ b/scene/resources/visual_shader_nodes.cpp @@ -905,6 +905,7 @@ void VisualShaderNodeCubeMap::_bind_methods() { VisualShaderNodeCubeMap::VisualShaderNodeCubeMap() { texture_type = TYPE_DATA; + source = SOURCE_TEXTURE; } ////////////// Scalar Op |