Removed console log

This commit is contained in:
Dennis Postma 2024-09-16 20:07:44 +02:00
parent 1c703edc26
commit 8cf13f88d6

View File

@ -45,7 +45,6 @@ const isInitialPosition = ref(true)
const calculateLocalDepth = (x: number, y: number, width: number, height: number, isCharacter: boolean) => {
isometricDepth.value = calculateIsometricDepth(x, y, width, height, isCharacter)
console.log(isometricDepth.value)
}
const updatePosition = (x: number, y: number, direction: Direction) => {