mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-10 06:12:53 +02:00
explicit delete default ctor, make _nestableType private
This commit is contained in:
parent
21adbf49c0
commit
55b1a6762c
1 changed files with 2 additions and 1 deletions
|
@ -212,7 +212,6 @@ public:
|
|||
virtual void parentDeleted() { } // called on children of a deleted parent
|
||||
|
||||
protected:
|
||||
const NestableType _nestableType; // EntityItem or an AvatarData
|
||||
QUuid _id;
|
||||
mutable SpatiallyNestableWeakPointer _parent;
|
||||
|
||||
|
@ -232,6 +231,8 @@ protected:
|
|||
quint64 _rotationChanged { 0 };
|
||||
|
||||
private:
|
||||
SpatiallyNestable() = delete;
|
||||
const NestableType _nestableType; // EntityItem or an AvatarData
|
||||
QUuid _parentID; // what is this thing's transform relative to?
|
||||
quint16 _parentJointIndex { INVALID_JOINT_INDEX }; // which joint of the parent is this relative to?
|
||||
|
||||
|
|
Loading…
Reference in a new issue