备份CatanBuilding瘦身独立工程

This commit is contained in:
JSD\13999
2026-05-26 16:15:54 +08:00
commit 2d0e6a61b7
12001 changed files with 2431925 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
using UnityEngine;
[CreateAssetMenu(fileName = "EventLuckMagicParamsCtrl", menuName = "ScriptableObjects/EventParamsCtrl/LuckMagic")]
public class EventLuckMagicParamsCtrl : ScriptableObject
{
public float OuterIntervalMin = 0.1f;
public float OuterIntervalMax = 0.8f;
public int OuterExtraLoopCount = 1;
public AnimationCurve OuterIntervalLerpCurve;
public int MiddleExtraLoopCount = 2;
public float InnerIntervalMin = 0.2f;
public float InnerIntervalMax = 0.9f;
public int InnerExtraLoopCount = 2;
public AnimationCurve InnerIntervalLerpCurve;
public float RewardPopupPanelCloseDelay = 1f;
}