2023-06-11 21:03:54 -04:00
|
|
|
#ifndef REALTIMEVIEW_H
|
|
|
|
#define REALTIMEVIEW_H
|
|
|
|
|
2024-03-09 22:47:13 -05:00
|
|
|
extern float g_userMaxLodPower;
|
|
|
|
|
2023-10-24 19:38:27 -04:00
|
|
|
class RealtimeView {
|
2023-06-11 21:03:54 -04:00
|
|
|
public:
|
2024-03-02 09:43:19 -05:00
|
|
|
RealtimeView();
|
|
|
|
~RealtimeView();
|
|
|
|
|
2024-01-24 21:16:29 -05:00
|
|
|
static float GetPartsThreshold();
|
|
|
|
static float GetUserMaxLOD();
|
|
|
|
static void SetPartsThreshold(float);
|
2023-10-24 19:38:27 -04:00
|
|
|
static void UpdateMaxLOD();
|
2024-01-24 21:16:29 -05:00
|
|
|
static void SetUserMaxLOD(float);
|
2024-03-09 22:47:13 -05:00
|
|
|
|
2024-07-04 19:06:32 -04:00
|
|
|
static float GetUserMaxLodPower() { return g_userMaxLodPower; }
|
2023-06-11 21:03:54 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // REALTIMEVIEW_H
|