22 lines
377 B
C++
22 lines
377 B
C++
#ifndef Events_AutoAnimationBlend_h__
|
|
#define Events_AutoAnimationBlend_h__
|
|
|
|
#include "../Core/EventBroker.h"
|
|
#include "../Core/EntityWrapper.h"
|
|
|
|
namespace Events
|
|
{
|
|
|
|
struct AutoAnimationBlend : Event
|
|
{
|
|
EntityWrapper RootNode = EntityWrapper::Invalid;
|
|
std::string NodeName;
|
|
double Duration;
|
|
|
|
EntityWrapper AnimationEntity = EntityWrapper::Invalid;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|