I'm trying to get the engine release time using Koala's Engine Math functions, but apparently they don't take variables as input. Wouldn't it be possible to do something like this?
$Rel_Time := E2V.DRTime(get_engine_par($ENGINE_PAR_RELEASE,0,0,-1))
These functions were created exactly to do what you described. However the output of the E2V.DRTime function is a real number, your $Rel_Time variable is integer so this example would not work.
Perfect! Thank you so much!