08.07.2014, 21:47
Regarding the fences...weren't there longer objects to use? idk, just asking.
I know that's the fence used by Rockstar for the airports in this game, but since limits are a problem, changing that would be alright.
Now regarding the textures:
SetObjectMaterial is used to change textures for object. You have to learn carefully all the parameters.
Choosing the right texture for the surface you need can be a little tricky, but once you get the hang of it, you can do wonders, trust me.
You have the default functions:
but if you use incognito's streamer, you are provided with it's own set of functions:
Here's a ******* video that helped me understand how to retexture objects. I hope it helps you as well.
I know that's the fence used by Rockstar for the airports in this game, but since limits are a problem, changing that would be alright.
Now regarding the textures:
SetObjectMaterial is used to change textures for object. You have to learn carefully all the parameters.
Choosing the right texture for the surface you need can be a little tricky, but once you get the hang of it, you can do wonders, trust me.
You have the default functions:
PHP код:
myobject = CreateObject(19371, X, Y, Z+0.5, 0.0, 0.0, 0.0, 300.0);
SetObjectMaterial(myobject, 0, 19341, "egg_texts", "easter_egg01", 0xFFFFFFFF);
PHP код:
myobject = CreateDynamicObject(...);
SetDynamicObjectMaterial(...);