dop2000's Recent Forum Activity

  • Why do you want to do this? If you need to change the color of red area, there are much easier ways - you can use "Set color" effect or blend modes.

  • Use "Is touching object" events to move left or right and "On touched object" event to jump. Also, I suggest previewing your project in Chrome, as Firefox doesn't work well with multi-touches.

    See this tutorial:

    scirra.com/tutorials/4973/multi-touch-movement-controls

    .

    If all of the above doesn't help, please post your capx file.

  • Also, to make the final part of the lerp faster you can increase the destination value a bit. So if you want to zoom from 0.5 to 1, instead of this:

    set scale to lerp(layerscale, 1, dt*10)

    do this:

    set scale to min(lerp(layerscale, 1.1, dt*10), 1)

    lerp will be changing the scale to 1.1, but the min() function will stop it at 1.

  • I made a demo for you:

    dropbox.com/s/7g0bhiv1kokxgum/ArrayDemo4.capx

  • On every tick

    If object opacity>35 : Object set opacity to (object.opacity-0.1)

  • "On collision" picks only 1 instance of the object (the one that collided). You need to pick all instances, do this:

    Snake On collision with bonus
    ...(subevent)..System Pick All Snake 
    .......(subevent)..Snake set width to [something]
    

    .

    Another option is to use a function -

    On collision call function "IncreaseSnakeSize"

  • You do not have permission to view this post

  • You do not have permission to view this post

  • You do not have permission to view this post

  • You do not have permission to view this post

  • When you create a family object, a random member of the family is created. So you need to specify which object you want to create.

    Do this:

    Note that DragDrop behavior is enabled by default for all parts.

    Another option is to add an instance variable "type" to the Parts family and do something like this:

    Parts on GragDrop Start
    ...Parts type=24 -> Parts spawn Attack24
    ...Parts type=26 -> Parts spawn Attack26
    ...
    ...
    
  • There are several ways to do this:

    1. Create a dummy object (an empty sprite for example), set it as Global and add No Save behavior. Move all your global variables to instance variables on this sprite.

    2. Save these variables to Local Storage. After loading a saved game, retrieve variables from Local Storage.

dop2000's avatar

dop2000

Member since 26 May, 2016

Twitter
dop2000 has 279 followers

Connect with dop2000

Trophy Case

  • 10-Year Club
  • Entrepreneur Sold something in the asset store
  • Jupiter Mission Supports Gordon's mission to Jupiter
  • Forum Contributor Made 100 posts in the forums
  • Forum Patron Made 500 posts in the forums
  • Forum Hero Made 1,000 posts in the forums
  • Forum Wizard Made 5,000 posts in the forums
  • Forum Unicorn Made 10,000 posts in the forums
  • x5
    Popular Game One of your games has over 1,000 players
  • x2
    Coach One of your tutorials has over 1,000 readers
  • Educator One of your tutorials has over 10,000 readers
  • Regular Visitor Visited Construct.net 7 days in a row
  • Steady Visitor Visited Construct.net 30 days in a row
  • Enduring Visitor Visited Construct.net 90 days in a row
  • Unrelenting Visitor Visited Construct.net 180 days in a row
  • Continuous Visitor Visited Construct.net 365 days in a row
  • RTFM Read the fabulous manual
  • x3
    Quick Draw First 5 people to up-vote a new Construct 3 release
  • x14
    Great Comment One of your comments gets 3 upvotes
  • Delicious Comment One of your comments gets 10 upvotes
  • Email Verified

Progress

30/44
How to earn trophies