Disable print statements

This commit is contained in:
David Rowe 2017-06-14 15:37:36 +12:00
parent 395d40f0f9
commit e3b4e4aa20
2 changed files with 2 additions and 2 deletions

View file

@ -10,7 +10,7 @@
var hmdRollControlEnabled = false;
print("HMD roll control: " + hmdRollControlEnabled);
//print("HMD roll control: " + hmdRollControlEnabled);
MyAvatar.hmdRollControlEnabled = hmdRollControlEnabled;

View file

@ -12,7 +12,7 @@ var hmdRollControlEnabled = true;
var hmdRollControlDeadZone = 8.0; // deg
var hmdRollControlSpeed = 2.5; // deg/sec/deg
print("HMD roll control: " + hmdRollControlEnabled + ", " + hmdRollControlDeadZone + ", " + hmdRollControlSpeed);
//print("HMD roll control: " + hmdRollControlEnabled + ", " + hmdRollControlDeadZone + ", " + hmdRollControlSpeed);
MyAvatar.hmdRollControlEnabled = hmdRollControlEnabled;
MyAvatar.hmdRollControlDeadZone = hmdRollControlDeadZone;