playMaker

Author Topic: Gradually Speed up Object?  (Read 2210 times)

mikosd

  • Playmaker Newbie
  • *
  • Posts: 7
Gradually Speed up Object?
« on: October 07, 2016, 08:11:50 PM »
Hi there, anyone can help me about this problem?

So I have falling objects, and each time I collect an object is equal to 1 pt. and when the time I reach 20 pt. the speed of the object will gradually get faster..

So which actions do I need to use to gradually speed up the objects?

Thanks,

djaydino

  • Administrator
  • Hero Member
  • *****
  • Posts: 7618
    • jinxtergames
Re: Gradually Speed up Object?
« Reply #1 on: October 08, 2016, 03:28:27 AM »
Hi,
You could use set velocity and have a float multiplier using current speed X 1.1 and loop this ever 20pt or every 10sec or so

or a float add and use a certain value to add ever 20pt or every 10sec or so

dudebxl

  • Hero Member
  • *****
  • Posts: 602
Re: Gradually Speed up Object?
« Reply #2 on: October 08, 2016, 10:00:03 AM »
... And if you want full control of velocity check this out:http://hutonggames.com/playmakerforum/index.php?topic=10600.0

mikosd

  • Playmaker Newbie
  • *
  • Posts: 7
Re: Gradually Speed up Object?
« Reply #3 on: October 12, 2016, 04:42:06 PM »
Thanks, I will gonna try them. thankyou!