mirror of
https://github.com/lubosz/overte.git
synced 2025-04-06 15:22:42 +02:00
Simplify AvatarData::getSkeletonModelURLFromScript()
Co-authored-by: HifiExperiments <53453710+HifiExperiments@users.noreply.github.com>
This commit is contained in:
parent
5f0f03af0a
commit
379db8b17c
1 changed files with 4 additions and 8 deletions
|
@ -2107,15 +2107,11 @@ const QUrl& AvatarData::getSkeletonModelURL() const {
|
|||
}
|
||||
|
||||
QString AvatarData::getSkeletonModelURLFromScript() const {
|
||||
if (isMyAvatar()) {
|
||||
if (!isMyAvatarURLProtected()) {
|
||||
return _skeletonModelURL.toString();
|
||||
} else {
|
||||
return QString();
|
||||
}
|
||||
} else {
|
||||
return QString();
|
||||
if (isMyAvatar() && !isMyAvatarURLProtected()) {
|
||||
return _skeletonModelURL.toString();
|
||||
}
|
||||
|
||||
return QString();
|
||||
};
|
||||
|
||||
QByteArray AvatarData::packSkeletonData() const {
|
||||
|
|
Loading…
Reference in a new issue