|
@@ -151,11 +151,11 @@
|
|
|
setInterval(draw, 10);
|
|
|
|
|
|
const cursors = {};
|
|
|
- const objects = {};
|
|
|
+ const tuioObjects = {};
|
|
|
|
|
|
function draw(){
|
|
|
context.clearRect(0, 0, canvas.width, canvas.height);
|
|
|
- for(obj of Object.values(objects)){
|
|
|
+ for(obj of Object.values(tuioObjects)){
|
|
|
if (config.app.debugDisplay) {
|
|
|
const apex = {
|
|
|
x: Math.cos(obj.angle * Math.PI /180) * 150 + obj.xPos,
|
|
@@ -207,14 +207,14 @@
|
|
|
},
|
|
|
|
|
|
onAddTuioObject = function(addObject) {
|
|
|
- objects[addObject.symbolId] = addObject;
|
|
|
+ tuioObjects[addObject.symbolId] = addObject;
|
|
|
if (config.app.debug && config.app.debugLog.frontend.receiver.onAddTuioObject) {
|
|
|
console.log('addTuioObject', addObject);
|
|
|
}
|
|
|
},
|
|
|
|
|
|
onUpdateTuioObject = function(updateObject) {
|
|
|
- objects[updateObject.symbolId] = updateObject;
|
|
|
+ tuioObjects[updateObject.symbolId] = updateObject;
|
|
|
|
|
|
if (config.app.debug && config.app.debugLog.frontend.receiver.onUpdateTuioObject) {
|
|
|
console.log('updateTuioObject', updateObject);
|
|
@@ -223,7 +223,7 @@
|
|
|
|
|
|
onRemoveTuioObject = function(removeObject) {
|
|
|
|
|
|
- delete objects[removeObject.symbolId];
|
|
|
+ delete tuioObjects[removeObject.symbolId];
|
|
|
|
|
|
if (config.app.debug && config.app.debugLog.frontend.receiver.onRemoveTuioObject) {
|
|
|
console.log('removeTuioObject', removeObject);
|