Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用动作脚本使对象在游戏板中移动?我正在使用数组和 x&y 轴。但它不起作用。
您需要指定数组包含的内容以及设置位置的方式。对于从 flash.display.DisplayObject 继承的对象,设置它们的 x 和 y 属性就足够了。
例如:
var num:MovieClip; //get it from somewhere - .... num.x = 20; num.y = 20; addChild(num);