Textdraws & PlayerTextdraws
#9

BUMP

The same issue. Personal-textdraw drawn over global-textdraw

Quote:
Originally Posted by Pottus
Посмотреть сообщение
Textdraws are shown in the order they are created but it would seem you have over lapping textdraws you could write a script to test it in a few minutes.
I tried it. Personal-Textdraws are created in OnPlayerConnect before created global-textdraws
Код:
public OnPlayerConnect(playerid){
    ptd[playerid] = CreatePlayerTextDraw(playerid, 207.599960, 116.333419, "_");
    ...
    PlayerTextDrawShow(playerid, ptd[playerid];
//
    td = TextDrawCreate(200.000000, 110.000000, "LD_PLAN:tvcorn");
    ...
    TextDrawShowForPlayer(playerid, td);
    return true;
}
Result:

Код:
public OnPlayerConnect(playerid){
    td2 = TextDrawCreate(207.599960, 116.333419, "_");
    ...
    td = TextDrawCreate(200.000000, 110.000000, "LD_PLAN:tvcorn");
    ...
    TextDrawShowForPlayer(playerid, td);
    TextDrawShowForPlayer(playerid, td2);
    return true;
}
Result:
Reply


Messages In This Thread
Textdraws & PlayerTextdraws - by JaKe Elite - 19.12.2015, 09:40
Re: Textdraws & PlayerTextdraws - by NourNN - 19.12.2015, 09:44
Re: Textdraws & PlayerTextdraws - by JaKe Elite - 19.12.2015, 09:52
Re: Textdraws & PlayerTextdraws - by NourNN - 19.12.2015, 09:54
Re: Textdraws & PlayerTextdraws - by DRIFT_HUNTER - 19.12.2015, 09:58
Re: Textdraws & PlayerTextdraws - by JaKe Elite - 19.12.2015, 10:04
Re: Textdraws & PlayerTextdraws - by JaKe Elite - 20.12.2015, 03:44
Re: Textdraws & PlayerTextdraws - by Pottus - 20.12.2015, 03:54
Re: Textdraws & PlayerTextdraws - by frog163 - 12.01.2016, 12:01
Re: Textdraws & PlayerTextdraws - by SaltySandy - 12.01.2016, 12:58

Forum Jump:


Users browsing this thread: 3 Guest(s)