How do You prepare/apply TeamColorTexture and DisplacementTexture

So... how do I do that, how do I name the texture so the convertxsi will pick it up? I know how to make a displacement texture but I dont know how to make a teamcolortexture. Help anyone?
8,021 views 4 replies
Reply #1 Top
If you are having trouble with that, you can always enter the texture file names manually in the .mesh file after it has been converted.

Otherwise the full procedure for hooking up textures in XSI so that the converter will pick them up (along with the entire procedure of preparing a model for import) is explained in the modding documentation.
Reply #2 Top
Ok... thanks, this solves issue nr. 2. What about teamcolortexture? How do I prepare one? And in the procedure in the PDF files there is nothing about displacement and teamcolor textures, or am I blind?
Reply #3 Top
That part is in the original modding documentation, not the addendum.

To summarize, the data (or "teamcolor", though that is not exactly an accurate term) texture is constructed thus:

You use RGB values to control how the various shaders are applied to your textures.

-Red color value controls opacity of teamcolor areas; the more red a part of the data texture is, the more is that part of your texture tinted in the color of your team.

-Green controls the amount of luminance; the greater the green value, moreluminance is applied to that part of the texture. This is used for glowing parts like windows, engines etc.

-Blue controls the amount of reflection applied to that part of the texture; again, more blue means more reflection. Chrome-like effect is achieved by having a normally dark texture reflect near 100%, for example.

You can also mix and match RGB values to achieve a desired effect. For example, to have your engine ports glow in the color of your chosen team, you would want to increase both the green and the red amounts for that part of the data texture.

One more value to consider is the alpha channel. This controls the amount of bloom, usually associated with the luminous parts of the texture. The whiter a part of the alpha channel is, more bloom is applied.

Hope this helps!
+1 Loading…
Reply #4 Top
That helps, thanks!