day-night loop, dynamic skybox, clock on debug panel

This commit is contained in:
MihailRis
2023-11-28 11:01:22 +03:00
parent 4a9a4ddd14
commit c08c31b0ad
24 changed files with 599 additions and 48 deletions
+9
View File
@@ -0,0 +1,9 @@
#ifndef UTIL_TIMEUTIL_H_
#define UTIL_TIMEUTIL_H_
namespace timeutil {
float time_value(float hour, float minute, float second);
void from_value(float value, int& hour, int& minute, int& second);
}
#endif // UTIL_TIMEUTIL_H_