From 90a7917e1ac84e4cf0155730ce2f7e6413dd06fd Mon Sep 17 00:00:00 2001 From: "rem..om" Date: Sun, 4 Sep 2011 14:19:26 +0000 Subject: [PATCH] Cinematic : removed accessors with a typo git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@8175 75d07b2b-3a1a-0410-a2c5-0572b91ccdca --- .../jme3/cinematic/events/AbstractCinematicEvent.java | 9 --------- 1 file changed, 9 deletions(-) diff --git a/engine/src/core/com/jme3/cinematic/events/AbstractCinematicEvent.java b/engine/src/core/com/jme3/cinematic/events/AbstractCinematicEvent.java index 059cc3993..f6cf49e5c 100644 --- a/engine/src/core/com/jme3/cinematic/events/AbstractCinematicEvent.java +++ b/engine/src/core/com/jme3/cinematic/events/AbstractCinematicEvent.java @@ -203,15 +203,6 @@ public abstract class AbstractCinematicEvent implements CinematicEvent { 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 { OutputCapsule oc = ex.getCapsule(this); oc.write(playState, "playState", PlayState.Stopped);