Hallo
Ich habe in einer TextDraw immer so einen nervenden Schatten hinter jedem Buchstaben.
Mit:
TextDrawBackgroundColor(CarKauf[playerid],COLOR_GREY);
kann ich ihn weniger störend machen, jedoch nicht deaktivieren. Gibt es dafür eine Funktion ?
Meine Textdraw sieht so aus:
CarKauf[playerid] = TextDrawCreate(200,310,string);
// TextDrawAlignment(CarKauf[playerid],1);
TextDrawUseBox(CarKauf[playerid],1);
// TextDrawBoxColor(CarKauf[playerid],0x000000FF);
// TextDrawSetOutline(CarKauf[playerid],1);
// TextDrawBackgroundColor(CarKauf[playerid],COLOR_GREY);
TextDrawFont(CarKauf[playerid], 1);
TextDrawSetProportional(CarKauf[playerid], 2);
TextDrawTextSize(CarKauf[playerid],450,410);
TextDrawShowForPlayer(playerid,CarKauf[playerid]);
Wenn ich Background deaktiviere, sind die schwarzen Schatten da, wenn Background aktiviert ist, sieht man den grauen (!) Schatten leicht durchschimmern
MfG dUDA