eff37576b5
* improving component window layouts * sound window update * transform window update * editor top gui animation; delete callback for entity tree * layer window update * other layout changes * grid helper ini * don't allow negative or zero local scale * version bump * camera fps config check if exists
24 lines
463 B
C++
24 lines
463 B
C++
#pragma once
|
|
#include "WickedEngine.h"
|
|
|
|
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::Button refreshButton;
|
|
wi::gui::Button refreshAllButton;
|
|
|
|
void ResizeLayout() override;
|
|
};
|
|
|