123456789101112131415161718192021222324 |
- using UnityEngine;
- using System.Collections;
- using System.Collections.Generic;
- public class FlowerItemLabel
- {
- public static string Arrow0 = "Arrow0";
- public static string Lab = "Lab";
- public static string Icon = "Icon";
- public static string FlowerItem = "FlowerItem";
- public static string UIParticleSystem = "UIParticle System";
- public static string AmtLab = "AmtLab";
- public static string UIFlash = "UIFlash";
- }
- public class FlowerItem : MonoBehaviour
- {
- public void OnDisable()
- {
- transform.GetChild(0).GetChild(0).SetActive(false);
- transform.GetChild(0).GetChild(1).SetActive(false);
- }
- }
|