justifun's Forum Posts

  • spritecutie.com

    drop a sprite sheet onto the window and it and tells you their cordinates

  • Looks fun!, how's the performance on the different devices you've been testing it with?

  • For any of your objects that don't require the most accurate physics calculations, you can tone down their physics interations which is a big performance boost.

    Here's the part of the manual in the physics object

    Action

    Set stepping iterations

    Set the number of velocity iterations and position iterations used in the physics engine. The default is 8 and 3 respectively. Lower values run faster but are less accurate, and higher values can reduce performance but provide a more realistic simulation.

    scirra.com/manual/98/physics

  • Here's a great article on monetizing html5 games.

    photonstorm.com/archives/3045/insert-coin-to-continue-the-html5-game-sponsorship-market

  • Came across this tutorial today. While its made with Multimedia Fusion, the game design mechanics covered can be used the same way in construct. A lot of people have been asking about this type of game recently, so check it out! (he even gives a nod out to construct)

    gamedev.tutsplus.com/tutorials/from-scratch/build-a-canabalt-style-infinite-runner-from-scratch

  • Sounds like he wants to make it so that an object with the 8 direction movement behavior doesn't collide with other objects.

    If that's true, (because you want other objects to be able to just not the player. Perhaps you can simply put the player on a different layers than the other objects?

  • Please post the .capx file.

  • You do not have permission to view this post

  • Yeah its super easy.

    Create an event, and then right click it and use "add condition" then add your second condition.

    eg:

    keyboard button "Down" is pressed

    keyboard button "right" is pressed

    repeat to add a third condition

    keyboard button "b" is pressed ->do fireball

    now the fireball will only occur if all keys are currently pressed.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Add the "pin" behavior to your prop object,

    then create an image point on your sprite where you want the object to be pined to eg: his hands

    then use the action "pin to" on the prop in your event sheet to attach it to the arm image point

  • You can simply move the origin point of the sprite off center, and align it to the players position, then add the rotation and it should spin around him like a shield.

  • Well you can always export your animation from spriter into a series of png images so it would effectively turn back into a regular sprite animation (but probably with a lot more frames)

  • I'd love to hear about the extra stuff you had to do to get it working smoothly .

  • I won't give you the exact answers but I will point you in the right direction.

    You're going to want to learn about the Distance() expression. This is used to determine the distance between 2 objects. If your helicopter is close enough to the POW's then they should run towards the helicopter.

    Also, you will probably use the On collision with object event as well. When the pow's overlap with the helicopter, you'd add how many he picked up to a variable maxing out at however many he can hold before having to fly away again.

    once he lands on the helipad to drop them off you can start subtracting how many he's holding, then spawn the animations of them running off to safety.

    Just try breaking down each little element then searching the forums for examples or trying some things out in the engine to see how to get them to work.

    Try bringing up the available events for a sprite for example and look through each of the possible actions. Ask yourself how you can use each one for different types of scenarios and you'll start to see how powerful the engine is, and the possibilities that are endless.

  • Check this thread out

    scirra.com/forum/topic59409.html