Joannak's Forum Posts

  • Great artstyle..

  • Thanks, I actually just had an idea. I shall make a game in which people make a game, to make a game, to make a game, to make a game, to make a game (And a few thousand more of those!

    I remember seeing some kind of gamemaking simuation game. It was kinda funny, never played it though.

  • Man.. I'd really wish that there were easy way to add pictutes etc. to this forum. Having a drawing (and example Capx file) woudl make understanding the problem so much easier.

  • I'm more and more getting into position that i'll may uninstall chrome entirely from my PC... it's not just worth to have on. Too many security risks and problems.

    theregister.co.uk/2014/01/23/chrome_speech_spying_vulnerability

    pcworld.com/article/2089580/spammers-buy-chrome-extensions-and-turn-them-into-adware.html

  • I just got account at Dropbox to store these examples. I have not done any games that were worth of releasing, so I have not looked up any other sites.

  • Well. I'm not sure if the versions are 100% compatible. And if the file don't open, it's most likely due different version of C2 ..

  • You are still using R152? That's quite old. I'd recommend you to download the latest Stable R158.2

    scirra.com/construct2/releases/r158.2/download

    To upload your code, firstly you need to make suitable version for web use.

    • Select File-menu/Export.
    • From the upcoming window, choose HTML-5 and then select where to save the files.

    -> Construct will automatically make Index.html and necessary files.

    After that, you should need to upload those exported files to some site where others can see them.

  • For a overly simplified answer: Physics performance is highly dependent on two things. CPU speed and Javascript implementation. On desktop systems we usually have (ballpark) 10* more powerfull processors and much more optimized Web browsers.

    Also, always check performance and compatibility on real mobile devices. The XDK emulator may be somewhat sluggish, and may well be that some new mobile devices are performing better.

    Also posting the example (capx) might help fir others to check if there's something really bad at your code.

  • Keepee, thanks for the doppler audio demo. I didn't knew that this kind of feature exists. Realizing once again, that there are so much I do not know about C2.

    And yes, IMHO that is a valid bug

  • Its not much different than raycasting.

    One thing I have noticed (and not needed that long) about this forum is that people seem to assume that the game developing system can do all the *thinking* for them.

    Programs and toolkits like Construct, Unity etc. help carrying a lot of the burden and eliminate the lots of tedious ground work needed compared to coding the same game with C(++) or Javascript. But they aren't (at least yet) totally automated systems that can solve *everything* one may need during game making.

    So, there are still some human game making skills needed, like logic and trigonometry. And this one definitely need the trig (and some example drawings) to be solved.

  • Is that FX -multiply added there on puropse? Without it, I think the blend modes work as I'd expect..

    I have no idea what kind of effect you are looking for, but some blend modes depends on opacity of the images.

  • Are you perhaps running out of memory, if that iOS6 device is some older model it may just be unable to handle all the data?

  • Just testing C2 for non-game making. This RPN calculator works on FF and Chrome (+ Android browser) but not on IE (?)

    <img src="https://dl.dropboxusercontent.com/u/258479999/RPNCalc/Calc.jpg" border="0" />

  • Caveat.

    On some systems max() and min() behave just the opposite way one would expect, and I've not tested this to be sure which one is right.

    Otoh, that kind of mistake is usually quite easy to spot.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Limiting the output value should be quite easy with   max(500, 5 * distance (whateve))

    scirra.com/manual/126/system-expressions