mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-16 00:54:54 +00:00
seed the engine core with three baseline light animation dbs. no motion, pulse, and spin.
This commit is contained in:
parent
16a159992f
commit
0c0646a90c
1 changed files with 23 additions and 0 deletions
|
|
@ -146,3 +146,26 @@ datablock CameraData(Observer)
|
||||||
{
|
{
|
||||||
mode = "Observer";
|
mode = "Observer";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
datablock LightAnimData( NullLightAnim )
|
||||||
|
{
|
||||||
|
animEnabled = false;
|
||||||
|
};
|
||||||
|
|
||||||
|
datablock LightAnimData( PulseLightAnim )
|
||||||
|
{
|
||||||
|
brightnessA = 0;
|
||||||
|
brightnessZ = 1;
|
||||||
|
brightnessPeriod = 1;
|
||||||
|
brightnessKeys = "aza";
|
||||||
|
brightnessSmooth = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
datablock LightAnimData( SpinLightAnim )
|
||||||
|
{
|
||||||
|
rotA[2] = "0";
|
||||||
|
rotZ[2] = "360";
|
||||||
|
rotPeriod[2] = "1";
|
||||||
|
rotKeys[2] = "az";
|
||||||
|
rotSmooth[2] = true;
|
||||||
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue