Skip to content

Commit

Permalink
fix build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
thatkookooguy committed Sep 4, 2024
1 parent 5e80210 commit f7cbfbe
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/scenes/profile.scene.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ export default class ProfileScene extends Phaser.Scene {
player!: Phaser.Physics.Arcade.Sprite;
cursors!: Phaser.Types.Input.Keyboard.CursorKeys;
groundLayer!: Phaser.Tilemaps.TilemapLayer;
coinLayer: any;
text: any;

constructor() {
super('kibibit-logo');
Expand Down Expand Up @@ -65,7 +63,7 @@ export default class ProfileScene extends Phaser.Scene {
});
}

update(time: number, delta: number): void {
update(): void {
// if (this.cursors.left.isDown) {
// this.player.setVelocityX(-200); // move left
// this.player.anims.play('walk', true);
Expand Down

0 comments on commit f7cbfbe

Please sign in to comment.