summaryrefslogtreecommitdiff
path: root/scene/2d
diff options
context:
space:
mode:
authorAndrii Doroshenko (Xrayez) <xrayez@gmail.com>2020-02-17 19:25:24 +0200
committerAndrii Doroshenko (Xrayez) <xrayez@gmail.com>2020-05-27 15:10:53 +0300
commit11f367fe02d4c17ae6689611a0962410876c8b86 (patch)
treefde5e084ac58de427a9b4c9bb8d751016ed171d3 /scene/2d
parent7b7b872d94eef7a89631c091f2740ccc219df2fc (diff)
Enable raycast nodes by default
Diffstat (limited to 'scene/2d')
-rw-r--r--scene/2d/ray_cast_2d.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/scene/2d/ray_cast_2d.cpp b/scene/2d/ray_cast_2d.cpp
index 5020940c5c..9fd24b5294 100644
--- a/scene/2d/ray_cast_2d.cpp
+++ b/scene/2d/ray_cast_2d.cpp
@@ -325,8 +325,7 @@ void RayCast2D::_bind_methods() {
}
RayCast2D::RayCast2D() {
- enabled = false;
-
+ enabled = true;
collided = false;
against_shape = 0;
collision_mask = 1;