feat: add Start/StopEmission API for UIParticle

close #240
pull/289/head
mob-sakai 2023-08-15 09:52:16 +09:00
parent 68d9925a16
commit e4998365c9
1 changed files with 18 additions and 0 deletions

View File

@ -219,6 +219,24 @@ namespace Coffee.UIExtensions
particles.Exec(p => p.Stop());
isPaused = true;
}
public void StartEmission()
{
particles.Exec(p =>
{
var emission = p.emission;
emission.enabled = true;
});
}
public void StopEmission()
{
particles.Exec(p =>
{
var emission = p.emission;
emission.enabled = false;
});
}
public void Clear()
{