All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
BlueSphereViewStyle.h
1 #pragma once
2 
3 #include "BlueSphere.h"
4 #include "VectorMath.h"
5 
6 #include <string>
7 
8 namespace Eegeo
9 {
10  namespace BlueSphere
11  {
12  namespace BlueSphereViewStyle
13  {
14  const Eegeo::v4 HiddenColor = Eegeo::v4(0.3f, 0.3f, 0.3f, 0.5f);
15 
16  const Eegeo::v4 HighlightColorDefault = Eegeo::v4(1.f, 1.f, 1.f, 1.f);
17  const Eegeo::v4 HighlightColorNight = Eegeo::v4(1.f, 0.78f, 0.13f, 1.f);
18  const Eegeo::v4 HighlightColorSnow = Eegeo::v4(0.54f, 1.f, 1.f, 1.f);
19  const Eegeo::v4 HighlightColorFlattened = Eegeo::v4(0.07f, 0.34f, 0.69f, 1.f);
20 
21  const Eegeo::v4 MainColorFlattened = Eegeo::v4(0.04f, 0.68f, 1.f, 1.f);
22 
23  const Eegeo::v4 AccuracyRingInnerColor = Eegeo::v4(0.07f, 0.337f, 0.675f, 0.75f);
24  const Eegeo::v4 AccuracyRingColor = Eegeo::v4(0.07f, 0.337f, 0.675f, 0.8f);
25 
26  const std::string TimeNameNight = "Night";
27  const std::string WeatherNameSnow = "Snowy";
28  }
29  }
30 }