You've already forked ParticleEffectForUGUI
mirror of
https://github.com/mob-sakai/ParticleEffectForUGUI.git
synced 2026-05-14 12:10:08 +00:00
12 lines
188 B
C#
12 lines
188 B
C#
using UnityEngine;
|
|
|
|
namespace Coffee.UIExtensions.Demo
|
|
{
|
|
public class UIParticle_Demo : MonoBehaviour
|
|
{
|
|
public void SetTimeScale(float scale)
|
|
{
|
|
Time.timeScale = scale;
|
|
}
|
|
}
|
|
} |