NugMan's Forum Posts

  • Problem is that not everyone's graphics card is the greatest, and importing this way can leave artifacts.

    This is the aspect i've missed. anyway if i'll get positive feedback on this problem after release i'll rewrite some parts. Thanks for advice.

  • Have you tried Luomu's Dungeon/maze generator plugin.

    Yes, and must say it's a great plugin Luomu, but in my case particually, quadtree is definetly 2x better

  • Help me someone. Stuck in it for couples of days, no luck.

    Here's wiki description of quadtree http://en.wikipedia.org/wiki/Quadtree

  • So it seems that OR'ed comparisons with numbers are working unreliable?

    I've got issues even with string comparsion, imo it's about OR in all cases - unstableness)

  • Check deadeye's Platform School, great tutorial

    http://dl.dropbox.com/u/9498285/Platform%20School.zip

  • and there's no way to set the background to alpha.

    You can use images with alpha defined alreay, like png24, gif.

  • So you opened new construct, saved new app, then alt-tabbed to first construct and save is working? Cant understand, its my bad english. I have this error a couple of times.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • > Copy-Paste sprite to new app

    >

    Don't copy/paste between .caps. It's an unfinished feature and can seriously mess up your .cap.

    Ok then give me any solution when you cap just wont work, for ex. any deleting or clicking preview always crashes program? And when you cant save your file cause you get verifying error? This unfinished feature is the only way in some cases. Btw using last 99.95

  • Check a couple of tutorials provided on site, and all will be just a little easier to understand.

  • I also had issues with OR. For ex.

    If x greater or equal 1

    or

    if x lower or equal -1

    It could work or not, it's really unstable. And when you have too much OR in one event. Later I've decided to change it on structure:

    if xxx - then do xxx

    else if xxy - do xxy

    else if xyx - do xyx

    else if...

    and so on.

  • Create angles for each direction in the animation (at least for one half, and check "mirror").

  • I'm trying to write dungeon generator based on bsp tree (http://roguebasin.roguelikedevelopment.org/index.php?title=Basic_BSP_Dungeon_generation) but to partition into 4 parts each step (1 horiz and 1 vert line, total 4 rooms).

    I'm defining a point in which i'll cut layout into 4 segments by horizontal and vertical cut.

    Then each cutted Layout piece will be cutted again, into 4 segments and so on until i'll get small roms. Cant get it work. Maybe anyone can provide me an example of BSP tree-based generator or something?

    I'm working on roguelike without diagonal movement (for netbooks or notebooks without numpad as mine vaio notebook). So i need this generator, cause it has straight corridors and square rooms - ideal for 4-ways moving.

    Someone... anyone?

  • Copy-Paste sprite to new app, see what happens, maybe just a bug, i have my current project resources copy-pasting into a new app every 2-3 days cause of errors)

  • I needed to copy the MouseKeyboard object over to each layout I wanted to use it in

    Just make it global in common properties

  • Maybe im not answering on your question, anyway, here's couple of thoughts:

    Is it normal that if i pressed jump only for a moment, and before i am again on the ground my speed is 150,200 again, right in the air?

    And for animation of running - in classic Mario games your animation speed start growing up as you gaining speed, and in your case to get animation run i need to hold shift at least for 2 seconds?

    If your animation of walking and jumping is the same, only anim.speed is vary, why dont you use only walk animation, with condition like "animspeed=mario speed/100(or 200,300, any other)"?