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:
Alezia Kurdis 2022-09-04 23:33:44 -04:00 committed by GitHub
parent b8da54c053
commit 7a044447c9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 4 deletions

View file

@ -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);

View file

@ -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) {