SA-MP Forums Archive
Looking at a point - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Looking at a point (/showthread.php?tid=672562)



Looking at a point - Davi52 - 18.02.2020

Hey guys, sorry again for disturbing you!
How can I set my players camera looking at a point? After I freeze my character, i want it to look at a point. I tried SetPlayerCameraLookAt, but it sets my camera at the default server connecting place(on the sky). SetPlayerFacingAngle sets only the rotation of the character. How should I solve this? Thank you!


Re: Looking at a point - SiaReyes - 18.02.2020

https://sampwiki.blast.hk/wiki/SetPlayerCameraLookAt

Did you use SetPlayerCameraPos?


Re: Looking at a point - Davi52 - 18.02.2020

No I didnt. I want to point the camera to an object while its behind the player.


Re: Looking at a point - Radless - 18.02.2020

Code:
stock SetPlayerLookAt(playerid, Float:X, Float:Y)
{
	new Float:Px, Float:Py, Float: Pa;
	GetPlayerPos(playerid, Px, Py, Pa);
	Pa = floatabs(atan((Y-Py)/(X-Px)));
	if (X <= Px && Y >= Py) Pa	 = floatsub(180, Pa);
	else if (X < Px && Y < Py) Pa = floatadd(Pa, 180);
	else if (X >= Px && Y <= Py) Pa = floatsub(360.0, Pa);
	Pa = floatsub(Pa, 90.0);
	if (Pa >= 360.0) Pa = floatsub(Pa, 360.0);
	SetPlayerFacingAngle(playerid, Pa);
}