mirror of
https://github.com/yuukiwww/taiko-web.git
synced 2024-10-22 17:05:49 +02:00
Fix song restarting and multiple touches
This commit is contained in:
parent
c8acfc3188
commit
c999dca204
@ -136,10 +136,10 @@ class Controller{
|
|||||||
restartSong(){
|
restartSong(){
|
||||||
this.clean()
|
this.clean()
|
||||||
if(this.multiplayer){
|
if(this.multiplayer){
|
||||||
new loadSong(this.selectedSong, false, true)
|
new loadSong(this.selectedSong, false, true, this.touchEnabled)
|
||||||
}else{
|
}else{
|
||||||
loader.changePage("game")
|
loader.changePage("game")
|
||||||
var taikoGame = new Controller(this.selectedSong, this.songData, this.autoPlayEnabled)
|
var taikoGame = new Controller(this.selectedSong, this.songData, this.autoPlayEnabled, false, this.touchEnabled)
|
||||||
taikoGame.run()
|
taikoGame.run()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -933,7 +933,7 @@ class View{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
ontouch(event){
|
ontouch(event){
|
||||||
for(let touch of event.touches){
|
for(let touch of event.changedTouches){
|
||||||
event.preventDefault()
|
event.preventDefault()
|
||||||
var scale = this.canvas.scale
|
var scale = this.canvas.scale
|
||||||
var pageX = touch.pageX * scale
|
var pageX = touch.pageX * scale
|
||||||
|
Loading…
Reference in New Issue
Block a user