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-28 00:25:23 -05:00
|
|
|
[Title("Effect相关")]
|
2025-02-26 22:54:53 -05:00
|
|
|
public GameObject bloomEffect;
|
|
|
|
|
public GameObject cameraShakeEffect;
|
|
|
|
|
public GameObject chromaticAberrationEffect;
|
|
|
|
|
public GameObject vignetteEffect;
|
2025-02-12 18:46:46 -05:00
|
|
|
|
2025-02-21 01:03:01 -05:00
|
|
|
[Title("Inspector相关")]
|
2025-03-01 01:20:40 +08:00
|
|
|
public GameObject inspectorSecondaryWindow;
|
|
|
|
|
|
2025-02-21 01:03:01 -05:00
|
|
|
[Title("DynamicUI相关-Simple")]
|
|
|
|
|
public GameObject dynamicUIContainer;
|
2025-02-28 00:25:23 -05:00
|
|
|
public GameObject inputField;
|
|
|
|
|
public GameObject vector3InputField;
|
|
|
|
|
public GameObject parameterText;
|
2025-02-18 10:30:11 -05:00
|
|
|
public GameObject hintText;
|
2025-02-12 18:46:46 -05:00
|
|
|
public GameObject button;
|
|
|
|
|
public GameObject toggle;
|
2025-02-18 10:30:11 -05:00
|
|
|
public GameObject enumDropdown;
|
2025-02-17 14:46:14 -05:00
|
|
|
public GameObject stringListDropdown;
|
2025-02-13 02:04:41 -05:00
|
|
|
public GameObject baseColorPicker;
|
|
|
|
|
public GameObject emissionColorPicker;
|
|
|
|
|
[Title("DynamicUI相关-Composite")]
|
|
|
|
|
public GameObject compositeParameterWindow;
|
2025-02-28 00:25:23 -05:00
|
|
|
public GameObject inputFieldUnit;
|
2025-02-13 14:26:37 -05:00
|
|
|
public GameObject animatedFloatUnit;
|
|
|
|
|
public GameObject animatedIntUnit;
|
|
|
|
|
public GameObject animatedBoolUnit;
|
2025-02-28 00:25:23 -05:00
|
|
|
public GameObject customCurveKeyframeUnit;
|
|
|
|
|
public GameObject customCurveWrapModeUnit;
|
2025-03-01 01:20:40 +08:00
|
|
|
[Title("图形化动画编辑器")]
|
|
|
|
|
public GameObject graphicalFlexibleFloatWindow;
|
|
|
|
|
|
|
|
|
|
//采音器
|
|
|
|
|
|
|
|
|
|
[Title("Background相关")]
|
2025-02-17 14:46:14 -05:00
|
|
|
public Sprite defaultBackground;
|
|
|
|
|
public Material defaultSkyboxMaterial;
|
2025-01-26 21:10:16 -05:00
|
|
|
}
|