Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- using System;
- using SUISS.Core;
- using SUISSEngine;
- using UnityEngine;
- using UnityEngine.UI;
-
- public class LevelGridTileIcon : GridTileIcon
- {
- public void SetLevel(int level)
- {
- this._levelImage.sprite = SingletonMonobehaviour<LevelSpriteAssetCollection>.Instance.GetAsset(level);
- }
-
- [SerializeField]
- private Image _levelImage;
- }
|