有没有一种方法可以在 GameQuery 中反转动画序列。目前,如果我们指定帧数,它将假定从左到右。我们可以从右到左开始动画吗?如何从多胺中选择一种?
问问题
165 次
1 回答
0
您可以通过 setAnimation 方法传递动画,只需传递反向动画本身即可。
请参阅此文档。
http://gamequeryjs.com/documentation/api/#setAnimation
设置偏移动画 var simpleHorizontalAnimation = new $.gameQuery.Animation({imageURL: "sh.png", type: $.gameQuery.ANIMATION_HORIZONTAL, numberOfFrame: 4, delta: 32, rate: 300});
然后你这样称呼它
.addSprite("simpleHorizontal",{动画: simpleHorizontalAnimation, posx: 34})
您可以进一步查看https://raw.github.com/onaluf/gameQuery/master/tests/human/Animation/type/test1.html
于 2012-06-07T05:17:09.053 回答