Moved here.
git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@126 ed5b42cb-e716-0410-a449-f6a68f950b19
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user