我说次元斩

This commit is contained in:
SoulliesOfficial
2026-06-13 18:43:40 -04:00
parent 6d7ebc5825
commit a024305799
95 changed files with 138226 additions and 5191 deletions

View File

@@ -15,8 +15,12 @@ namespace Cielonos.MainGame
[DictionaryDrawerSettings(KeyLabel = "VFX Name", DisplayMode = DictionaryDisplayOptions.ExpandedFoldout)]
[Searchable]
public OrderedDictionary<string, VFXUnit> collection = new OrderedDictionary<string, VFXUnit>();
public VFXUnit Get(string effectName) => collection[effectName];
public VFXUnit Get(string effectName)
{
if (string.IsNullOrEmpty(effectName)) return null;
return collection.GetValueOrDefault(effectName);
}
}
public partial class VFXData