Files
ichni_Creator_Studio/Assets/Scripts/GameElements/Notes/NoteVisual/NoteVisualBase.cs
SoulliesOfficial 39b4a5e7ff 基础内容-5
主题包;
测试NoteVisual与NoteEffect;
LookAt旋转动画与FlexibleBool
动画杂项
控制台初步
2025-01-29 23:49:18 -05:00

23 lines
580 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;
public void NewInitialize(NoteBase note)
{
base.NewInitialize(note.elementName + " Note Visual");
this.note = note;
}
}
}