hch
3 天以前 4b25281b33f386b8c86b32340b684ae34402f7e5
Main/Component/UI/Effect/UIEffectPlayer.cs
@@ -24,7 +24,7 @@
    public void PlayByArrIndex(int index, bool showLog = true, bool closePMA = false)
    {
        var config = EffectConfig.Get(effectId);
        playSpineAnimIndex = config.animIndex[index];
        playSpineAnimIndex = index < config.animIndex.Length ? config.animIndex[index] : 0;
        PlayAsync(showLog, closePMA).Forget();
    }