mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
29 lines
711 B
C++
29 lines
711 B
C++
//
|
|
// AvatarRig.h
|
|
// libraries/animation/src/
|
|
//
|
|
// Created by SethAlves on 2015-7-22.
|
|
// 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_AvatarRig_h
|
|
#define hifi_AvatarRig_h
|
|
|
|
#include <QObject>
|
|
|
|
#include "Rig.h"
|
|
|
|
class AvatarRig : public Rig {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
~AvatarRig() {}
|
|
virtual void updateJointState(int index, glm::mat4 rootTransform);
|
|
virtual void setHandPosition(int jointIndex, const glm::vec3& position, const glm::quat& rotation,
|
|
float scale, float priority);
|
|
};
|
|
|
|
#endif // hifi_AvatarRig_h
|