File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -114,22 +114,22 @@ export class DisplayListWatcher extends Phaser.Plugins.ScenePlugin {
114114 this . hideKey = keyboard . addKey ( 'C' )
115115 this . resetKey = keyboard . addKey ( 'V' )
116116
117- this . toggleKey . on ( 'down' , ( key , event ) => {
117+ this . toggleKey . on ( 'down' , ( _key , event ) => {
118118 if ( event . shiftKey ) {
119119 this . toggle ( )
120120 }
121121 } )
122- this . showKey . on ( 'down' , ( key , event ) => {
122+ this . showKey . on ( 'down' , ( _key , event ) => {
123123 if ( event . shiftKey ) {
124124 this . show ( )
125125 }
126126 } )
127- this . hideKey . on ( 'down' , ( key , event ) => {
127+ this . hideKey . on ( 'down' , ( _key , event ) => {
128128 if ( event . shiftKey ) {
129129 this . hide ( )
130130 }
131131 } )
132- this . resetKey . on ( 'down' , ( key , event ) => {
132+ this . resetKey . on ( 'down' , ( _key , event ) => {
133133 if ( event . shiftKey ) {
134134 this . resetCamera ( )
135135 }
@@ -190,7 +190,7 @@ export class DisplayListWatcher extends Phaser.Plugins.ScenePlugin {
190190 this . toggleKey = null
191191 }
192192
193- update ( time , delta ) {
193+ update ( _time , delta ) {
194194 if ( this . modKey . isDown ) {
195195 this . controls . update ( delta )
196196 }
You can’t perform that action at this time.
0 commit comments