f31ba4c5b3
git-svn-id: http://svn.berlios.de/svnroot/repos/oolite-linux/trunk@957 127b21dd-08f5-0310-b4b7-95ae10353056
26 lines
797 B
Plaintext
26 lines
797 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.
|
|
*/
|
|
|
|
"ship-default-bindings" =
|
|
{
|
|
"engine_level" = { type = "binding"; value = "speedFactor"; };
|
|
"laser_heat_level" = { type = "binding"; value = "laserHeatLevel"; clamped = "YES"; };
|
|
"hull_heat_level" = { type = "binding"; value = "hullHeatLevel"; };
|
|
"entity_personality" = { type = "binding"; value = "entityPersonality"; };
|
|
"entity_personality_int" = { type = "binding"; value = "entityPersonalityInt"; };
|
|
"time" = { type = "binding"; value = "universalTime"; };
|
|
};
|
|
|
|
"ship-prefix-macros" =
|
|
{
|
|
"OO_ENGINE_LEVEL" = 1;
|
|
"OO_ENTITY_PERSONALITY" = 1;
|
|
"OO_ENTITY_PERSONALITY_INT" = 1;
|
|
"OO_ENTITY_LASER_HEAT_LEVEL" = 1;
|
|
"OO_HULL_HEAT_LEVEL" = 1;
|
|
"OO_TIME" = 1;
|
|
};
|