diff --git a/app/ecs/systems/follow-camera.js b/app/ecs/systems/follow-camera.js index 8638d72..daab66f 100644 --- a/app/ecs/systems/follow-camera.js +++ b/app/ecs/systems/follow-camera.js @@ -5,6 +5,12 @@ import {System} from '@/ecs/index.js'; export default class FollowCamera extends System { + static get priority() { + return { + after: 'IntegratePhysics', + }; + } + static queries() { return { default: ['Camera', 'Position'],