05.11.2017, 18:28
- 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", ...);