Files
WickedEngine/Editor/MeshWindow.h
T
2021-06-12 16:49:56 +02:00

41 lines
908 B
C++

#pragma once
#include "WickedEngine.h"
class EditorComponent;
class MeshWindow : public wiWindow
{
public:
void Create(EditorComponent* editor);
wiECS::Entity entity;
void SetEntity(wiECS::Entity entity);
wiLabel meshInfoLabel;
wiCheckBox doubleSidedCheckBox;
wiCheckBox softbodyCheckBox;
wiSlider massSlider;
wiSlider frictionSlider;
wiSlider restitutionSlider;
wiButton impostorCreateButton;
wiSlider impostorDistanceSlider;
wiSlider tessellationFactorSlider;
wiButton flipCullingButton;
wiButton flipNormalsButton;
wiButton computeNormalsSmoothButton;
wiButton computeNormalsHardButton;
wiButton recenterButton;
wiButton recenterToBottomButton;
wiButton optimizeButton;
wiCheckBox terrainCheckBox;
wiComboBox terrainMat1Combo;
wiComboBox terrainMat2Combo;
wiComboBox terrainMat3Combo;
wiButton terrainGenButton;
wiComboBox morphTargetCombo;
wiSlider morphTargetSlider;
};