mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-25 17:35:08 +02:00
debuggable
This commit is contained in:
parent
7b39700136
commit
8f714980df
1 changed files with 4 additions and 3 deletions
|
@ -59,15 +59,16 @@
|
|||
var userData = properties.userData && JSON.parse(properties.userData);
|
||||
var moveTimeout = userData ? userData.moveTimeout : 0;
|
||||
var editTimeout = userData ? userData.editTimeout : 0;
|
||||
var debug = (userData && userData.debug) || {};
|
||||
editRate = (userData && userData.editRate) || editRate;
|
||||
moveRate = (moveRate && userData.moveRate) || moveRate;
|
||||
oldColor = properties.color;
|
||||
dimensions = Vec3.multiply(scale, properties.dimensions);
|
||||
baton = virtualBaton({
|
||||
batonName: 'io.highfidelity.tribble',
|
||||
debugFlow: true,
|
||||
debugSend: false,
|
||||
debugReceive: false
|
||||
debugFlow: debug.flow,
|
||||
debugSend: debug.send,
|
||||
debugReceive: debug.receive
|
||||
});
|
||||
if (editTimeout) {
|
||||
baton.claim(startUpdate, stopUpdateAndReclaim);
|
Loading…
Reference in a new issue