madster's Recent Forum Activity

  • perhaps I need to update my drivers ("lol") but give it a try.

    Create a line, make it HUGE (half layout, thick as a rectangle) and then rotate it around.

    I see a huge shift when I do that. That probably means there's a 1px error in those angles.

  • namespaces?

  • What is the desired behavior?

    I see it working fine, it shows the "walk forward" animation only when walking towards the pointer, same for the other directions.

    If what you're after is always having the feet point to the proper direction, then you would need to have them in a separate sprite. Since this seems to be 3D, you could render the torso again and then the legs, separately, then move them together and set the torso angle towards the mouse, while setting the legs angle according to keys.

    On a different note:

    man, if only someone made a plugin that let you set controls at runtime

    I lol'd.

    We need a thread for uploading custom plugins, yes.

    Whoa --> [quote:1q7iin1e]http://www.scirra.com/phpBB3/viewforum.php?f=29

    there is already. Lucid! upload!

  • it would be cool if you could actually modify edittime values via the runtime and runtime variables via the edittime

    Unified values yes please!

  • I tried this here:

    I set position instead of velocity, which fixes the immovable object problem but lacks proper momentum, bouncing things reacts weird.

    I set my proxy to immovable, btw, as it was supposed to follow the mouse pointer.

    I tried setting velocity but things went weird, probably because I had immovable turned on.

    The tricky bit of a physics platformer is that once you go all-physics, you lose all the benefits of the platformer behavior. There has been talk of making a new physics platform behavior, which would be designed to work like that.

  • Revival: I showed this old game to a friend yesterday.

    The man is an engineer like me and has mathematical inclinations. He loved it and thought it was really fun.

    _<

    I think I'll add sound and some tweaks. I should label it as a game for mathematicians/engineers right on the splash screen.

  • I wrote atan2 as a formula in an event, only to later realize there is an angle compare expression that does the same job I wanted done.

    AngleDiff(a, b)

    Is that what you're trying to do? measure of the arc between two angles?

  • You can also use the timer behavior for AI.

    About picking: you can use System-Compare, that one allows you to compare anything. The objects that satisfy the comparison will be picked.

  • Lucid's images should be wikified.

    I never got it properly until now.

  • some simple math on the loop index would do the trick

    desiredindex = desiredstart+(((loopindex-start)/(end-start))*(desiredend-desiredstart))

    that means if you loop from 1 to 10 and you really wanted from 1 to 2 in steps of 0.1

    di = 1+( ((loopindex-1)/(10-1)) * (2-1) )

    di = 1+((loopindex-1)/9)

    if you loop from 1 to 10 and really wanted 10 to 1

    di = 10+( ((loopindex-1)/(10-1)) * (1-10) )

    di = 10+( ((loopindex-1)/9) * (-9) )

    at loopindex 1 this is 10+(((1-1)/9)*(-9)) = 10

    at loopindex 2 this is 10+(((2-1)/9)*(-9)) = 10+( (1/9) * (-9) ) = 10-1 = 9

    at loopindex 10 this is 10+(((10-1)/9)*(-9)) = 10+( -9 ) = 1

    PS: Or you could start all your loops from 0 to n-1 where n is the number of steps you want, then use the linear interpolation function that's built into construct to interpolate between the start of the sequence you want to the end. In fact, do that, it's the same only faster and simpler.

  • you finished it!

    it looks (and sounds) great! even more congratulations!

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • paper mario 64? I found it fun.

    All mario RPGs are fun so far. I played the original for SNES and Luigi & Mario for GBA, both good.

madster's avatar

madster

Member since 17 Feb, 2009

None one is following madster yet!

Trophy Case

  • 16-Year Club

Progress

16/44
How to earn trophies