playMaker

Author Topic: How to calculat value of Time.deltaTime * 5.0f on Playmaker  (Read 1473 times)

playmakertester

  • Full Member
  • ***
  • Posts: 211
How to calculat value of Time.deltaTime * 5.0f on Playmaker
« on: February 03, 2021, 07:21:43 AM »
Hello there.
I'd like to input Time.deltaTime multiplied by 5.0f as the content of the third argument of Vector3.Leap.

Time.deltaTime doesn't seem to be in Playmaker, but how can I calculate Time.deltaTime*5.0f in Playmaker?

Broken Stylus

  • Beta Group
  • Hero Member
  • *
  • Posts: 773
Re: How to calculat value of Time.deltaTime * 5.0f on Playmaker
« Reply #1 on: February 03, 2021, 10:01:17 AM »
If there is no action, try downloading the Ecosystem first and look for anything related to time.
For example there's a custom action that's called Get Time Scale that provides two values, one of which is Fixed delta time.

Alex Chouls

  • Administrator
  • Hero Member
  • *****
  • Posts: 4002
  • Official Playmaker Support
    • LinkedIn
Re: How to calculat value of Time.deltaTime * 5.0f on Playmaker
« Reply #2 on: February 03, 2021, 04:07:44 PM »
You can use Get Time Info to get Time.deltaTime:
https://hutonggames.fogbugz.com/f/page?W496

playmakertester

  • Full Member
  • ***
  • Posts: 211
Re: How to calculat value of Time.deltaTime * 5.0f on Playmaker
« Reply #3 on: February 12, 2021, 07:10:33 AM »
Thanks Alex and Stylus!

Let me check it!