justifun's Forum Posts

  • One thing i see off the top is your last action ...

    Platform on landed (platform is not moving)

    In one tick you are asking it to start the "Land" animation" then immediately play the "Idle" animation

    that's not going to play them back to back as you would hope they would.

    You could add a sub event and put "on animation finished" action instead, then it will play one then the other.

    Right now they are stepping on each other and you probably won't ever see it play the "land" animation

    its also getting overwritten again when you use the "on any animation finished" -> player set "runloop" action earlier.

    One way to setup an animation system like this is to create a 2 global variables such as "CurrentAnimationState" and "PreviousAnimationState"

    Then create a series of scenarios that change the animation based on whatever your current and previous state of the player's animation was in.

    eg: when the player is running (on key right), you set "CurrentAnimationState" to "Running" and "PreviousAnimationState" to "Idle"

    Then create a "check" that says If CurrentAnimationState ="Running AND "PreviousAnimationState = "Idle" -> Play animation "StartRunningFromStop"

    Next you would create another check (on key right released) that says "If CurrentAnimationState" = "Running" AND "no key is being pressed" -> Player "RunningtoStop" animation

    Then create several of these "checks" for every possible combination of types of animations you want to have in your game.

    Each variation will be separate actions which makes debugging and tweaking much easier (although you end up with a lot more events) But the tradeoff is much easier to visualize and wrap your head around in more complex games.

    Basically right now you just have several platform movements all firing off at the same time stepping on each other.

    If you post the .capx file in dropbox or a similar service and post it for us we can tweak the file and show you how to fix it.

  • Lets say your sprite marking the end of the platform is called "end"

    Player on collision with sprite(end) -> set mirrored

  • Did you set the project properties to scale in C2, not just in the cocoonjs export?

  • What's the error message?

  • add a "trigger only once while true" to the condition that checks if its incorrect

  • Thx, I'm stuck at work and just brainstorming possibly solutions while I wait for things to happen around here.

    I wasn't sure if physics objects "collide" with each other same way in the engine as 2 sprites overlapping "collide"

  • There's no screen shots, concept art, and only a vague description of the overall basis of the game. I think you need to provide more details before asking for money. Especially if its for a tablet. You should invest in a concept artist first or something. Design the game first before testing on final devices.

  • If 2 physics objects (grenade and ground), can i use the "if collision at offset" action to determine if its going to hit the ground or not?

    eg: if i throw a grenade, can i use if collision at offset Y 20 to check below it before it hits the ground?

  • Appmobi only starts charging you money after you have over 10,000 users. and then its only on everyone from 100001 on wards, so you get 10,000 for free basically.

    As for steam, you can already submit games to steam, but right now you can't add any steam API features because that isnt integrated into C2 yet. i imagine it will be now that it got approved on steam greenlight.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Give it a shot with the latest beta R115 and see how the performance is now :), should be much better.

  • The easy way is to do a system compare in the Y of your player and the Tree for example.

    put the image point of the tree at the bottom of the base of the tree

    system every tick

    ->player.Y >= tree.Y - player move to top

    else player move to bottom

    this will always put the player in front of the tree when he's lower than the tree's Y value and appear in front of it.

  • 1080P is a good widescreen resolution. Or stick to 768 if you are going for Ipad gaming. Aim for making graphics for the highest resolution of the largest device you are targetting.

  • You get a nice little badge in the forums if you have purchased construct.

    Speaking which... where's my badge? doh! :(

  • Isn't there a masking webGL effect?

  • You can make it one button, and simply give it 2 frames of animation. One for the "Up" state and one for the "Down" state.

    then use on pressed goto frame 2

    on released goto frame 1