Custom models suggestions - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP DL Edition (
https://sampforum.blast.hk/forumdisplay.php?fid=92)
+--- Forum: SA-MP 0.3.DL (
https://sampforum.blast.hk/forumdisplay.php?fid=90)
+--- Thread: Custom models suggestions (
/showthread.php?tid=644304)
Custom models suggestions -
joker2020pro - 05.11.2017
- Use compression of custom models. This will help to save traffic and reduce download time when transferring a large number of models.
- Add the use of TXD archives for TextDraw sprites:
Code:
AddSpriteArchive("mySprites.txd");
PHP Code:
new Text:textdraw1 = TextDrawCreate(10.000000, 25.000000, "mySprites:logo");
TextDrawFont(textdraw1, TEXT_DRAW_FONT_SPRITE_DRAW);
- Add the ability to use your own animation libraries:
Code:
AddAnimLib("myAnims.ifp");
PHP Code:
ApplyAnimation(playerid, "myAnims", "animName", ...);
Re: Custom models suggestions -
OstGot - 06.11.2017
Quote:
Originally Posted by joker2020pro
Use compression of custom models. This will help to save traffic and reduce download time when transferring a large number of models.
|
Yeah it would be wonderful because downloading fairly small amount of data at the moment takes a very loong time.
And also would be nice to see textures as textdraws which would give the possibility to make really cool interfaces.
Re: Custom models suggestions -
Dragony92 - 06.11.2017
http://forum.sa-mp.com/showthread.ph...69#post3950269
Re: Custom models suggestions -
Romz - 06.11.2017
Downloading sprites is very cool, it will add a lot of new ideas for creating beautiful interfaces, logos and other interesting things.