Files
ichni_Creator_Studio/Assets/Scripts/GameElements/Notes/NoteVisual/NoteVisualBase.cs

23 lines
577 B
C#
Raw Normal View History

2025-01-28 12:05:21 -05:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace Ichni.RhythmGame
2025-01-28 12:05:21 -05:00
{
public class NoteVisualBase : SubstantialObject
2025-01-28 12:05:21 -05:00
{
public NoteBase note;
2025-01-28 12:05:21 -05:00
public GameObject noteMain;
public GameObject judgeEffect;
2025-01-28 12:05:21 -05:00
public List<GameObject> notePartList;
public List<GameObject> effectPartList;
2025-01-28 12:05:21 -05:00
public void NewInitialize(NoteBase note)
{
base.Initialize(note.elementName + " Note Visual");
this.note = note;
}
2025-01-28 12:05:21 -05:00
}
}