From 4c43512f3b7cf5595cd8d3cfafd555559dadfa5f Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Wed, 27 Mar 2002 21:51:33 +0000 Subject: [PATCH] Define frames per second in floating point. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1163 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/java/com/threerings/cast/ActionSequence.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/java/com/threerings/cast/ActionSequence.java b/src/java/com/threerings/cast/ActionSequence.java index 9faee72f8..82ee59d2d 100644 --- a/src/java/com/threerings/cast/ActionSequence.java +++ b/src/java/com/threerings/cast/ActionSequence.java @@ -1,5 +1,5 @@ // -// $Id: ActionSequence.java,v 1.2 2001/11/27 08:09:34 mdb Exp $ +// $Id: ActionSequence.java,v 1.3 2002/03/27 21:51:33 mdb Exp $ package com.threerings.cast; @@ -19,7 +19,7 @@ public class ActionSequence implements Serializable public String name; /** The number of frames per second to show when animating. */ - public int framesPerSecond; + public float framesPerSecond; /** The position of the character's base for this sequence. */ public Point origin = new Point();