This commit is contained in:
2025-07-15 02:16:03 +03:00
parent f6cdc57e7b
commit 771440f642
3 changed files with 119 additions and 1 deletions

View File

@ -373,5 +373,11 @@ namespace DroneSimulator
{
Drone.TimeLimit = checkBox_Lockstep_Limit.Checked;
}
private void numericUpDown_Propeller_ValueChanged(object sender, EventArgs e)
{
Drone.Propeller.Diameter = (float)numericUpDown_Propeller_Diameter.Value;
Drone.Propeller.MaxRotate = ((float)numericUpDown_Propeller_Rotation.Value) / 60;
}
}
}