1

有没有一种方法可以在 GameQuery 中反转动画序列。目前,如果我们指定帧数,它将假定从左到右。我们可以从右到左开始动画吗?如何从多胺中选择一种?

4

1 回答 1

0

您可以通过 setAnimation 方法传递动画,只需传递反向动画本身即可。

请参阅此文档。

http://gamequeryjs.com/documentation/api/#setAnimation

设置偏移动画 var simpleHorizo​​ntalAnimation = new $.gameQuery.Animation({imageURL: "sh.png", type: $.gameQuery.ANIMATION_HORIZONTAL, numberOfFrame: 4, delta: 32, rate: 300});

然后你这样称呼它

.addSprite("simpleHorizo​​ntal",{动画: simpleHorizo​​ntalAnimation, posx: 34})

您可以进一步查看https://raw.github.com/onaluf/gameQuery/master/tests/human/Animation/type/test1.html

于 2012-06-07T05:17:09.053 回答