mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-09 21:56:26 +02:00
coding standard fix
This commit is contained in:
parent
a14bbe4e68
commit
359483d9ba
1 changed files with 5 additions and 3 deletions
|
@ -935,9 +935,11 @@ function MyController(hand) {
|
||||||
length: PICK_MAX_DISTANCE
|
length: PICK_MAX_DISTANCE
|
||||||
};
|
};
|
||||||
|
|
||||||
var result = { entityID: null,
|
var result = {
|
||||||
searchRay: pickRay,
|
entityID: null,
|
||||||
distance: PICK_MAX_DISTANCE };
|
searchRay: pickRay,
|
||||||
|
distance: PICK_MAX_DISTANCE
|
||||||
|
};
|
||||||
|
|
||||||
var now = Date.now();
|
var now = Date.now();
|
||||||
if (now - this.lastPickTime < MSECS_PER_SEC / PICKS_PER_SECOND_PER_HAND) {
|
if (now - this.lastPickTime < MSECS_PER_SEC / PICKS_PER_SECOND_PER_HAND) {
|
||||||
|
|
Loading…
Reference in a new issue