Skylicht Engine
Loading...
Searching...
No Matches
CTweenMatrix4.h
1#pragma once
2
3#include "CTween.h"
4
5namespace Skylicht
6{
7 class SKYLICHT_API CTweenMatrix4 : public CTween
8 {
9 protected:
10 core::matrix4 m_value;
11
12 public:
13 CTweenMatrix4(const core::matrix4& begin, const core::matrix4& end, float duration);
14
15 virtual ~CTweenMatrix4();
16
17 virtual void updateValue();
18
19 void setBegin(const core::matrix4& begin);
20
21 void setEnd(const core::matrix4& end);
22
23 const core::matrix4& getValue()
24 {
25 return m_value;
26 }
27 };
28}
Everything in the Skylicht Engine. You can start by looking at the topics.
Definition AudioDebugLog.h:29