Problem Custom textures looking dark

george7378

DON'T PANIC
Addon Developer
Donator
Joined
Jun 26, 2009
Messages
1,045
Reaction score
0
Points
36
I'm making some custom models, and the textures are looking unnaturally dark. I created the models in Gmax and applied the textures using the material editor. Does anyone know how I can make them look more natural?
 

Attachments

  • darktextures.jpg
    darktextures.jpg
    138.6 KB · Views: 26
I'm making some custom models, and the textures are looking unnaturally dark. I created the models in Gmax and applied the textures using the material editor. Does anyone know how I can make them look more natural?

Open mesh with notepad scroll to bottom and replace material setting something like this and save.

MATERIAL roof (or somethin else depend did you name it)
0.878431 0.878431 0.878431 1
0.878431 0.878431 0.878431 1
1 1 1 1 0 0
0.878431 0.878431 0.878431 1


Try this setting,copy and replace one in your mesh.
 
0.878431 0.878431 0.878431 1
0.878431 0.878431 0.878431 1
1 1 1 1 0 0
0.878431 0.878431 0.878431 1


Try this setting,copy and replace one in your mesh.
Why not:
Code:
1 1 1 1
1 1 1 1
1 1 1 1 0 0
0 0 0 0
?

For more details what these numbers mean, search for material definition either on forums or in Orbiter documentation.
 
Just to expand a little on liber and Orb's posts, from this doc:

The four entries for each material are as follows:
• The first line specifies the diffuse material colour. This is the colour that is diffusely (in all directions) reflected from an illuminated surface.
• The second line specifies the ambient material colour. This is the colour of an unlit surface.
• The third line specifies the specular colour. This is the colour of light reflected by a polished surface into a narrow beam. The power entry specifies the width of the cone into which specular light is reflected. Higher values mean a narrower cone, i.e. sharper reflections. Typical values are around 10. If omitted, the default value for power is 0.
• The fourth line specifies the emissive colour. This is the colour of light emitted by a glowing surface.

You will have to fiddle about with the numbers to get the effects you want, remember to test them in day and night.
 
Ah, I knew there would be a little setting I needed to change somewhere! Thanks for the help, I'm messing around with them now to get the best fit.
 
Why not:
Code:
1 1 1 1
1 1 1 1
1 1 1 1 0 0
0 0 0 0
?

For more details what these numbers mean, search for material definition either on forums or in Orbiter documentation.

I just open one my building and copy setting that could go too... :)
 
Back
Top