You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
o3de/Gems/Maestro/Code/Source/Cinematics/CommentTrack.h

43 lines
1.3 KiB
C++

/*
* Copyright (c) Contributors to the Open 3D Engine Project.
* For complete copyright and license terms please see the LICENSE at the root of this distribution.
*
* SPDX-License-Identifier: Apache-2.0 OR MIT
*
*/
#ifndef CRYINCLUDE_CRYMOVIE_COMMENTTRACK_H
#define CRYINCLUDE_CRYMOVIE_COMMENTTRACK_H
#pragma once
#include "IMovieSystem.h"
#include "AnimTrack.h"
class CCommentTrack
: public TAnimTrack<ICommentKey>
{
public:
AZ_CLASS_ALLOCATOR(CCommentTrack, AZ::SystemAllocator, 0);
AZ_RTTI(CCommentTrack, "{A28FE42D-5B42-4E47-9813-4290D275D5A9}", IAnimTrack);
//-----------------------------------------------------------------------------
//!
CCommentTrack();
//-----------------------------------------------------------------------------
//! IAnimTrack Method Overriding.
//-----------------------------------------------------------------------------
virtual void GetKeyInfo(int key, const char*& description, float& duration);
virtual void SerializeKey(ICommentKey& key, XmlNodeRef& keyNode, bool bLoading);
//-----------------------------------------------------------------------------
//!
void ValidateKeyOrder() { CheckValid(); }
static void Reflect(AZ::ReflectContext* context);
};
#endif // CRYINCLUDE_CRYMOVIE_COMMENTTRACK_H