[펌] Unity Timers
We may decide to execute a function not right now, but at a certain time later. That’s called “scheduling a call”. The Timers class helps you to do so with a clean and short syntax without having to worry about enumerators.
Installation · Documentation · License
Made with ♥ by Jeffrey Lanters
Installation
Using the Unity Package Manager
Install the latest stable release using the Unity Package Manager by adding the following line to your manifest.json file located within your project's Packages directory, or by adding the Git URL to the Package Manager Window inside of Unity.
"nl.elraccoone.timers": "git+https://github.com/jeffreylanters/unity-timers"
Using OpenUPM
The module is availble on the OpenUPM package registry, you can install the latest stable release using the OpenUPM Package manager's Command Line Tool using the following command.
openupm add nl.elraccoone.timers
Documentation
Syntax
using ElRaccoone.Timers;
Timers.SetTimeout(/* miliseconds */ 1000, /* callback */ () => { /* ... */ });
Timers.SetInterval(/* miliseconds */ 1000, /* callback */ () => { /* ... */ });
Description
We may decide to execute a function not right now, but at a certain time later. That’s called “scheduling a call”. Note that the timers are using unscaled time.
There are two methods for it:
- setTimeout allows to run a function once after the interval of time.
- setInterval allows to run a function regularly with the interval between the runs.
Examples
public class MyClass {
private void Awake () {
Timers.SetTimeout(1000, () => {
Debug.Log("A second has passed!");
});
Timers.SetTimeout(1000, Notifiy);
Timers.SetInterval(2500, Notifiy);
}
private void Notify () {
Debug.Log("Notify!!");
}
}
[출처] https://openupm.com/packages/nl.elraccoone.timers/#installation
'Unity3D > Plugins' 카테고리의 다른 글
[Package] Unity Quick Search (0) | 2022.02.18 |
---|---|
[링크] UniTask (0) | 2022.01.11 |
[펌] Unity Bezier Solution (0) | 2021.10.12 |
[에셋] I2 Localization(Android/iOS app_name Localization) (0) | 2021.02.25 |
[링크] 유니티 Easy Save 정리 (2) | 2020.04.03 |