Hi, I'm having a bit of trouble wrapping my head around this at the minute...
I'm trying to get an aiming function working for my AI in a 2D top-down game (I'm using orthello, if that matters), currently I have this code:
float planeDif = target.transform.position.z - this.transform.position.z;
Vector3 worldTargetPos = (target.position - transform.position);
worldTargetPos.z = planeDif;
worldTargetPos = Camera.main.ScreenToWorldPoint(worldTargetPos);
direction = -worldTargetPos.normalized;//I did this because otherwise the up/down aiming goes in the opposite direction (eg: char moves up, AI aims down)
lookRotation = Quaternion.LookRotation(direction);
transform.rotation = Quaternion.Slerp(transform.rotation, lookRotation, Time.deltaTime * rotationSpeed);
This seems to track my character properly if I move up and down, but moving left and right messes everything up, if I move left it aims way down and if I move right it aims way up. I've tried playing around with rotation values and such but I can't get it to work and now im sort of stuck in a rut...any help would be appreciated.
↧