billym's Forum Posts

  • 4 posts
  • Is there any chance this is a defect with the object?

  • Your wish is my command <img src="smileys/smiley42.gif" border="0" align="middle" />

    docs.google.com/open

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Regardless of how I create the particle I am unable to set the instance properties.

    I tested this by simply doing the following with no success:

    Create:

    keyboard object

    color1 particle object(rate:0 type:oneshot resize:4x4 paint:red)

    event: keyboard->On "T" pressed->

    action:Create Object "color1"

    action:color1->Set rate to 50

    event: color1->On created->

    action:color1->Set rate to 50

  • here is my setup, I need to randomize the color and rate of the particles, the colors are randomized but the rate never changes:

    Create:

    keyboard object

    color1_particle object(type:oneshot resize:4x4 paint:red)

    color2_particle object(type:oneshot resize:4x4 paint:green)

    color3_particle object(type:oneshot resize:4x4 paint:blue)

    color4_particle object(type:oneshot resize:4x4 paint:yellow)

    family "particles" contains:

    color1_particle

    color2_particle

    color3_particle

    color4_particle

    event: keyboard->On "T" pressed->

    action:Create Object "particles"

    action:particles->Set rate to floor(random(2,100))

  • 4 posts