|
@@ -178,64 +178,6 @@ PhysicsBody::PhysicsBody(PhysicsServer::BodyMode p_mode) :
|
|
|
collision_mask = 1;
|
|
|
}
|
|
|
|
|
|
-#ifndef DISABLE_DEPRECATED
|
|
|
-void StaticBody::set_friction(real_t p_friction) {
|
|
|
-
|
|
|
- if (p_friction == 1.0 && physics_material_override.is_null()) { // default value, don't create an override for that
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- WARN_DEPRECATED_MSG("The method set_friction has been deprecated and will be removed in the future, use physics material instead.");
|
|
|
-
|
|
|
- ERR_FAIL_COND_MSG(p_friction < 0 || p_friction > 1, "Friction must be between 0 and 1.");
|
|
|
-
|
|
|
- if (physics_material_override.is_null()) {
|
|
|
- physics_material_override.instance();
|
|
|
- set_physics_material_override(physics_material_override);
|
|
|
- }
|
|
|
- physics_material_override->set_friction(p_friction);
|
|
|
-}
|
|
|
-
|
|
|
-real_t StaticBody::get_friction() const {
|
|
|
-
|
|
|
- WARN_DEPRECATED_MSG("The method get_friction has been deprecated and will be removed in the future, use physics material instead.");
|
|
|
-
|
|
|
- if (physics_material_override.is_null()) {
|
|
|
- return 1;
|
|
|
- }
|
|
|
-
|
|
|
- return physics_material_override->get_friction();
|
|
|
-}
|
|
|
-
|
|
|
-void StaticBody::set_bounce(real_t p_bounce) {
|
|
|
-
|
|
|
- if (p_bounce == 0.0 && physics_material_override.is_null()) { // default value, don't create an override for that
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- WARN_DEPRECATED_MSG("The method set_bounce has been deprecated and will be removed in the future, use physics material instead.");
|
|
|
-
|
|
|
- ERR_FAIL_COND_MSG(p_bounce < 0 || p_bounce > 1, "Bounce must be between 0 and 1.");
|
|
|
-
|
|
|
- if (physics_material_override.is_null()) {
|
|
|
- physics_material_override.instance();
|
|
|
- set_physics_material_override(physics_material_override);
|
|
|
- }
|
|
|
- physics_material_override->set_bounce(p_bounce);
|
|
|
-}
|
|
|
-
|
|
|
-real_t StaticBody::get_bounce() const {
|
|
|
-
|
|
|
- WARN_DEPRECATED_MSG("The method get_bounce has been deprecated and will be removed in the future, use physics material instead.");
|
|
|
-
|
|
|
- if (physics_material_override.is_null()) {
|
|
|
- return 0;
|
|
|
- }
|
|
|
-
|
|
|
- return physics_material_override->get_bounce();
|
|
|
-}
|
|
|
-#endif
|
|
|
-
|
|
|
void StaticBody::set_physics_material_override(const Ref<PhysicsMaterial> &p_physics_material_override) {
|
|
|
if (physics_material_override.is_valid()) {
|
|
|
if (physics_material_override->is_connected(CoreStringNames::get_singleton()->changed, this, "_reload_physics_characteristics"))
|
|
@@ -282,14 +224,6 @@ void StaticBody::_bind_methods() {
|
|
|
ClassDB::bind_method(D_METHOD("get_constant_linear_velocity"), &StaticBody::get_constant_linear_velocity);
|
|
|
ClassDB::bind_method(D_METHOD("get_constant_angular_velocity"), &StaticBody::get_constant_angular_velocity);
|
|
|
|
|
|
-#ifndef DISABLE_DEPRECATED
|
|
|
- ClassDB::bind_method(D_METHOD("set_friction", "friction"), &StaticBody::set_friction);
|
|
|
- ClassDB::bind_method(D_METHOD("get_friction"), &StaticBody::get_friction);
|
|
|
-
|
|
|
- ClassDB::bind_method(D_METHOD("set_bounce", "bounce"), &StaticBody::set_bounce);
|
|
|
- ClassDB::bind_method(D_METHOD("get_bounce"), &StaticBody::get_bounce);
|
|
|
-#endif // DISABLE_DEPRECATED
|
|
|
-
|
|
|
ClassDB::bind_method(D_METHOD("set_physics_material_override", "physics_material_override"), &StaticBody::set_physics_material_override);
|
|
|
ClassDB::bind_method(D_METHOD("get_physics_material_override"), &StaticBody::get_physics_material_override);
|
|
|
|
|
@@ -299,10 +233,6 @@ void StaticBody::_bind_methods() {
|
|
|
ClassDB::bind_method(D_METHOD("add_collision_exception_with", "body"), &PhysicsBody::add_collision_exception_with);
|
|
|
ClassDB::bind_method(D_METHOD("remove_collision_exception_with", "body"), &PhysicsBody::remove_collision_exception_with);
|
|
|
|
|
|
-#ifndef DISABLE_DEPRECATED
|
|
|
- ADD_PROPERTY(PropertyInfo(Variant::REAL, "friction", PROPERTY_HINT_RANGE, "0,1,0.01", 0), "set_friction", "get_friction");
|
|
|
- ADD_PROPERTY(PropertyInfo(Variant::REAL, "bounce", PROPERTY_HINT_RANGE, "0,1,0.01", 0), "set_bounce", "get_bounce");
|
|
|
-#endif // DISABLE_DEPRECATED
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "physics_material_override", PROPERTY_HINT_RESOURCE_TYPE, "PhysicsMaterial"), "set_physics_material_override", "get_physics_material_override");
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::VECTOR3, "constant_linear_velocity"), "set_constant_linear_velocity", "get_constant_linear_velocity");
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::VECTOR3, "constant_angular_velocity"), "set_constant_angular_velocity", "get_constant_angular_velocity");
|
|
@@ -618,60 +548,6 @@ real_t RigidBody::get_weight() const {
|
|
|
return mass * real_t(GLOBAL_DEF("physics/3d/default_gravity", 9.8));
|
|
|
}
|
|
|
|
|
|
-#ifndef DISABLE_DEPRECATED
|
|
|
-void RigidBody::set_friction(real_t p_friction) {
|
|
|
-
|
|
|
- if (p_friction == 1.0 && physics_material_override.is_null()) { // default value, don't create an override for that
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- WARN_DEPRECATED_MSG("The method set_friction has been deprecated and will be removed in the future, use physics material instead.");
|
|
|
-
|
|
|
- ERR_FAIL_COND(p_friction < 0 || p_friction > 1);
|
|
|
-
|
|
|
- if (physics_material_override.is_null()) {
|
|
|
- physics_material_override.instance();
|
|
|
- set_physics_material_override(physics_material_override);
|
|
|
- }
|
|
|
- physics_material_override->set_friction(p_friction);
|
|
|
-}
|
|
|
-real_t RigidBody::get_friction() const {
|
|
|
-
|
|
|
- WARN_DEPRECATED_MSG("The method get_friction has been deprecated and will be removed in the future, use physics material instead.");
|
|
|
-
|
|
|
- if (physics_material_override.is_null()) {
|
|
|
- return 1;
|
|
|
- }
|
|
|
-
|
|
|
- return physics_material_override->get_friction();
|
|
|
-}
|
|
|
-
|
|
|
-void RigidBody::set_bounce(real_t p_bounce) {
|
|
|
-
|
|
|
- if (p_bounce == 0.0 && physics_material_override.is_null()) { // default value, don't create an override for that
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- WARN_DEPRECATED_MSG("The method set_bounce has been deprecated and will be removed in the future, use physics material instead.");
|
|
|
-
|
|
|
- ERR_FAIL_COND(p_bounce < 0 || p_bounce > 1);
|
|
|
-
|
|
|
- if (physics_material_override.is_null()) {
|
|
|
- physics_material_override.instance();
|
|
|
- set_physics_material_override(physics_material_override);
|
|
|
- }
|
|
|
- physics_material_override->set_bounce(p_bounce);
|
|
|
-}
|
|
|
-real_t RigidBody::get_bounce() const {
|
|
|
- WARN_DEPRECATED_MSG("The method get_bounce has been deprecated and will be removed in the future, use physics material instead.");
|
|
|
- if (physics_material_override.is_null()) {
|
|
|
- return 0;
|
|
|
- }
|
|
|
-
|
|
|
- return physics_material_override->get_bounce();
|
|
|
-}
|
|
|
-#endif // DISABLE_DEPRECATED
|
|
|
-
|
|
|
void RigidBody::set_physics_material_override(const Ref<PhysicsMaterial> &p_physics_material_override) {
|
|
|
if (physics_material_override.is_valid()) {
|
|
|
if (physics_material_override->is_connected(CoreStringNames::get_singleton()->changed, this, "_reload_physics_characteristics"))
|
|
@@ -935,14 +811,6 @@ void RigidBody::_bind_methods() {
|
|
|
ClassDB::bind_method(D_METHOD("set_weight", "weight"), &RigidBody::set_weight);
|
|
|
ClassDB::bind_method(D_METHOD("get_weight"), &RigidBody::get_weight);
|
|
|
|
|
|
-#ifndef DISABLE_DEPRECATED
|
|
|
- ClassDB::bind_method(D_METHOD("set_friction", "friction"), &RigidBody::set_friction);
|
|
|
- ClassDB::bind_method(D_METHOD("get_friction"), &RigidBody::get_friction);
|
|
|
-
|
|
|
- ClassDB::bind_method(D_METHOD("set_bounce", "bounce"), &RigidBody::set_bounce);
|
|
|
- ClassDB::bind_method(D_METHOD("get_bounce"), &RigidBody::get_bounce);
|
|
|
-#endif // DISABLE_DEPRECATED
|
|
|
-
|
|
|
ClassDB::bind_method(D_METHOD("set_physics_material_override", "physics_material_override"), &RigidBody::set_physics_material_override);
|
|
|
ClassDB::bind_method(D_METHOD("get_physics_material_override"), &RigidBody::get_physics_material_override);
|
|
|
|
|
@@ -1005,10 +873,6 @@ void RigidBody::_bind_methods() {
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::INT, "mode", PROPERTY_HINT_ENUM, "Rigid,Static,Character,Kinematic"), "set_mode", "get_mode");
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::REAL, "mass", PROPERTY_HINT_EXP_RANGE, "0.01,65535,0.01"), "set_mass", "get_mass");
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::REAL, "weight", PROPERTY_HINT_EXP_RANGE, "0.01,65535,0.01", PROPERTY_USAGE_EDITOR), "set_weight", "get_weight");
|
|
|
-#ifndef DISABLE_DEPRECATED
|
|
|
- ADD_PROPERTY(PropertyInfo(Variant::REAL, "friction", PROPERTY_HINT_RANGE, "0,1,0.01", 0), "set_friction", "get_friction");
|
|
|
- ADD_PROPERTY(PropertyInfo(Variant::REAL, "bounce", PROPERTY_HINT_RANGE, "0,1,0.01", 0), "set_bounce", "get_bounce");
|
|
|
-#endif // DISABLE_DEPRECATED
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "physics_material_override", PROPERTY_HINT_RESOURCE_TYPE, "PhysicsMaterial"), "set_physics_material_override", "get_physics_material_override");
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::REAL, "gravity_scale", PROPERTY_HINT_RANGE, "-128,128,0.01"), "set_gravity_scale", "get_gravity_scale");
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::BOOL, "custom_integrator"), "set_use_custom_integrator", "is_using_custom_integrator");
|