[Solved] Time delta without points, rounding value

Hi does anyone know how to set a time delta without points in a varaible?
it goes this way:
10.95959595
9.494646
8.664
it must be:
10
9
8

Thanks in advance <3

Hi!
You can use this expression:
floor(number)
Round number down to an integer
number Expression

sorry I don’t understand. Can you give me an example event? thank you!

Just put TimeDelta() in floor or round brackets.

Examples:

round(TimeDelta())
floor(TimeDelta())