gpt4 book ai didi

actionscript-3 - 如何将图像发送到 AS3 中

转载 作者:行者123 更新时间:2023-12-01 10:03:44 24 4
gpt4 key购买 nike

我想把太阳和阳光送到舞台后面:

function CreateRays():Shape
{
var ray:Shape = new Shape();

ray.graphics.beginFill(0xFF9900,.5);
ray.graphics.lineStyle(1,0xFF9900,.5);
ray.graphics.lineTo(600,-20);
ray.graphics.lineTo(600,20);
ray.graphics.lineTo(0,0);
ray.graphics.endFill();

return ray;
}

var sun:Shape = new Shape();

sun.graphics.beginFill(0xFF9900,1);
sun.graphics.drawCircle(0,0,30);
sun.graphics.endFill();

addChild(sun);
setChildIndex(sun, 0);

我看到 setChildIndex(sun, 0); 应该这样做,但它不起作用。

最佳答案

从您对添加对象的内容和您提供的代码语法的困惑来看,我猜您已经在顶级对象上了。试试这个:

this.addChildAt(sun,0);

这会将 sun 作为第一项添加到父对象(first = back,last = front)。如果我关于您当前所在的对象是正确的,它也应该是舞台上的第一个项目。

确保在使用它们之前阅读此类内容:DisplayObjectContainer.addChildAt()

关于actionscript-3 - 如何将图像发送到 AS3 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13016433/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com