Skip to content

Commit

Permalink
chore: delete console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
gnlow committed Dec 5, 2023
1 parent 8b4036f commit 3b1ec79
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/Entry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ export class Entry {
)
.flat()
))
console.log(this.textures)
Object.entries(this.objects).forEach(([_id, obj]) => {
obj.texture = this.textures[obj.textureIds[obj.currentTextureIndex]]
})
Expand Down Expand Up @@ -114,7 +113,6 @@ export class Entry {
this.pressedKeys[event.keyCode] = false
})

console.log("Init")
// @ts-ignore: Unknown error???
this.renderer = await autoDetectRenderer({
width: 480,
Expand Down Expand Up @@ -163,7 +161,6 @@ export class Entry {
this.on("start", f)
}
when_scene_start(f: () => void, obj: EntrySprite) {
console.log(obj.scene)
this.on(`start_scene_${obj.scene}`, f)
}
start_scene(sceneId: string) {
Expand Down

0 comments on commit 3b1ec79

Please sign in to comment.