Former-commit-id: a73d38ce2db2e780ad5b02cdae1c590606081650 [formerly 3d21c0fa44481bf91418a15012fa187a210fc9ad] [formerly b80263df8e91b85f3fd091724c54dec7f05bc535 [formerly 7dcaabaabf74fbdf840289bfc435fdd8e88969d7]] Former-commit-id: a669a933edd2364d9ee487c7d1bb38e28ad87a2d [formerly b8c5c09df10ce2f831635f460393216799d44056] Former-commit-id: 6bbd5af22e30cc7fd4b4478162ae89e69b3d274e
33 lines
601 B
C++
33 lines
601 B
C++
// Copyright (C) 2015 Jérôme Leclercq
|
|
// This file is part of the "Nazara Engine - Utility module"
|
|
// For conditions of distribution and use, see copyright notice in Config.hpp
|
|
|
|
#pragma once
|
|
|
|
#ifndef NAZARA_SEQUENCE_HPP
|
|
#define NAZARA_SEQUENCE_HPP
|
|
|
|
#include <Nazara/Core/String.hpp>
|
|
#include <Nazara/Math/Quaternion.hpp>
|
|
#include <Nazara/Math/Vector3.hpp>
|
|
|
|
namespace Nz
|
|
{
|
|
struct Sequence
|
|
{
|
|
String name;
|
|
UInt32 firstFrame;
|
|
UInt32 frameCount;
|
|
UInt32 frameRate;
|
|
};
|
|
|
|
struct SequenceJoint
|
|
{
|
|
Quaternionf rotation;
|
|
Vector3f position;
|
|
Vector3f scale;
|
|
};
|
|
}
|
|
|
|
#endif // NAZARA_SEQUENCE_HPP
|