Files
WickedEngine/Editor/EnvProbeWindow.h
T
Turánszki János 5a0c423ddd Updates:
- editor: quicksave, multiple scenes support, gui changes, additional shortcuts
- physics: improvements for handling multiple scenes, and removal of physics objects
- scripting: ability to override global scene and camera with custom scene and camera from cpp side
2022-07-14 15:21:28 +02:00

23 lines
464 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 generateButton;
wi::gui::Button refreshButton;
wi::gui::Button refreshAllButton;
};