Skip to content

Commit

Permalink
removed comments
Browse files Browse the repository at this point in the history
  • Loading branch information
ahoyMateyKatie committed Sep 7, 2022
1 parent 9f324c9 commit c91cee2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
4 changes: 0 additions & 4 deletions src/app/ContentBridge.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,6 @@ export default class ContentBridge extends EventTarget {
this[$dispatchToContent]('_transform-controls-update', { mode, space });
}
}, { passive: true })

// document.querySelector('#transform-cache').addEventListener('click', () => {
// console.log('Ahoy! Hello!');
// });
}

reload() {
Expand Down
2 changes: 1 addition & 1 deletion src/content/EntityCache.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ return class EntityCache extends EventTarget {
this.scenes.add(entity);
this._registerEntity(entity);
} else if (typeof entity.render === 'function') {
this.entityMap.set(id, entity); oc
this.entityMap.set(id, entity);
} else {
throw new Error('May only observe scenes, cameras and renderers currently.');
}
Expand Down

0 comments on commit c91cee2

Please sign in to comment.