SKScene 中的 SKNodes 向错误的方向移动

SKNodes in SKScene moving in the wrong direction

我正在沿 x 轴执行一维移动。

物体在移动,但方向错误

场景移动代码

self.obstacles.position.x -= speed // obstacles = objects
self.map.position.x -= speed // map is the scene

原来我忘了将我的节点附加到 worldCamera 节点。