mirror of
https://github.com/overte-org/overte.git
synced 2025-04-08 07:12:40 +02:00
use rotation degrees instead of quaternions for comparison
re-query entity properties after editing it to get actual changes
This commit is contained in:
parent
4716be01f6
commit
7feb9910c9
2 changed files with 22 additions and 3 deletions
|
@ -163,9 +163,8 @@ ListModel {
|
|||
{'propertyName' : 'marketplaceID'},
|
||||
{'propertyName' : 'itemName'},
|
||||
{'propertyName' : 'script'},
|
||||
{'propertyName' : 'rotation', 'comparer' : compareNumericObjects},
|
||||
{'propertyName' : 'localPosition', 'comparer' : compareNumericObjects},
|
||||
{'propertyName' : 'localRotation', 'comparer' : compareNumericObjects},
|
||||
{'propertyName' : 'localRotationAngles', 'comparer' : compareNumericObjects},
|
||||
{'propertyName' : 'dimensions', 'comparer' : compareNumericObjects}], 'properties')
|
||||
}
|
||||
|
||||
|
|
|
@ -157,6 +157,14 @@ function fromQml(message) { // messages are {method, params}, like json-rpc. See
|
|||
'currentAvatarSettings' : currentAvatarSettings
|
||||
};
|
||||
|
||||
for(var bookmarkName in message.data.bookmarks) {
|
||||
var bookmark = message.data.bookmarks[bookmarkName];
|
||||
|
||||
bookmark.avatarEntites.forEach(function(avatarEntity) {
|
||||
avatarEntity.properties.localRotationAngles = Quat.safeEulerAngles(avatarEntity.properties.localRotation)
|
||||
})
|
||||
}
|
||||
|
||||
sendToQml(message)
|
||||
break;
|
||||
case 'selectAvatar':
|
||||
|
@ -172,7 +180,14 @@ function fromQml(message) { // messages are {method, params}, like json-rpc. See
|
|||
if(message.properties.localRotationAngles) {
|
||||
message.properties.localRotation = Quat.fromVec3Degrees(message.properties.localRotationAngles)
|
||||
}
|
||||
|
||||
Entities.editEntity(message.entityID, message.properties);
|
||||
message.properties = Entities.getEntityProperties(message.entityID, Object.keys(message.properties));
|
||||
|
||||
if(message.properties.localRotation) {
|
||||
message.properties.localRotationAngles = Quat.safeEulerAngles(message.properties.localRotation);
|
||||
}
|
||||
|
||||
sendToQml({'method' : 'wearableUpdated', 'entityID' : message.entityID, wearableIndex : message.wearableIndex, properties : message.properties, updateUI : false})
|
||||
break;
|
||||
case 'adjustWearablesOpened':
|
||||
|
@ -395,7 +410,12 @@ function onBookmarkDeleted(bookmarkName) {
|
|||
}
|
||||
|
||||
function onBookmarkAdded(bookmarkName) {
|
||||
sendToQml({ 'method': 'bookmarkAdded', 'bookmarkName': bookmarkName, 'bookmark': AvatarBookmarks.getBookmark(bookmarkName) });
|
||||
var bookmark = AvatarBookmarks.getBookmark(bookmarkName);
|
||||
bookmark.avatarEntites.forEach(function(avatarEntity) {
|
||||
avatarEntity.properties.localRotationAngles = Quat.safeEulerAngles(avatarEntity.properties.localRotation)
|
||||
})
|
||||
|
||||
sendToQml({ 'method': 'bookmarkAdded', 'bookmarkName': bookmarkName, 'bookmark': bookmark });
|
||||
}
|
||||
|
||||
//
|
||||
|
|
Loading…
Reference in a new issue