All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
MaterialSelectionControllerConfig.h
1 // Copyright eeGeo Ltd (2012-2014), All Rights Reserved
2 
3 #pragma once
4 
5 #include "VectorMath.h"
6 
7 namespace Eegeo
8 {
9  namespace CollisionVisualization
10  {
12  {
13  v4 Color;
14  float FlashFrequency;
15  float FlashSaturateScale;
16  float FlashAlphaMin;
17  float FlashAlphaMax;
18 
20  : Color(v4::Zero())
21  , FlashFrequency(0.f)
22  , FlashSaturateScale(0.f)
23  , FlashAlphaMin(0.f)
24  , FlashAlphaMax(0.f)
25  {}
26  };
27  }
28 }