From 0476a41883ed1ec1db0e9d34ac9d4a1d4420f4d4 Mon Sep 17 00:00:00 2001 From: aap Date: Sat, 1 Jun 2019 01:58:19 +0200 Subject: added CCoronas --- src/Timecycle.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/Timecycle.h') diff --git a/src/Timecycle.h b/src/Timecycle.h index 1698e0c5..fa59dfd1 100644 --- a/src/Timecycle.h +++ b/src/Timecycle.h @@ -104,6 +104,13 @@ public: static int GetSkyBottomRed(void) { return m_nCurrentSkyBottomRed; } static int GetSkyBottomGreen(void) { return m_nCurrentSkyBottomGreen; } static int GetSkyBottomBlue(void) { return m_nCurrentSkyBottomBlue; } + static int GetSunCoreRed(void) { return m_nCurrentSunCoreRed; } + static int GetSunCoreGreen(void) { return m_nCurrentSunCoreGreen; } + static int GetSunCoreBlue(void) { return m_nCurrentSunCoreBlue; } + static int GetSunCoronaRed(void) { return m_nCurrentSunCoronaRed; } + static int GetSunCoronaGreen(void) { return m_nCurrentSunCoronaGreen; } + static int GetSunCoronaBlue(void) { return m_nCurrentSunCoronaBlue; } + static float GetSunSize(void) { return m_fCurrentSunSize; } static float GetFarClip(void) { return m_fCurrentFarClip; } static float GetFogStart(void) { return m_fCurrentFogStart; } @@ -119,4 +126,6 @@ public: static int GetFogRed(void) { return m_nCurrentFogColourRed; } static int GetFogGreen(void) { return m_nCurrentFogColourGreen; } static int GetFogBlue(void) { return m_nCurrentFogColourBlue; } + + static const CVector &GetSunPosition(void) { return m_VectorToSun[m_CurrentStoredValue]; } }; -- cgit v1.2.3