Merge branch 'master' of https://github.com/whocares77/FlaxEngine into whocares77-master
This commit is contained in:
@@ -19,6 +19,23 @@ private:
|
||||
AssetReference<CubeTexture> _probe;
|
||||
|
||||
public:
|
||||
/// <summary>
|
||||
/// The reflections texture resolution.
|
||||
/// </summary>
|
||||
API_ENUM() enum class CubemapResolutions
|
||||
{
|
||||
UseGraphicsSettings = 0,
|
||||
_64 = 64,
|
||||
_128 = 128,
|
||||
_256 = 256,
|
||||
_512 = 512,
|
||||
_1024 = 1024,
|
||||
_2048 = 2048,
|
||||
_4096 = 4096,
|
||||
};
|
||||
API_FIELD(Attributes = "EditorOrder(0), DefaultValue(CubemapResolutions.UseGraphicsSettings), EditorDisplay(\"Probe\")")
|
||||
CubemapResolutions CubemapResolution = CubemapResolutions::UseGraphicsSettings;
|
||||
|
||||
/// <summary>
|
||||
/// The reflections brightness.
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user