mirror of
https://github.com/overte-org/community-apps.git
synced 2025-04-05 21:22:00 +02:00
Bug Fix
Finally, using local entity wasn't a good move. Now it all used avatar entity and I make the client entity script not executing for other users.
This commit is contained in:
parent
b8da54c053
commit
7a044447c9
2 changed files with 7 additions and 4 deletions
|
@ -63,7 +63,7 @@
|
|||
"gravity": cameraGravity,
|
||||
"dynamic": true
|
||||
};
|
||||
hostType = "local";
|
||||
hostType = "avatar";
|
||||
} else {
|
||||
properties = {
|
||||
"canCastShadow": false,
|
||||
|
@ -191,7 +191,7 @@
|
|||
"name": CAMERA_NAME + "_Flash",
|
||||
"type": "Light",
|
||||
"parentID": camera
|
||||
}, "local");
|
||||
}, "avatar");
|
||||
}
|
||||
// Take the snapshot!
|
||||
maybeTake360Snapshot();
|
||||
|
@ -277,7 +277,7 @@
|
|||
// Play a sound at the current camera position
|
||||
Audio.playSound(SOUND_SNAPSHOT, {
|
||||
"position": { "x": currentCameraPosition.x, "y": currentCameraPosition.y, "z": currentCameraPosition.z },
|
||||
"localOnly": isThrowMode,
|
||||
"localOnly": false,
|
||||
"volume": 0.8
|
||||
});
|
||||
Window.takeSecondaryCamera360Snapshot(currentCameraPosition);
|
||||
|
|
|
@ -38,7 +38,10 @@
|
|||
|
||||
releaseGrab: function () {
|
||||
//print("I was released... entity:" + this.entityID);
|
||||
Entities.editEntity(this.entityID, {"userData": "RELEASED"});
|
||||
var ownerID = Entities.getEntityProperties( this.entityID, ["owningAvatarID"] ).owningAvatarID;
|
||||
if ( ownerID === MyAvatar.sessionUUID) {
|
||||
Entities.editEntity(this.entityID, {"userData": "RELEASED"});
|
||||
}
|
||||
},
|
||||
|
||||
preload: function(entityID) {
|
||||
|
|
Loading…
Reference in a new issue