jobel's Forum Posts

  • nope doesn't work in firefox for me either... could it be my keyboard?

  • hmm maybe it's a Chrome thing?

  • Try Construct 3

    Develop games in your browser. Powerful, performant & highly capable.

    Try Now Construct 3 users don't see these ads
  • does anyone know why this doesn't work:

    holding down 2 keys (UP & RIGHT Arrow) and hitting the space bar repeatedly works fine. But when you do the same with the LEFT arrow the space bar key strokes are ignored?

    see capx

  • but really if you just set values under the Create Object action, all references will be to that specific object.. it's only if later you want to reference it that you would need to save the UID.

  • you can set it to a variable...

    newUID;

    and right under Create Object do:

    System set value of newUID to object.UID

  • how did you make your bricks? are they cloned objects or did you just cut and paste? if you used cut & paste in the editor it makes another instance of that object, not a new object.

    so if you Destroy that object, it will destroy all objects unless you pick them individually.. (by it's UID)

    To avoid this, make sure you are always picking by UID. Or the event that triggers is based on an individual object like:

    Sprite1 OnCollision - Destroy Sprite (this will only destroy that one instance of that object)

    opposed to:

    Button OnClick: Destroy Sprite - will destroy all Sprite instances at the same time.

  • what exactly do you mean "quality"? do you mean for performance reasons?

    C2 doesn't have render settings... you should be aiming to make a game able to run on most computers.

    Make a Text Object in the upper right corner of your screen and Every Tick, Set Text to: fps & " FPS (" & renderer & ") " & round(cpuutilisation * 100) & "% CPU utilisation"

    so you can monitor your game's performance.

  • I assume you've watched this?

    https://www.scirra.com/tutorials/699/im ... tion-files

  • well, in developing games you are problem-solving... so you could present some graphical puzzles for the player.. maybe some flow charts.. or design "architecture"? For example in all the LEGO title games (specifically LEGO Marvel) how you have to figure out how to "hack" computers by turning a succession of knobs the correct way to get the flow working.

    some other mini-game ideas:

    -make a player do some software "bug fixing".. which you could make into a "wack a mole" game with "bugs"

    -make a "time management" type of mini game where you have to run around an office giving all the members of the dev team support... your programmers demand redbull and sugary treats while they code, your technical directors expect status reports while they sit at their desks "working"....things like that.. and if they don't get what they want the programmers start complaining and write bad code, the directors yell and are unhappy.. and based on the overall morale, it determines the rating of the game they make..which effects it's revenue etc...

    just some ideas..

  • seems like some cool stuff there... hope you can continue it in C2... I assume none of it applies to C2? I never used CC.

  • is the collision box the same for each frame of the animation?

  • is this a comment about this website?

  • in order for it to become random movements you need to track the current movement so you can then modify it with Random(x,x).

    Or you can randomly make changes...here's something off the top of my head:

    Not sure how many enemies are on the screen at a time but you could use a 'regular' Timer that fires every 1 or 2 seconds. OnTimer Event(when elapsed time has finished)->Call up a random number between 1 and 20, if the number is 5,6,7 then change enemy's direction/speed/shooting etc.. (use Pick random instance to select a random enemy.)

  • rheece

    also you want to use a one-off timer.. or Type=Once... the <Duration> is the time until OnTimer triggers... and that will fire once and not again until StartTimer is called again..