Remove one last debug log
This commit is contained in:
parent
ac2715cd15
commit
9893d5c8a4
|
@ -20,7 +20,6 @@ b * (a - x0) = a - x1
|
||||||
x1 = a - b * (a - x0)
|
x1 = a - b * (a - x0)
|
||||||
*/
|
*/
|
||||||
export const handleScroll = (e: WheelEvent, camera: Camera) => {
|
export const handleScroll = (e: WheelEvent, camera: Camera) => {
|
||||||
console.log('got here')
|
|
||||||
const sign = -e.deltaY / Math.abs(e.deltaY)
|
const sign = -e.deltaY / Math.abs(e.deltaY)
|
||||||
const zoom = scrollStep ** sign
|
const zoom = scrollStep ** sign
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue