2025-01-26 21:10:16 -05:00
|
|
|
using System.Collections;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using Sirenix.OdinInspector;
|
|
|
|
|
using UnityEngine;
|
2025-02-13 02:04:41 -05:00
|
|
|
using UnityEngine.Serialization;
|
2025-01-26 21:10:16 -05:00
|
|
|
|
|
|
|
|
[CreateAssetMenu(fileName = "BasePrefabsCollection", menuName = "Ichni/BasePrefabsCollection", order = 0)]
|
|
|
|
|
public class BasePrefabsCollection : SerializedScriptableObject
|
|
|
|
|
{
|
2025-02-12 18:46:46 -05:00
|
|
|
[Title("基础预制体")] public GameObject emptyObject;
|
2025-01-26 21:10:16 -05:00
|
|
|
public GameObject elementFolder;
|
2025-01-29 23:49:18 -05:00
|
|
|
public GameObject gameCamera;
|
2025-02-12 18:46:46 -05:00
|
|
|
|
|
|
|
|
[Title("Track相关")] public GameObject track;
|
2025-01-26 21:10:16 -05:00
|
|
|
public GameObject pathNode;
|
2025-01-27 10:29:38 -05:00
|
|
|
public Material defaultTrackMaterial;
|
2025-02-12 18:46:46 -05:00
|
|
|
|
|
|
|
|
[Title("Trail相关")] public GameObject trail;
|
2025-02-02 08:34:54 -05:00
|
|
|
public Material defaultTrailMaterial;
|
2025-01-27 22:11:24 -05:00
|
|
|
|
2025-02-12 18:46:46 -05:00
|
|
|
[Title("Note 相关")] public GameObject tapNote;
|
2025-01-28 11:58:39 -05:00
|
|
|
public GameObject stayNote;
|
|
|
|
|
public GameObject holdNote;
|
|
|
|
|
public GameObject flickNote;
|
|
|
|
|
public AudioClip tapNoteSound;
|
|
|
|
|
public AudioClip stayNoteSound;
|
|
|
|
|
public AudioClip holdNoteStartSound;
|
|
|
|
|
public AudioClip holdNoteLoopSound;
|
|
|
|
|
public AudioClip holdNoteEndSound;
|
|
|
|
|
public AudioClip flickNoteSound;
|
2025-02-02 08:34:54 -05:00
|
|
|
|
2025-02-12 18:46:46 -05:00
|
|
|
[Title("Effect相关")] public GameObject bloomShake;
|
|
|
|
|
|
2025-02-13 02:04:41 -05:00
|
|
|
[Title("DynamicUI相关-Simple")] public GameObject dynamicUIContainer;
|
2025-02-11 22:58:56 -05:00
|
|
|
public GameObject inputField;
|
2025-02-13 02:04:41 -05:00
|
|
|
public GameObject Vector3inputField;
|
2025-02-12 00:01:23 -05:00
|
|
|
public GameObject text;
|
2025-02-12 18:46:46 -05:00
|
|
|
public GameObject button;
|
|
|
|
|
public GameObject toggle;
|
2025-02-17 14:46:14 -05:00
|
|
|
[FormerlySerializedAs("dropdown")] public GameObject enumDropdown;
|
|
|
|
|
public GameObject stringListDropdown;
|
2025-02-13 02:04:41 -05:00
|
|
|
public GameObject baseColorPicker;
|
|
|
|
|
public GameObject emissionColorPicker;
|
|
|
|
|
[Title("DynamicUI相关-Composite")]
|
|
|
|
|
public GameObject compositeParameterWindow;
|
|
|
|
|
public GameObject stringUnit;
|
2025-02-13 14:26:37 -05:00
|
|
|
public GameObject animatedFloatUnit;
|
|
|
|
|
public GameObject animatedIntUnit;
|
|
|
|
|
public GameObject animatedBoolUnit;
|
2025-02-17 14:46:14 -05:00
|
|
|
|
|
|
|
|
[Title("Background相关")]
|
|
|
|
|
public Sprite defaultBackground;
|
|
|
|
|
public Material defaultSkyboxMaterial;
|
2025-01-26 21:10:16 -05:00
|
|
|
}
|