Cinematic : removed accessors with a typo

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@8175 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
This commit is contained in:
rem..om 2011-09-04 14:19:26 +00:00
parent 4cc1909beb
commit 90a7917e1a

View File

@ -203,15 +203,6 @@ public abstract class AbstractCinematicEvent implements CinematicEvent {
this.loopMode = loopMode; this.loopMode = loopMode;
} }
public void setInitalDuration(float initalDuration) {
this.initialDuration = initalDuration;
duration = initalDuration / speed;
}
public float getInitalDuration() {
return initialDuration;
}
public void write(JmeExporter ex) throws IOException { public void write(JmeExporter ex) throws IOException {
OutputCapsule oc = ex.getCapsule(this); OutputCapsule oc = ex.getCapsule(this);
oc.write(playState, "playState", PlayState.Stopped); oc.write(playState, "playState", PlayState.Stopped);