We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3473bdf commit 8e411c1Copy full SHA for 8e411c1
1 file changed
src/index.html
@@ -786,7 +786,7 @@
786
document.addEventListener('keydown', (event) => {
787
if ((document.activeElement.tagName !== 'TEXTAREA') && (document.activeElement.tagName !== 'INPUT')) {
788
camera.userData.keyboard[event.code] = true;
789
- // In some rare cases the keyup event is not triggered, so we help the user get out of the stuck keys situation.
+ // When keyup event is not triggered, help user get out of the stuck keys situation.
790
if (event.code === 'Escape') {
791
camera.userData.keyboard = {};
792
} else if (event.code === 'ArrowLeft') {
@@ -867,7 +867,7 @@
867
},
868
panels: [
869
{
870
- id: 'instructions',
+ id: 'html3dDemoInfo',
871
width: 1500,
872
height: 1500,
873
x: -1500,
0 commit comments