diff options
author | aap <aap@papnet.eu> | 2019-06-01 01:58:19 +0200 |
---|---|---|
committer | aap <aap@papnet.eu> | 2019-06-01 01:58:19 +0200 |
commit | 0476a41883ed1ec1db0e9d34ac9d4a1d4420f4d4 (patch) | |
tree | cff2857719651063516878e83a9a472b7f900fed /src/Timecycle.h | |
parent | Merge pull request #4 from Fire-Head/master (diff) | |
download | re3-0476a41883ed1ec1db0e9d34ac9d4a1d4420f4d4.tar re3-0476a41883ed1ec1db0e9d34ac9d4a1d4420f4d4.tar.gz re3-0476a41883ed1ec1db0e9d34ac9d4a1d4420f4d4.tar.bz2 re3-0476a41883ed1ec1db0e9d34ac9d4a1d4420f4d4.tar.lz re3-0476a41883ed1ec1db0e9d34ac9d4a1d4420f4d4.tar.xz re3-0476a41883ed1ec1db0e9d34ac9d4a1d4420f4d4.tar.zst re3-0476a41883ed1ec1db0e9d34ac9d4a1d4420f4d4.zip |
Diffstat (limited to 'src/Timecycle.h')
-rw-r--r-- | src/Timecycle.h | 9 |
1 files changed, 9 insertions, 0 deletions
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]; } }; |