基础内容-5

主题包;
测试NoteVisual与NoteEffect;
LookAt旋转动画与FlexibleBool
动画杂项
控制台初步
This commit is contained in:
SoulliesOfficial
2025-01-29 23:49:18 -05:00
parent 7520983b20
commit 39b4a5e7ff
102 changed files with 3492 additions and 261 deletions

View File

@@ -9,6 +9,7 @@ public class BasePrefabsCollection : SerializedScriptableObject
[Title("基础预制体")]
public GameObject emptyObject;
public GameObject elementFolder;
public GameObject gameCamera;
[Title("Track相关")]
public GameObject track;

View File

@@ -34,6 +34,11 @@ namespace Ichni
t0.AfterInitialize();
}
private void Update()
{
songModule.songTime += Time.deltaTime;
}
}
public class SongModule

View File

@@ -3,6 +3,7 @@ using System.Collections.Generic;
using System.Linq;
using UnityEngine;
using UnityEngine.Networking;
using UnityEngine.Serialization;
namespace Ichni
{
@@ -123,20 +124,23 @@ namespace Ichni
[System.Serializable]
public class ThemeBundleAbstract
{
public string themeBundleName;
public string fileName;
public string displayName;
public string description;
public List<string> tags;
public string iconPath;
public ThemeBundleAbstract()
{
}
public ThemeBundleAbstract(string themeBundleName, List<string> tags, string iconPath)
public ThemeBundleAbstract(string fileName)
{
this.themeBundleName = themeBundleName;
this.tags = tags;
this.iconPath = iconPath;
this.fileName = fileName;
this.displayName = fileName;
this.description = "Default Description";
this.tags = new List<string>();
this.iconPath = "Icons/Default.png";
}
public Texture2D GetIcon()