Track Percent Point 和 Track Head Point 重构优化 Note基础 特效框架(Effect Submodule 和 Effect基础类),将用于“时间触发型特效容器”与“Note特效容器“
16 lines
320 B
C#
16 lines
320 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace Ichni.RhythmGame
|
|
{
|
|
public class EffectSubmodule : SubmoduleBase
|
|
{
|
|
public List<EffectBase> effectList;
|
|
}
|
|
|
|
public abstract class EffectBase
|
|
{
|
|
public abstract void Execute();
|
|
}
|
|
} |