我在 Actionscript 3 (Flash CS5) 中创建了一个程序,当您单击时,它会在舞台上生成一个 Egg(现在是一个圆圈),然后使用(编码)补间将 Egg 发送到您单击的位置。此外,它会对其进行缩放以尝试产生 3D 错觉。
我将 TweenEvent.MOTION_FINISH 添加到 Egg 的其中一个补间中,以检查运动何时完成。当它发生时,我创建一个新对象(称为 Splat),其坐标与原始鼠标单击的坐标相同。
问题 1: Splat 对象未添加到正确的位置,如下图所示。我检查了坐标,它们在 Egg 类和 Splash 类中都匹配。我还确保两个对象的注册点都在它们的中间。最后,我检查了是否是导致问题的比例,但即使我删除了补间比例,我也会遇到同样的问题。
(编辑:鸡蛋被放置在正确的位置。鼠标点击的原始坐标应该是它们应该是的。似乎只有星星物体被移位了。)
http://i45.tinypic.com/24bj1h3.png
问题 2: Splat 对象按与 Egg 对象相同的比例缩小。为什么是这样?我没有(打算)使 Splash 依赖于 Egg。
这是相关的代码:
package
{
import flash.display.MovieClip;
import flash.utils.Timer;
import flash.events.MouseEvent;
public class eggMain extends MovieClip
{
import flash.events.Event;
public function eggMain()
{
stage.addEventListener(MouseEvent.CLICK, spawn);
}
function spawn(event)
{
for(var i:int = 0; i<1; i++)
{
trace("mX in main class = " + mouseX);
trace("mY in main class = " + mouseY);
var e:Egg = new Egg(mouseX, mouseY);
addChild(e);
}
}
}
}
package
{
import flash.display.MovieClip;
import fl.transitions.Tween;
import fl.transitions.easing.*;
import fl.transitions.TweenEvent;
public class Egg extends MovieClip
{
var stageWidth:int = 550;
var stageHeight:int = 400;
var buffer:int = 100;
var mX = 0;
var mY = 0;
public function Egg(moX:int, moY:int) //mouseX, mouseY
{
mX = moX;
mY = moY;
trace("mX in Egg constructor: " + mX);
trace("mY in Egg constructor: " + mY);
spawnAtFixedPoint();
animate();
}
function spawnAtFixedPoint()
{
this.x = stageWidth + buffer;
this.y = stageHeight - buffer;
}
//Moves the egg in from the spawn point using tweens. Scales down on the way to give 3D illusion.
function animate()
{
var xMovement:Tween;
var yMovement:Tween;
var xScale:Tween;
var yScale:Tween;
trace("mX in animate() = " + mX);
trace("mY in animate() = " + mY);
xMovement = new Tween(this, "x", Regular.easeOut, this.x, mX, 1, true); //obj, property, ease function, start, time, in seconds (true)
yMovement = new Tween(this, "y", Regular.easeOut, this.y, mY, 1, true);
xScale = new Tween(this, "scaleX", Regular.easeIn, 1, 0.1, 1, true);
yScale = new Tween(this, "scaleY", Regular.easeIn, 1, 0.1, 1, true);
//Checks when the object has finished animating (which mean the egg has landed)
xMovement.addEventListener(TweenEvent.MOTION_FINISH, splat);
}
//Spawns a splat (currently a star) at the same coordinates as the egg
function splat(event)
{
trace("mX in splat() = " + mX);
trace("mY in splat() = " + mY);
var s = new Splat(mX, mY);
addChild(s);
}
}
}
更新:我创建了一个自定义 SplatEvent 并让我的主类监听它。偶数在 MOTION_FINISHED 处理程序中调度。有用!
虽然,我必须通过在主类中使用公共静态变量来传回 Egg 着陆的原始坐标来使其工作。就像在主类中一样:
public static var splatX:int;
public static var splatY:int;
在 Egg 类中是这样的:
eggMain.splatX = mX;
eggMain.splatY = mY;
我可以忍受它,但我不想使用全局变量。对此提出建议,尽管主要问题已得到解答。谢谢。