选取数组的随机元素 Actionscript 3
我有一系列电影剪辑,我想将它们放在舞台上。所以它们必须是唯一的并且是随机选择的。
我怎样才能做到这一点?
谢谢您的宝贵时间
I have an array of movieclips and i want to put them on stage. so they have to be unique and randomly chosen.
how can I do that?
thank you for your time
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 Math.random() 获取随机数,这将返回 0 到 1 之间的数字。
因此,要获取数组的随机元素,请使用以下代码:
You can get a random number using
Math.random()
This will return a number between 0 and 1.So, for getting a random element of the array, use this:
如果您已经有一个数组,您应该能够定义随机排序,然后您可以根据需要将它们添加到舞台中。
If you have an
Array
already, you should be able to define a random sort, then you can add them to the stage as needed.