LeviLamina
Loading...
Searching...
No Matches
FogVolumetricDensitySetting.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/utility/Keyframes.h"
7
9public:
10 // member variables
11 // NOLINTBEGIN
12 ::ll::TypedStorage<8, 32, ::Core::Keyframes<float, float>> mMaxDensity;
13 ::ll::TypedStorage<8, 32, ::Core::Keyframes<float, float>> mMaxDensityHeight;
14 ::ll::TypedStorage<8, 32, ::Core::Keyframes<float, float>> mZeroDensityHeight;
15 ::ll::TypedStorage<1, 1, bool> mUniform;
16 // NOLINTEND
17
18public:
19 // prevent constructor by default
20 FogVolumetricDensitySetting();
21
22public:
23 // member functions
24 // NOLINTBEGIN
25 MCAPI FogVolumetricDensitySetting(
26 ::Core::Keyframes<float, float> const& maxDensity,
27 ::Core::Keyframes<float, float> const& maxDensityHeight,
28 ::Core::Keyframes<float, float> const& zeroDensityHeight
29 );
30
31 MCAPI ~FogVolumetricDensitySetting();
32 // NOLINTEND
33
34public:
35 // static variables
36 // NOLINTBEGIN
37 MCAPI static ::FogVolumetricDensitySetting const& ZERO_SETTING();
38 // NOLINTEND
39
40public:
41 // constructor thunks
42 // NOLINTBEGIN
43 MCAPI void* $ctor(
44 ::Core::Keyframes<float, float> const& maxDensity,
45 ::Core::Keyframes<float, float> const& maxDensityHeight,
46 ::Core::Keyframes<float, float> const& zeroDensityHeight
47 );
48 // NOLINTEND
49
50public:
51 // destructor thunk
52 // NOLINTBEGIN
53 MCAPI void $dtor();
54 // NOLINTEND
55};
Definition FogVolumetricDensitySetting.h:5