mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-11 04:05:11 +00:00
19 lines
377 B
C#
19 lines
377 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
using RhythmHeavenMania.Util;
|
||
|
namespace RhythmHeavenMania.Games.BuiltToScaleDS
|
||
|
{
|
||
|
public class BTSPiece : MonoBehaviour
|
||
|
{
|
||
|
public Animator anim;
|
||
|
|
||
|
void LateUpdate()
|
||
|
{
|
||
|
if (anim.IsAnimationNotPlaying())
|
||
|
Destroy(gameObject);
|
||
|
}
|
||
|
}
|
||
|
}
|