Files
ichni_Creator_Studio/Assets/Scripts/GameElements/Notes/NoteVisual/NoteVisualBase.cs
SoulliesOfficial efca87e9cd 基础内容-7
Trail
完整Note
2025-02-02 08:34:54 -05:00

17 lines
399 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace Ichni.RhythmGame
{
public class NoteVisualBase : SubstantialObject
{
public NoteBase note;
public GameObject noteMain;
public GameObject judgeEffect;
public List<GameObject> notePartList;
public List<GameObject> effectPartList;
}
}