mirror of
https://github.com/overte-org/overte.git
synced 2025-04-21 06:44:06 +02:00
Pre- ray cast
This commit is contained in:
parent
56a2aa101c
commit
96fd634138
1 changed files with 8 additions and 4 deletions
|
@ -16,6 +16,8 @@
|
|||
(function() {
|
||||
|
||||
var _this;
|
||||
var RIGHT_HAND = 1;
|
||||
var LEFT_HAND = 0;
|
||||
Whiteboard = function() {
|
||||
_this = this;
|
||||
};
|
||||
|
@ -23,18 +25,20 @@
|
|||
Whiteboard.prototype = {
|
||||
|
||||
setRightHand: function() {
|
||||
this.hand = 'RIGHT';
|
||||
this.hand = RIGHT_HAND;
|
||||
},
|
||||
|
||||
setLeftHand: function() {
|
||||
this.hand = 'LEFT';
|
||||
this.hand = LEFT_HAND;
|
||||
},
|
||||
|
||||
startFarGrabNonColliding: function() {
|
||||
this.whichHand = this.hand;
|
||||
this.activeHand = this.hand;
|
||||
},
|
||||
|
||||
continueFarGrabbingNonColliding: function() {},
|
||||
continueFarGrabbingNonColliding: function() {
|
||||
var handClick = Controller.findAction(handClickString);
|
||||
},
|
||||
|
||||
preload: function(entityID) {
|
||||
this.entityID = entityID;
|
||||
|
|
Loading…
Reference in a new issue