LittleStain's Forum Posts

  • Well if your collision-polygons and origins are in the right position you could always check if using the crop function in the image editor would reduce framesize..

  • That's why I created my example.

    All you need is in my capx right?

    Just copy or recreate the events and sprites and it should work..

  • Are you using pixel rounding?

    Are the original positions of the backgrounds at exact pixel-positions?

    Are there no (semi)transparent pixels at the edges of the backgrounds?

    I haven't had this issue before, so these are the first things I would check..

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • One way would be to reduce the number of frames in the animations

    Another way would be to reduce the amount of animations

    Another way would be to reduce the size of the animation-frames (by cropping them?)

    Question is, what options are you prepared to look at?

  • Like I said..

    You'd want to set the angle of the sprite to thumbstickstick.a degrees

    so:

    on touch

    thumbstickstick is selected

    sprite set angle - thumbstickstick.a

  • Although I don't know how intensively you'd want to use the feature it would be possible to create it with blendmodes (for the masking part) , and copies of the sprites for the inversion part..

    With a bit of creative coding you could probably keep processing-power relatively low..

  • Wouldn't it be easier to use the timer behaviour instead of the wait action?

    scenes = 0

    -- every tick

    simulate pressing right

    -- trigger once

    start timer with tag "scenes0a" for 15 seconds

    on timer "scene0a"

    set maximum speed to 40

    start timer "scenes0b" for 3.5 seconds

    on timer "scene0b"

    -- set maximum speed to 30

    -- start timer "scenes0c" for 1.5 seconds

    on timer "scene0c"

    set maximum speed to 40

    start timer "scenes1a" for 0.5 seconds

    on timer "scene1a"

    set scenes to 1

    sprite set mirrored

    etcetera..

  • It would consist of setting the angle of the player to thumbstick.a degrees

  • Very simply put:

    "Create Object" at random(100,layoutwidth-100), random(100,layoutHeight-100)

    So just add the pixels offset from the border you would need (in this case 100)

    Unless you want to be even more specific about the "randomness"

  • Does the example in this thread help?

  • Why would you need the extra global variables for that?

  • Seems like you have a conflicting event..

    If there is another event telling the player to play animation walking and the conditions to that event are true, the animation walking will play..

    so you should probably look for that event and add a condition player animation collect is NOT playing, or similar..

  • This depends a lot on what method you are using at this time..

    Saving can be done using local storage and/or the system save action.

  • Add the condition

    bullet - pick nearest/furthest

    so it's a condition of the sprite, not a system condition.

  • Ok, just wondering, how where you planning on giving the notification?

    I don't think C2 was meant to create the kind of app you are trying to make.

    I guess for now you will have to try and work around the limitations.