]> icculus.org git repositories - divverent/nexuiz.git/blob - data/qcsrc/menu/control/fx/fx.qh
I did not want to do that. Sorry, disk space. Some admin better get rid of that mess.
[divverent/nexuiz.git] / data / qcsrc / menu / control / fx / fx.qh
1 // DP/Nex Menu
2 // control/fx/fx.qh
3
4 // Note: the time components are arranged this way because I want to be able to nest effects
5 // [Item_Fx_Mutator]
6 .vector time; // <totalTime, startTime, (elapsedTime / totalTime)> all values from 0 to 1, so the parent can vary in its length
7 .string target;
8 .entity _target;
9
10 bool() Item_Fx_Mutator_IsActive;
11 void() Item_Fx_Destroy;
12 void() Item_Fx_Init;
13 void() Item_UpdateTarget;
14
15 // Item_Fx_Effect [Item_Fx_Mutator]
16
17 void() Item_Fx_Effect_Update;
18 void() Item_Fx_Effect_Spawn;
19
20 // Item_Fx_Effect_Control
21