04.06.2013, 13:01
if you do it with an player object that is attached to the player itself (as i did for my firstperson cam) it will fuck up the coordinates of the camera somehow.
If your using it for cars or attached vehicle objects its working fine.
This solution as you see here works: //even though partly
but what is the spectate thingy good for ?
If your using it for cars or attached vehicle objects its working fine.
This solution as you see here works: //even though partly
Код:
new pObject[MAX_PLAYERS]; forward attachcamtohead(playerid); public attachcamtohead(playerid) { new Float:X, Float:Y, Float:Z; GetPlayerPos(playerid,X,Y,Z); pObject[playerid] = CreatePlayerObject(playerid, 19300, X, Y, Z+0.65, 0.0, 0, 0.0); SetPlayerAttachedObject(playerid, 3, pObject[playerid], 2, 0.101, -0.0, 0.0, 5.50, 84.60, 83.7, 1, 1, 1); AttachCameraToPlayerObject(playerid,pObject[playerid]); return 1; }