justifun's Forum Posts

  • I'd recommend simply making a 3 or 4 frame animation using the noise function within any art program, and then add it as a regular sprite animation.

  • The Iconoclasts was made with Construct 1

    youtube.com/watch

  • Well said Ashley !

  • Spine reached one of its stretch goals and now it can support generic java script, so construct 2 will be able to support it as soon as they implement it!

    kickstarter.com/projects/esotericsoftware/spine/posts/402599

  • check out this plugin

    scirra.com/forum/plugin-video_topic46310.html

  • By having them one after another you are doing just that,

    its creating on on the left, then one on the right.

    to make your events a bit cleaner you could change it to

    create object on layer 1 at -100, random(0, windowHeight)

    and

    create object on layer 1 at windowWidth +100, random(0, windowHeight)

    this way if you change your game resolution you won't have to go update it later.

  • If you make the body and head part of a container then you can easily do what you want to do without pinning.

    select the body and click "create" in the container section of the properties on the left

    then click "add object" and pick the head.

    create the enemies by spawning the bodies, and the heads will automatically generate as well

    then use something like bullet on collision with head, destroy head.

    it will only destroy that particular head.

  • Put the origin of the tractor beam on one end of the sprite. then pin it to the player object, then set the angle towards the target and set the width every tick to the distance between the 2.

    also, make the tractor beam sprite a tiled background texture so that the texture doesn't stretch as well.

  • It would be easier to simply ask the player to enter their name/email in your game directly. Then save the info using the "webstorage" object.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Sounds like something wrong with your script, can you save your project as a single file (.capx) and upload it to dropbox or somewhere where we can take a look?

  • As a work around you can use the free software Autohotkey (www.autohotkey.com) to make yourself a macro to do just that.

  • Make sure you have your IP of your own machine correct that you are running construct on and put that as the preview server address.

    most likely its 192.168.1.###, you were using a 0

    also.

    you want to put the IP address of the computer, not the device you are previewing on.

    Then on the IPAD or whatever, you browse to your computer's IP to view the game.

  • Sounds like its destroying all instances because its picking all of them during the collision. Try adding a sub event and use "pick nearest" and destroying that one

    eg:

    rock on collision with monster

    (sub event) pick nearest monster - > destroy

  • Once you purchase a Construct 2 Personal License, you will be able to export to cocoonjs and other exporters.

    In order to put a game on the android market or the apple app store, or windows 8 you will need to pay for the developer license from each of those stores respectively. that's separate from construct 2.

    I'm not sure about facebook, but i don't think they have a cost associated with them, i could be wrong.

  • Yeah you are going to have to separate the two halves into different sprites and pin them together, or simply make the top half always follow the bottom half

    eg: every tick set position "top half sprite" to "bottom half sprite.y -50"