Files
WickedEngine/Editor/SpringWindow.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

25 lines
534 B
C++

#pragma once
#include "WickedEngine.h"
class EditorComponent;
class SpringWindow : public wi::gui::Window
{
public:
void Create(EditorComponent* editor);
EditorComponent* editor = nullptr;
wi::ecs::Entity entity;
void SetEntity(wi::ecs::Entity entity);
wi::gui::Button createButton;
wi::gui::CheckBox debugCheckBox;
wi::gui::CheckBox disabledCheckBox;
wi::gui::CheckBox stretchCheckBox;
wi::gui::CheckBox gravityCheckBox;
wi::gui::Slider stiffnessSlider;
wi::gui::Slider dampingSlider;
wi::gui::Slider windSlider;
};