Hello,
did you change something in the lighting material source code? My objects are all displayed white withour normal information.
thanks.
Regards,
Equi
I changed all my materials by removing “m_” from the paramaters in the Source tab and re-applied all the materials on the objects in my scene and that fixed it for me.
so:
[java]Material My Material : Common/MatDefs/Light/Lighting.j3md {
MaterialParameters {
m_Shininess : 13
m_DiffuseMap : Scenes/Stage1/Brick.png
}
}[/java]
was changed to :
[java]Material My Material : Common/MatDefs/Light/Lighting.j3md {
MaterialParameters {
Shininess : 13
DiffuseMap : Scenes/Stage1/Brick.png
}
}[/java]