sannybuilder / dev

Sanny Builder Bug Tracker and Roadmap development
https://sannybuilder.com
49 stars 0 forks source link

Transform 𝐗 number of TIME to INT #325

Open MatiDragon-YT opened 6 months ago

MatiDragon-YT commented 6 months ago

if you work with time-relative loops, you will need something that helps you to have an easier control of the loops.

A subfix (fps, s, m, h) at the end of the numbers may help.

60fps // 60/1000 = 18ms
3s // 3 second = 3000ms
2m // 2 minutes = 120000ms
1h // 1 hour = 3600000ms

and even more so if a point (.) can be optionally added.

.5s // 500ms
2.5m // 150000ms
etc