As3 - 改变图像如向后倾斜
我想变换向后倾斜的图像/位图。如果不清楚我想说的是什么,请参考pic1(原始) pic2(转换后)
pic1
-----------
-----------
-----------
-----------
-----------
pic2
-----
-------
---------
-----------
-------------
I want to transform an image/bitmap as it is leaning backwards. If it is not clear what am trying to say please refer pic1 (original) pic2 (transformed)
pic1
-----------
-----------
-----------
-----------
-----------
pic2
-----
-------
---------
-----------
-------------
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
就像
pic2.rotationX = -30;
请记住,
pic2
将相对于注册点旋转。如果pic2
注册点位于 0,0 并且您想将其旋转到中心,您可以将其添加到容器精灵中,将pic2
坐标设置为以 0 为中心, 0 相对于容器,然后对容器进行变换,如下所示:Simply as
pic2.rotationX = -30;
Keep in mind that
pic2
will be rotated relative to registration point. Ifpic2
registration point is at 0,0 and you want to rotate it through center, you could add it to a container sprite, setpic2
coordinates to be centered at 0,0 relative to the container and then perform transformation on the container, like so: