Jump to content

Search the Community

Showing results for tags 'moveToObject'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • HTML5 Game Coding
    • News
    • Game Showcase
    • Facebook Instant Games
    • Web Gaming Standards
    • Coding and Game Design
    • Paid Promotion (Buy Banner)
  • Frameworks
    • Pixi.js
    • Phaser 3
    • Phaser 2
    • Babylon.js
    • Panda 2
    • melonJS
    • Haxe JS
    • Kiwi.js
  • General
    • General Talk
    • GameMonetize
  • Business
    • Collaborations (un-paid)
    • Jobs (Hiring and Freelance)
    • Services Offered
    • Marketplace (Sell Apps, Websites, Games)

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Website URL


Twitter


Skype


Location


Interests

Found 2 results

  1. I am making a top down zombie shooter and I am using the moveToObject function for the zombies to follow the player but as you can see, as soon as the player walks behind a wall the zombies get stuck. Is there an easy way to fix this issue?
  2. Hi i've got a problem, with this code only one enemy moves to the ship and the others don't move.i tried a lot of times but i don't solve the problem. Can you help me? //create functionenemy = game.add.group();enemy.enableBody = true;enemy.physicsBodyType = Phaser.Physics.ARCADE;for (var i = 0; i < 16; i++) this.enemies = enemy.create(game.world.randomX, game.world.randomY, 'nemici');//update function game.physics.arcade.moveToObject(this.enemies, {x: this.nave.x, y:this.nave.y},vel_nem, this);
×
×
  • Create New...