1234567891011121314151617 |
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- using UnityEngine.UI;
- using UnityGameFramework.Runtime;
- /// <summary>
- /// 场景组件 减速带 渗水池 进入增加buff 离开移除buff
- /// </summary>
- public class SceneEventSeepbump : MonoBehaviour
- {
- public void Start()
- {
- AssemblyHelper.Instance.BindScript("SceneEventSeepbumpLogic", this.gameObject);
- }
- }
|