Merge pull request #11002 from NathanWarden/vehicle_wheel_warning
Added a warning message when a VehicleWheel is not a child of a VehicleBody.
This commit is contained in:
commit
50eb62ea6e
2 changed files with 10 additions and 0 deletions
|
@ -102,6 +102,14 @@ void VehicleWheel::_notification(int p_what) {
|
|||
}
|
||||
}
|
||||
|
||||
String VehicleWheel::get_configuration_warning() const {
|
||||
if (!Object::cast_to<VehicleBody>(get_parent())) {
|
||||
return TTR("VehicleWheel serves to provide a wheel system to a VehicleBody. Please use it as a child of a VehicleBody.");
|
||||
}
|
||||
|
||||
return String();
|
||||
}
|
||||
|
||||
void VehicleWheel::_update(PhysicsDirectBodyState *s) {
|
||||
|
||||
if (m_raycastInfo.m_isInContact)
|
||||
|
|
|
@ -131,6 +131,8 @@ public:
|
|||
void set_roll_influence(float p_value);
|
||||
float get_roll_influence() const;
|
||||
|
||||
String get_configuration_warning() const;
|
||||
|
||||
VehicleWheel();
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue