使一个精灵跟随另一个偏离中心,包括旋转

Make one sprite follow another off centre, including rotation

我正在做一个汽车漂移游戏,我想用笔在游戏中制作防滑标记。

我在汽车周围创建了一个半径为 25 的圆作为轮胎位置的参考,我需要让轮胎精灵根据汽车的旋转跟随汽车的后端。我正在尝试调整公式 x'= xcosθ−ysinθ, y'= xsinθ+ycosθ 但我不知道该怎么做。

我将初始 x 值设置为 0,将 y 值设置为 -25,但我知道这是错误的,因为当汽车移动和旋转时它不会保持不变。

这是我的项目: https://scratch.mit.edu/projects/535410396/

我从 Scratch 论坛的一位用户那里得到了解决方案。对于 x 值:

CarX-25*sin(CarRotation)

对于y值:

CarY-25*cos(CarRotation)