Drag and drop ImGui

This commit is contained in:
2024-04-04 10:50:40 +02:00
parent 6d2cb2531b
commit 4a3b540b6f
6 changed files with 128 additions and 16 deletions

View File

@@ -27,6 +27,17 @@ public:
XMVECTOR GetRotation();
XMVECTOR GetScale();
void UpdateWorldMatrix();
void UpdateSRMatrix();
void UpdateScaleMatrix();
void UpdateRotateMatrix();
void UpdateTranslateMatrix();
void Update();
std::string GetName();
void SetName(std::string name);
public :
bool m_demoSpinning = false;
@@ -37,4 +48,5 @@ private:
XMMATRIX m_srMatrix;
XMMATRIX m_worldMatrix;
std::string m_name;
};