One more question about textdraw models.. - 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: One more question about textdraw models.. (
/showthread.php?tid=580417)
One more question about textdraw models.. -
Lajko1 - 05.07.2015
I have this:
pawn Код:
FuelCan = TextDrawCreate(566.666442, 398.496490, "");
TextDrawLetterSize(FuelCan, 0.000000, 0.000000);
TextDrawTextSize(FuelCan, 11.000001, 12.844438);
TextDrawAlignment(FuelCan, 1);
TextDrawColor(FuelCan, -1);
TextDrawSetShadow(FuelCan, 0);
TextDrawSetOutline(FuelCan, 0);
TextDrawBackgroundColor(FuelCan, -2139062017);
TextDrawFont(FuelCan, 5);
TextDrawSetProportional(FuelCan, 0);
TextDrawSetShadow(FuelCan, 0);
TextDrawSetPreviewModel(FuelCan, 1650);
TextDrawSetPreviewRot(FuelCan, 0.000000, 0.000000, 0.000000, 0.800000);
it has box, and box color in background how can I remove that so there wont be nothing in background?
Re: One more question about textdraw models.. -
Lynn - 05.07.2015
Maybe try setting its color to transparent? It'll still be there, but it'll be see through.
I don't think you remove it otherwise.