Moved here.

git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@126 ed5b42cb-e716-0410-a449-f6a68f950b19
This commit is contained in:
Ray Greenwell
2007-01-31 02:59:09 +00:00
parent 12f8cabd90
commit 76074998f4
8 changed files with 908 additions and 0 deletions
@@ -0,0 +1,31 @@
package com.threerings.flex {
import mx.effects.IEffectInstance;
import mx.effects.Effect;
public class FunctionEffect extends Effect
{
/** The function to call. */
public var func :Function;
/** The arguments to pass to the function. */
public var args :Array;
public function FunctionEffect (target :Object = null)
{
super(target);
instanceClass = FunctionEffectInstance;
}
// documentation inherited
override protected function initInstance (instance :IEffectInstance) :void
{
super.initInstance(instance);
var fe :FunctionEffectInstance = (instance as FunctionEffectInstance);
fe.func = func;
fe.args = args;
}
}
}