Files
WickedEngine/Editor/HairParticleWindow.h
T
turanszkij ecea9f086d simplified transform component;
resurrected hair particle + added editor window
2018-09-12 18:34:54 +01:00

38 lines
535 B
C++

#pragma once
class wiGUI;
class wiWindow;
class wiLabel;
class wiCheckBox;
class wiSlider;
class wiComboBox;
class wiColorPicker;
class wiButton;
class MaterialWindow;
class HairParticleWindow
{
public:
HairParticleWindow(wiGUI* gui);
~HairParticleWindow();
wiECS::Entity entity;
void SetEntity(wiECS::Entity entity);
void UpdateData();
wiSceneSystem::wiHairParticle* GetHair();
wiGUI* GUI;
wiWindow* hairWindow;
wiButton* addButton;
wiComboBox* meshComboBox;
wiSlider* countSlider;
wiButton* generateButton;
};