mirror of
https://github.com/overte-org/community-apps.git
synced 2025-04-05 21:42:30 +02:00
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.
53 lines
1.6 KiB
JavaScript
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();
|
|
})
|