diff options
Diffstat (limited to 'scene/resources/capsule_shape_2d.cpp')
-rw-r--r-- | scene/resources/capsule_shape_2d.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scene/resources/capsule_shape_2d.cpp b/scene/resources/capsule_shape_2d.cpp index 9ad6cc8dcb..523d6d7455 100644 --- a/scene/resources/capsule_shape_2d.cpp +++ b/scene/resources/capsule_shape_2d.cpp @@ -89,11 +89,11 @@ Rect2 CapsuleShape2D::get_rect() const { void CapsuleShape2D::_bind_methods() { - ClassDB::bind_method(_MD("set_radius","radius"),&CapsuleShape2D::set_radius); - ClassDB::bind_method(_MD("get_radius"),&CapsuleShape2D::get_radius); + ClassDB::bind_method(D_METHOD("set_radius","radius"),&CapsuleShape2D::set_radius); + ClassDB::bind_method(D_METHOD("get_radius"),&CapsuleShape2D::get_radius); - ClassDB::bind_method(_MD("set_height","height"),&CapsuleShape2D::set_height); - ClassDB::bind_method(_MD("get_height"),&CapsuleShape2D::get_height); + ClassDB::bind_method(D_METHOD("set_height","height"),&CapsuleShape2D::set_height); + ClassDB::bind_method(D_METHOD("get_height"),&CapsuleShape2D::get_height); ADD_PROPERTY( PropertyInfo(Variant::REAL,"radius"),"set_radius","get_radius") ; |