private void OnServerCommand()
{
timer.Every(3f, () =>
{
Puts("Test message");
});
}
I want it to perform a function within the specified delay interval, but it transmits the same message repeatedly after the timeout expires
private void OnServerCommand()
{
timer.Every(3f, () =>
{
Puts("Test message");
});
}
I want it to perform a function within the specified delay interval, but it transmits the same message repeatedly after the timeout expires
private void OnServerCommand()
{
timer.Once(10f, () =>
{
Puts("TEST");
});
}
}
result:https://imgyukle.com/i/sa.RvJd3n