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;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|