3990d547dc
git-svn-id: http://svn.berlios.de/svnroot/repos/oolite-linux/trunk@1511 127b21dd-08f5-0310-b4b7-95ae10353056
26 lines
585 B
Plaintext
26 lines
585 B
Plaintext
/* Settings for shader system.
|
|
|
|
While it is possible to override this in the usual fashion, it would not
|
|
be a very good idea.
|
|
*/
|
|
|
|
{
|
|
// Macros prepended to shader source code for ship entities.
|
|
"ship-prefix-macros" =
|
|
{
|
|
"OO_USER_DEFINED_BINDINGS" = 1;
|
|
};
|
|
|
|
|
|
// Material definition used for DAT files with no TEXTURES section (which specifies material names and texture co-ordinates).
|
|
"no-textures-material" =
|
|
{
|
|
"diffuse_map" = "";
|
|
"diffuse" = (0, 0, 0.4);
|
|
"ambient" = (0, 0, 0.4);
|
|
"emission" = (0.9, 0.9, 0.9);
|
|
"specular" = (1.0, 0.8, 0.8);
|
|
"shininess" = 1;
|
|
};
|
|
}
|