InformationSaveAndAudioCore_Over

This commit is contained in:
Han
2025-03-26 09:34:52 +08:00
parent 93531fdabf
commit 4f6edd606d
87 changed files with 2083 additions and 555 deletions

View File

@@ -0,0 +1,12 @@
using UnityEngine;
namespace Stary.Evo.InformationSave
{
public static class TrailRendererExtension
{
public static TrailRendererInfo.Information GetTrailRendererInformation(this Transform tf, string desc)
{
return tf.GetComponent<TrailRendererInfo>()._list.Find(n => n.desc == desc);
}
}
}