We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77c95ff commit b520903Copy full SHA for b520903
src/net/sf/openrocket/example/ThrustScaler.java
@@ -22,6 +22,12 @@ public String getName() {
22
return "Thrust scaling \u00D7" + getMultiplier();
23
}
24
25
+ @Override
26
+ public String getDescription() {
27
+ // This description is shown when the user clicks the info-button on the extension
28
+ return "This extension multiplies the thrust of motors by a user-defined multiplier.";
29
+ }
30
+
31
@Override
32
public void initialize(SimulationConditions conditions) throws SimulationException {
33
conditions.getSimulationListenerList().add(new ThrustScalerSimulationListener(getMultiplier()));
0 commit comments