2025-01-26 21:10:16 -05:00
|
|
|
using System.Collections;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using Sirenix.OdinInspector;
|
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
|
|
[CreateAssetMenu(fileName = "BasePrefabsCollection", menuName = "Ichni/BasePrefabsCollection", order = 0)]
|
|
|
|
|
public class BasePrefabsCollection : SerializedScriptableObject
|
|
|
|
|
{
|
|
|
|
|
[Title("基础预制体")]
|
|
|
|
|
public GameObject emptyObject;
|
|
|
|
|
public GameObject elementFolder;
|
2025-01-27 10:29:38 -05:00
|
|
|
|
|
|
|
|
[Title("Track相关")]
|
2025-01-26 21:10:16 -05:00
|
|
|
public GameObject track;
|
|
|
|
|
public GameObject pathNode;
|
2025-01-27 10:29:38 -05:00
|
|
|
public Material defaultTrackMaterial;
|
2025-01-27 22:11:24 -05:00
|
|
|
|
|
|
|
|
[Title("Effect相关")]
|
|
|
|
|
public GameObject bloomShake;
|
2025-01-26 21:10:16 -05:00
|
|
|
}
|