R0J0hound's Recent Forum Activity

  • Ok, now I can at least somewhat understand your events. The issue is event 44. To fix change it's condition to "else".

    what happens in that function is:

    if var != 4 then add 1 to var

    if var == 4 then set var to 0

    So if the var is 3 going into the function it will first change to 4 and then set to zero right after.

    The whole event sheet is kind of stretched out. You could simplify it to around 10 events i'd think.

    Edit:

    You're also messing with that frame variable at the end of the "Spawn_Ec_Ships" function. That probably also will cause the same kind of problem.

  • I'm not clear what the issue is. In the initial capx you wanted to create multiple sprites and have each one have a different frame. The solutions you got so far seem to correct that.

    Your Larger capx just creates four different sprites. I can't tell from your descriptions how you want it to want it to work. and in what way the result not correct.

  • There's a variety of ways other programs do it. To most "native" means an exe is produced and the game doesn't run with an interpreted language like javascript. Or in other word the runtime is made in a compiled language.

    Construct classic had a runtime and plugins made from compiled c++ as an exe and dlls. When exporting all game resources were then just put into the exe.

    Gamemaker does something similar as far as I recall. At one point before they added encryption they just put all the game scripts as is inside the exported exe, and the exe would read and run it. It probably does the same now.

    Gdevelop looks to have the option of generating c++ code from the game project and some compiler is used. They may use resource packing as above because a compiler doesn't seem to be required.

    zGameEditor looks to implement it's own compiler that generates an exe directly.

    Godot uses precompiled runtimes that resources are packed into as well.

    Unity may either just pack resources or utilized a c# compiler to generate the exe.

  • link updated

  • marceloborghi

    It works here.

  • ome6a1717

    Put int() around all the values. Numbers with decimals will make it not work.

    ChesVCF

    There should be an action to set the canvas' resolution. That won't resize the image though. For that load the image in a sprite or something, make the sprite size 32x32 and paste it to a canvas of size 32x32.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Here's the example on how to draw an distorted quad with the paster object:

  • jobel

    There's a dropdown to select between rect and polar. Select polar and set the angle to shooter.angle and dist to 500.

    For the bouncing adjust the friction. High friction absorbs perpendicular motion on a bounce.

  • link fixed

  • How?

    You add a tilemap object just like you add a Sprite. Then with the tilemap toolbar you can place tiles on the tilemap. Finally to make it an obsticle you add the solid behavior to it.

    That's how I work with it. If that doesn't cover what you want to do, please be more specific.

  • Fiddle with 99's other ideas then.

    The most manual way would be to add additional variables that have the original position and variable values in them. Then to reset you set set the positions and variables from that.

R0J0hound's avatar

R0J0hound

Member since 15 Jun, 2009

Twitter
R0J0hound has 157 followers

Connect with R0J0hound