f5a94f1d61
* Implement update interval for environment probes * Minor changes to environment probe
26 lines
580 B
C++
26 lines
580 B
C++
#pragma once
|
|
class EditorComponent;
|
|
|
|
class EnvProbeWindow : public wi::gui::Window
|
|
{
|
|
public:
|
|
void Create(EditorComponent* editor);
|
|
|
|
EditorComponent* editor = nullptr;
|
|
wi::ecs::Entity entity;
|
|
void SetEntity(wi::ecs::Entity entity);
|
|
|
|
wi::gui::Label infoLabel;
|
|
wi::gui::CheckBox realTimeCheckBox;
|
|
wi::gui::CheckBox msaaCheckBox;
|
|
wi::gui::Slider realtimeFrameIntervalSlider;
|
|
wi::gui::Button refreshButton;
|
|
wi::gui::Button refreshAllButton;
|
|
wi::gui::Button importButton;
|
|
wi::gui::Button exportButton;
|
|
wi::gui::ComboBox resolutionCombo;
|
|
|
|
void ResizeLayout() override;
|
|
};
|
|
|