mirror of
https://github.com/RHeavenStudio/HeavenStudio.git
synced 2025-06-12 08:27:40 +02:00
Fan Club: more animations
This commit is contained in:
20
Assets/Scripts/Games/FanClub/NtrIdolAri.cs
Normal file
20
Assets/Scripts/Games/FanClub/NtrIdolAri.cs
Normal file
@ -0,0 +1,20 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
public class NtrIdolAri : MonoBehaviour
|
||||
{
|
||||
[Header("Objects")]
|
||||
public ParticleSystem idolClapEffect;
|
||||
public ParticleSystem idolWinkEffect;
|
||||
|
||||
public void ClapParticle()
|
||||
{
|
||||
idolClapEffect.Play();
|
||||
}
|
||||
|
||||
public void WinkParticle()
|
||||
{
|
||||
idolWinkEffect.Play();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user