#I'm kinda new to CV2 and I'm wondering what adding or subtracting positions do
1 messages · Page 1 of 1 (latest)
they will give another Position that can be used either as a Point in World space or a Direction from the first Position.
Its basic maths, (X1+/-X2) (Y1+/-Y2) (Z1+/-Z2) = (X3,Y3,Z3)
im trying to figure out how rclmans ai works
ah
ah So, When a Position is subtracted from another, It gives a Vector3 That is Pointing From a Position to Another, In your case, Its the (Player Body Position) - (Position of An object) which after you Normalize the Vector3 Gives you a Direction that the AI can Use to Set Its own position to
wow tysm