mirror of
https://github.com/jiojciojsioe3/a3cjroijsiojiorj.git
synced 2024-11-15 15:31:51 +08:00
slow down + improve wheel scroll
This commit is contained in:
parent
d85f8909d7
commit
c5b7906d4d
@ -290,7 +290,7 @@ class SongSelect{
|
|||||||
focused: true
|
focused: true
|
||||||
}
|
}
|
||||||
this.songSelecting = {
|
this.songSelecting = {
|
||||||
speed: 200,
|
speed: 400,
|
||||||
resize: 0.3,
|
resize: 0.3,
|
||||||
scrollDelay: 0.1
|
scrollDelay: 0.1
|
||||||
}
|
}
|
||||||
@ -914,9 +914,9 @@ class SongSelect{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if(this.wheelScrolls !== 0 && ms >= this.wheelTimer + 20) {
|
if(this.wheelScrolls !== 0 && !this.state.locked && ms >= this.wheelTimer + 20) {
|
||||||
this.moveToSong(this.wheelScrolls)
|
this.moveToSong(this.wheelScrolls)
|
||||||
this.wheelScrolls = 0
|
this.wheelScrolls -= this.wheelScrolls
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!this.redrawRunning){
|
if(!this.redrawRunning){
|
||||||
@ -2766,7 +2766,7 @@ class SongSelect{
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
pageEvents.remove(loader.screen, ["mousemove", "mouseleave", "mousedown", "touchstart"])
|
pageEvents.remove(loader.screen, ["mousemove", "mouseleave", "mousedown", "touchstart"])
|
||||||
pageEvents.remove(this.canvas, "touchend")
|
pageEvents.remove(this.canvas, ["touchend", "wheel"])
|
||||||
pageEvents.remove(p2, "message")
|
pageEvents.remove(p2, "message")
|
||||||
if(this.touchEnabled && fullScreenSupported){
|
if(this.touchEnabled && fullScreenSupported){
|
||||||
pageEvents.remove(this.touchFullBtn, "click")
|
pageEvents.remove(this.touchFullBtn, "click")
|
||||||
|
Loading…
Reference in New Issue
Block a user