mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 04:44:11 +02:00
remove dead code and eslint files
This commit is contained in:
parent
05fb3cfd9a
commit
5dc336bfae
3 changed files with 6 additions and 17 deletions
|
@ -14,7 +14,7 @@
|
|||
PICK_MAX_DISTANCE, COLORS_GRAB_SEARCHING_HALF_SQUEEZE, COLORS_GRAB_SEARCHING_FULL_SQUEEZE, COLORS_GRAB_DISTANCE_HOLD,
|
||||
DEFAULT_SEARCH_SPHERE_DISTANCE, TRIGGER_OFF_VALUE, TRIGGER_ON_VALUE, ZERO_VEC, ensureDynamic,
|
||||
getControllerWorldLocation, projectOntoEntityXYPlane, ContextOverlay, HMD, Reticle, Overlays, isPointingAtUI
|
||||
Picks, makeLaserLockInfo Xform, makeLaserParams
|
||||
Picks, makeLaserLockInfo Xform, makeLaserParams, AddressManager, getEntityParents
|
||||
*/
|
||||
|
||||
Script.include("/~/system/libraries/controllerDispatcherUtils.js");
|
||||
|
@ -375,7 +375,7 @@ Script.include("/~/system/libraries/Xform.js");
|
|||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
};
|
||||
|
||||
this.isReady = function (controllerData) {
|
||||
if (HMD.active) {
|
||||
|
@ -485,7 +485,8 @@ Script.include("/~/system/libraries/Xform.js");
|
|||
this.grabbedDistance = rayPickInfo.distance;
|
||||
}
|
||||
|
||||
if (otherFarGrabModule.grabbedThingID === this.grabbedThingID && otherFarGrabModule.distanceHolding) {
|
||||
if (otherFarGrabModule.grabbedThingID === this.grabbedThingID &&
|
||||
otherFarGrabModule.distanceHolding) {
|
||||
this.prepareDistanceRotatingData(controllerData);
|
||||
this.distanceRotate(otherFarGrabModule);
|
||||
} else {
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
propsArePhysical, Messages, HAPTIC_PULSE_STRENGTH, HAPTIC_PULSE_DURATION, entityIsGrabbable,
|
||||
Quat, Vec3, MSECS_PER_SEC, getControllerWorldLocation, makeDispatcherModuleParameters, makeRunningValues,
|
||||
TRIGGER_OFF_VALUE, NEAR_GRAB_RADIUS, findGroupParent, entityIsCloneable, propsAreCloneDynamic, cloneEntity,
|
||||
HAPTIC_PULSE_STRENGTH, HAPTIC_PULSE_DURATION, BUMPER_ON_VALUE
|
||||
HAPTIC_PULSE_STRENGTH, HAPTIC_PULSE_DURATION, BUMPER_ON_VALUE, AddressManager
|
||||
*/
|
||||
|
||||
(function() {
|
||||
|
@ -85,7 +85,7 @@
|
|||
|
||||
function cleanup() {
|
||||
disableDispatcherModule("LeftNearGrabHyperLink");
|
||||
disableDispactherModule("RightNearGrabHyperLink");
|
||||
disableDispatcherModule("RightNearGrabHyperLink");
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -234,17 +234,6 @@ entityIsDistanceGrabbable = function(props) {
|
|||
return true;
|
||||
};
|
||||
|
||||
entityHasHyperlink = function(entityID) {
|
||||
var hasHyperlink = false;
|
||||
var desiredProperties = ["href"];
|
||||
var entityProperties = Entities.getEntityProperties(entityID, desiredProperties);
|
||||
print(entityProperties.href);
|
||||
if (entityProperties.href !== "") {
|
||||
hasHyperlink = true;
|
||||
}
|
||||
return hasHyperlink;
|
||||
}
|
||||
|
||||
getControllerJointIndex = function (hand) {
|
||||
if (HMD.isHandControllerAvailable()) {
|
||||
var controllerJointIndex = -1;
|
||||
|
@ -409,7 +398,6 @@ if (typeof module !== 'undefined') {
|
|||
entityIsGrabbable: entityIsGrabbable,
|
||||
NEAR_GRAB_RADIUS: NEAR_GRAB_RADIUS,
|
||||
projectOntoOverlayXYPlane: projectOntoOverlayXYPlane,
|
||||
entityHasHyperlink: entityHasHyperlink,
|
||||
projectOntoEntityXYPlane: projectOntoEntityXYPlane,
|
||||
TRIGGER_OFF_VALUE: TRIGGER_OFF_VALUE,
|
||||
TRIGGER_ON_VALUE: TRIGGER_ON_VALUE
|
||||
|
|
Loading…
Reference in a new issue