mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 23:57:54 -05:00
74329d681b
* implement/match CalcLocalTransform * fix odd build error * address feedback move vec.h to thirdparty folder update vec.h move all realtime code to realtime folder move calclocaltransform out of legoutil and into realtime cast shift to MxS32 add additional unroll hack to CalcLocalTransform to prevent msvc entropy
14 lines
367 B
C++
14 lines
367 B
C++
#ifndef REALTIMEVIEW_H
|
|
#define REALTIMEVIEW_H
|
|
|
|
class RealtimeView
|
|
{
|
|
public:
|
|
__declspec(dllexport) static float GetPartsThreshold();
|
|
__declspec(dllexport) static float GetUserMaxLOD();
|
|
__declspec(dllexport) static void SetPartsThreshold(float);
|
|
static void UpdateMaxLOD();
|
|
__declspec(dllexport) static void SetUserMaxLOD(float);
|
|
};
|
|
|
|
#endif // REALTIMEVIEW_H
|