Added getter and setter for LegacyApplication's speed (#986)
This commit is contained in:
parent
13d00e0df3
commit
c6158bba68
@ -125,6 +125,23 @@ public abstract class SimpleApplication extends LegacyApplication {
|
||||
super.start();
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the applications speed.
|
||||
*
|
||||
* @return The speed of the application.
|
||||
*/
|
||||
public float getSpeed() {
|
||||
return speed;
|
||||
}
|
||||
|
||||
/**
|
||||
* Changes the application speed. 0.0f prevents the application from updating.
|
||||
* @param speed The speed to set.
|
||||
*/
|
||||
public void setSpeed(float speed) {
|
||||
this.speed = speed;
|
||||
}
|
||||
|
||||
/**
|
||||
* Retrieves flyCam
|
||||
* @return flyCam Camera object
|
||||
|
Loading…
x
Reference in New Issue
Block a user