phone fix
This commit is contained in:
parent
5e83426ebd
commit
1c220d8950
2 changed files with 7 additions and 1 deletions
|
@ -64,7 +64,13 @@ html, body{
|
|||
width: 100%;
|
||||
overflow-y: scroll;
|
||||
overflow-x: hidden;
|
||||
|
||||
}
|
||||
|
||||
#chatMessages::-webkit-scrollbar{
|
||||
display: none;
|
||||
}
|
||||
|
||||
#chatInputDiv{
|
||||
height: 10%;
|
||||
width: 100%;
|
||||
|
|
|
@ -213,7 +213,7 @@ class Car
|
|||
let collide = (cx<=x && x<=cx+carSize && cy<=y && y<=cy+carSize);
|
||||
if(collide) {
|
||||
driftSound.play()
|
||||
this.drift=300*dt;
|
||||
this.drift=75*dt;
|
||||
}
|
||||
return collide;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue