Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript offset each appended element independently

  • This topic is empty.
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #208699
    bearhead
    Participant

    I’m trying to create a game where the player creates “units” (divs) that move up the screen by pressing the spacebar. The issue I’m having is that each unit is created at the y value that the first one is currently at, instead of at the y value of the cursor.

    I know why my code is producing the result it is, but I can’t figure out how I would re-write it such that each unit is created at the cursor. It seems like each instance of unit needs to be assigned its own variable for it’s position? but I can think of how to write that…

    Here is what I have so far:
    The black outlined box is the “cursor”, you can move it left and right with arrow keys. press space to create a “unit”.
    http://codepen.io/kvana/pen/VvmLLJ

    #208837
    bearhead
    Participant

    Thank you, that’s perfect!

Viewing 2 posts - 1 through 2 (of 2 total)
  • The forum ‘JavaScript’ is closed to new topics and replies.