mirror of
https://github.com/overte-org/overte.git
synced 2025-08-19 06:46:44 +02:00
cleanups
This commit is contained in:
parent
487131dde1
commit
462918ffcf
2 changed files with 0 additions and 9 deletions
|
@ -183,8 +183,6 @@ public:
|
|||
glm::quat getCustomListenOrientation() { return _customListenOrientation; }
|
||||
void setCustomListenOrientation(glm::quat customListenOrientation) { _customListenOrientation = customListenOrientation; }
|
||||
|
||||
virtual RigPointer getRig() const { return _rig; }
|
||||
|
||||
public slots:
|
||||
void increaseSize();
|
||||
void decreaseSize();
|
||||
|
|
|
@ -50,13 +50,6 @@ void Rig::HeadParameters::dump() const {
|
|||
qCDebug(animation, " isTalking = %s", isTalking ? "true" : "false");
|
||||
}
|
||||
|
||||
// QString Rig::HeadParameters::dumpJoint(int jointIndex) const {
|
||||
// QString out = "";
|
||||
// out += ...;
|
||||
// JointState& state = _jointStates[i];
|
||||
// int parentIndex = state.getParentIndex();
|
||||
// }
|
||||
|
||||
void insertSorted(QList<AnimationHandlePointer>& handles, const AnimationHandlePointer& handle) {
|
||||
for (QList<AnimationHandlePointer>::iterator it = handles.begin(); it != handles.end(); it++) {
|
||||
if (handle->getPriority() > (*it)->getPriority()) {
|
||||
|
|
Loading…
Reference in a new issue