mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-25 17:14:59 +02:00
update detectGrabExample.js
This commit is contained in:
parent
612e906a44
commit
3d18edd9d1
1 changed files with 15 additions and 4 deletions
|
@ -23,16 +23,27 @@
|
|||
|
||||
DetectGrabbed.prototype = {
|
||||
|
||||
distanceHolding: function () {
|
||||
print("I am being distance held... entity:" + this.entityID);
|
||||
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);
|
||||
},
|
||||
|
||||
closeGrabbing: function () {
|
||||
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);
|
||||
},
|
||||
continueCloseGrabbing: function () {
|
||||
continueNearGrab: function () {
|
||||
print("I am still being grabbed... entity:" + this.entityID);
|
||||
},
|
||||
|
||||
release: function () {
|
||||
print("I was released... entity:" + this.entityID);
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue