mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 02:37:12 +02:00
* AnimNode pure virtual base class for all animation nodes. * AnimClip playback of a single FBX animation.
19 lines
409 B
C++
19 lines
409 B
C++
//
|
|
// AnimInterface.h
|
|
//
|
|
// Copyright 2015 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
#ifndef hifi_AnimNode_h
|
|
#define hifi_AnimNode_h
|
|
|
|
class AnimNode {
|
|
public:
|
|
virtual float getEnd() const = 0;
|
|
virtual const AnimPose& evaluate(float t) = 0;
|
|
};
|
|
|
|
#endif // hifi_AnimNode_h
|