File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1401,10 +1401,10 @@ var InputPlugin = new Class({
14011401 gameObjects = [ gameObjects ] ;
14021402 }
14031403
1404- var i ;
14051404 var draggable = false ;
14061405 var dropZone = false ;
14071406 var cursor = false ;
1407+ var useHandCursor = false ;
14081408
14091409 // Config object?
14101410 if ( IsPlainObject ( shape ) )
@@ -1417,8 +1417,9 @@ var InputPlugin = new Class({
14171417 dropZone = GetFastValue ( config , 'dropZone' , false ) ;
14181418 cursor = GetFastValue ( config , 'cursor' , false ) ;
14191419 useHandCursor = GetFastValue ( config , 'useHandCursor' , false ) ;
1420- pixelPerfect = GetFastValue ( config , 'pixelPerfect' , false ) ;
1421- alphaTolerance = GetFastValue ( config , 'alphaTolerance' , 1 ) ;
1420+
1421+ var pixelPerfect = GetFastValue ( config , 'pixelPerfect' , false ) ;
1422+ var alphaTolerance = GetFastValue ( config , 'alphaTolerance' , 1 ) ;
14221423
14231424 if ( pixelPerfect )
14241425 {
You can’t perform that action at this time.
0 commit comments