diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-01-11 14:34:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-11 14:34:18 +0100 |
commit | d40d86b959eea69cea16199390243abdbaa24621 (patch) | |
tree | bec5aba288d12b7a172cea7ef17d40937604cd8d /scene/3d | |
parent | dcd2364dacc6c0af2e949ca34dd6e7f6e75e7d5c (diff) | |
parent | 0c46f73b5e5e89ba8fbe1f2294f203b5e9df2d0a (diff) |
Merge pull request #56667 from Ice-Cube69/fix_incorrect_property_types
Diffstat (limited to 'scene/3d')
-rw-r--r-- | scene/3d/ray_cast_3d.cpp | 4 | ||||
-rw-r--r-- | scene/3d/ray_cast_3d.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/scene/3d/ray_cast_3d.cpp b/scene/3d/ray_cast_3d.cpp index d2ba6809b3..3bb65d07a0 100644 --- a/scene/3d/ray_cast_3d.cpp +++ b/scene/3d/ray_cast_3d.cpp @@ -355,7 +355,7 @@ void RayCast3D::_bind_methods() { ADD_PROPERTY(PropertyInfo(Variant::INT, "debug_shape_thickness", PROPERTY_HINT_RANGE, "1,5"), "set_debug_shape_thickness", "get_debug_shape_thickness"); } -float RayCast3D::get_debug_shape_thickness() const { +int RayCast3D::get_debug_shape_thickness() const { return debug_shape_thickness; } @@ -384,7 +384,7 @@ void RayCast3D::_update_debug_shape_vertices() { } } -void RayCast3D::set_debug_shape_thickness(const float p_debug_shape_thickness) { +void RayCast3D::set_debug_shape_thickness(const int p_debug_shape_thickness) { debug_shape_thickness = p_debug_shape_thickness; update_gizmos(); diff --git a/scene/3d/ray_cast_3d.h b/scene/3d/ray_cast_3d.h index a580afe8db..a53e2c83fc 100644 --- a/scene/3d/ray_cast_3d.h +++ b/scene/3d/ray_cast_3d.h @@ -105,8 +105,8 @@ public: Ref<StandardMaterial3D> get_debug_material(); - float get_debug_shape_thickness() const; - void set_debug_shape_thickness(const float p_debug_thickness); + int get_debug_shape_thickness() const; + void set_debug_shape_thickness(const int p_debug_thickness); void force_raycast_update(); bool is_colliding() const; |