mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 21:57:00 +02:00
linux and mac compile fixes.
Removed "friend MyAvatar" from Rig and JointState. This was only there for debugging, but I accidentally committed it.
This commit is contained in:
parent
69e463bbfd
commit
bb5d061d78
2 changed files with 0 additions and 5 deletions
|
@ -26,8 +26,6 @@ class AngularConstraint;
|
||||||
|
|
||||||
class JointState {
|
class JointState {
|
||||||
public:
|
public:
|
||||||
friend class MyAvatar;
|
|
||||||
|
|
||||||
JointState() {}
|
JointState() {}
|
||||||
JointState(const JointState& other) { copyState(other); }
|
JointState(const JointState& other) { copyState(other); }
|
||||||
JointState(const FBXJoint& joint);
|
JointState(const FBXJoint& joint);
|
||||||
|
|
|
@ -50,9 +50,6 @@ class Rig;
|
||||||
typedef std::shared_ptr<Rig> RigPointer;
|
typedef std::shared_ptr<Rig> RigPointer;
|
||||||
|
|
||||||
class Rig : public QObject, public std::enable_shared_from_this<Rig> {
|
class Rig : public QObject, public std::enable_shared_from_this<Rig> {
|
||||||
|
|
||||||
friend MyAvatar;
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
struct HeadParameters {
|
struct HeadParameters {
|
||||||
|
|
Loading…
Reference in a new issue