Files
WickedEngine/Editor/MeshWindow.h
T
2018-01-09 16:00:27 +00:00

35 lines
506 B
C++

#pragma once
struct Material;
class wiGUI;
class wiWindow;
class wiLabel;
class wiCheckBox;
class wiSlider;
class wiButton;
struct Mesh;
class MeshWindow
{
public:
MeshWindow(wiGUI* gui);
~MeshWindow();
wiGUI* GUI;
void SetMesh(Mesh* mesh);
Mesh* mesh;
wiWindow* meshWindow;
wiLabel* meshInfoLabel;
wiCheckBox* doubleSidedCheckBox;
wiSlider* massSlider;
wiSlider* frictionSlider;
wiButton* impostorCreateButton;
wiSlider* impostorDistanceSlider;
wiSlider* tessellationFactorSlider;
};