community-apps/applications/cam360/grabDetection.js
Alezia Kurdis 7a044447c9
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.
2022-09-04 23:33:44 -04:00

53 lines
1.6 KiB
JavaScript

"use strict";
//
// grabDetection.js
//
// Created by Alezia Kurdis on August 26th, 2022
// Copyright 2022 Overte e.V.
//
// Distributed under the Apache License, Version 2.0
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
//
(function(){
var _this;
DetectGrabbed = function() {
_this = this;
};
DetectGrabbed.prototype = {
setRightHand: function () {
//print("I am being held in a right hand... entity:" + this.entityID);
},
setLeftHand: function () {
//print("I am being held in a left hand... entity:" + this.entityID);
},
startDistantGrab: function () {
//print("I am being distance held... entity:" + this.entityID);
},
continueDistantGrab: function () {
//print("I continue to be distance held... entity:" + this.entityID);
},
startNearGrab: function () {
//print("I was just grabbed... entity:" + this.entityID);
},
continueNearGrab: function () {
//print("I am still being grabbed... entity:" + this.entityID);
},
releaseGrab: function () {
//print("I was released... entity:" + this.entityID);
var ownerID = Entities.getEntityProperties( this.entityID, ["owningAvatarID"] ).owningAvatarID;
if ( ownerID === MyAvatar.sessionUUID) {
Entities.editEntity(this.entityID, {"userData": "RELEASED"});
}
},
preload: function(entityID) {
this.entityID = entityID;
},
};
return new DetectGrabbed();
})