[Case 6491] Minor: Switching off wantDebug flags that were left on.

Changes Committed:
	modified:   scripts/system/libraries/entitySelectionTool.js
This commit is contained in:
LaShonda Hopper 2017-08-08 16:37:59 -04:00 committed by LaShonda Hopper
parent 196b665e22
commit 18cc632df5

View file

@ -2393,7 +2393,7 @@ SelectionDisplay = (function() {
startingDistance: 0.0,
startingElevation: 0.0,
onBegin: function(event,isAltFromGrab, intersectInfo) {
var wantDebug = true;
var wantDebug = false;
if(wantDebug){
print("================== TRANSLATE_XZ(Beg) -> =======================");
Vec3.print(" intersectInfo.queryRay", intersectInfo.queryRay);
@ -3634,7 +3634,7 @@ SelectionDisplay = (function() {
addGrabberTool(yawHandle, {
mode: "ROTATE_YAW",
onBegin: function(event) {
var wantDebug = true;
var wantDebug = false;
if (wantDebug) {
print("================== HANDLE_YAW(Beg) -> =======================");
}
@ -3838,7 +3838,7 @@ SelectionDisplay = (function() {
addGrabberTool(pitchHandle, {
mode: "ROTATE_PITCH",
onBegin: function (event) {
var wantDebug = true;
var wantDebug = false;
if (wantDebug){
print("================== HANDLE_PITCH(Beg) -> =======================");
}
@ -4032,7 +4032,7 @@ SelectionDisplay = (function() {
addGrabberTool(rollHandle, {
mode: "ROTATE_ROLL",
onBegin: function (event) {
var wantDebug = true;
var wantDebug = false;
if(wantDebug){
print("================== HANDLE_ROLL(Beg) -> =======================");
}
@ -4255,7 +4255,7 @@ SelectionDisplay = (function() {
// FUNCTION DEF(s): Intersection Check Helpers
function testRayIntersect(queryRay, overlayIncludes, overlayExcludes) {
var wantDebug = true;
var wantDebug = false;
if ((queryRay === undefined) || (queryRay === null)) {
if (wantDebug) {
print("testRayIntersect - EARLY EXIT -> queryRay is undefined OR null!");
@ -4306,12 +4306,10 @@ SelectionDisplay = (function() {
return intersectObj;
}
//--------------------
//---------------------------------------
// FUNCTION: MOUSE PRESS EVENT
that.mousePressEvent = function (event) {
var wantDebug = true;
var wantDebug = false;
if (wantDebug) {
print("=============== eST::MousePressEvent BEG =======================");
}