Explanation of a object script and what it can do?
  • Selim can you explain how this piece of code can be reusable for any game we build with gameQuery...Taken out of Thunderfight 20xx...

    if((this.node.y()+this.alignmentOffset) > $(playerNode).y()){
    this.node.y(this.speedy, true);
    } else if((this.node.y()+this.alignmentOffset) < $(playerNode).y()){
    this.node.y(this.speedy, true);
    }
  • selimselim
    Accepted Answer
    This type of enemies tries to align themselves with the player.

    The alignmentOffset is just a value that represent the difference of vertical distance between the top and the center the player and the enemy. So what we do here is check if the enemy's center is above or below the player's center and simply move the enemy accordingly.

    How and there is a typo in you code the second line should read:
    this.node.y(-this.speedy, true);

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!