2023-01-29 18:58:59 +01:00
|
|
|
#pragma once
|
2023-10-26 18:37:29 +02:00
|
|
|
#include "Graphics/Texture.h"
|
2023-01-29 18:58:59 +01:00
|
|
|
|
2024-06-09 12:20:04 +02:00
|
|
|
namespace Seele {
|
|
|
|
|
namespace Component {
|
|
|
|
|
struct Skybox {
|
2023-01-29 18:58:59 +01:00
|
|
|
Gfx::PTextureCube day;
|
|
|
|
|
Gfx::PTextureCube night;
|
|
|
|
|
Vector fogColor;
|
|
|
|
|
float blendFactor;
|
|
|
|
|
};
|
|
|
|
|
} // namespace Component
|
|
|
|
|
} // namespace Seele
|