This commit is contained in:
Jack Andersen 2015-10-15 14:36:03 -10:00
commit 99c4835b6f
1 changed files with 6 additions and 6 deletions

View File

@ -40,7 +40,6 @@ struct SCAN : BigYAML
Value<float> appearanceRange; Value<float> appearanceRange;
enum Position enum Position
{ {
Invalid = -1,
Pane0, Pane0,
Pane1, Pane1,
Pane2, Pane2,
@ -60,13 +59,14 @@ struct SCAN : BigYAML
Pane67, Pane67,
Pane456, Pane456,
Pane567, Pane567,
Pane4567 Pane4567,
Invalid = -1
}; };
Value<Position> position; Value<Position> position;
Value<atUint32> unknown1; Value<atUint32> width; // width of animation cell
Value<atUint32> unknown2; Value<atUint32> height; // height of animation cell
Value<float> scanAnimationSpeed; // 0.0 - 1.0 Value<float> interval; // 0.0 - 1.0
Value<float> unknown3; Value<float> fadeDuration; // 0.0 - 1.0
}; };
Texture textures[4]; Texture textures[4];