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ů.
 
 
 

17 řádky
350 B

  1. using System;
  2. using SUISS.Core;
  3. using SUISSEngine;
  4. using UnityEngine;
  5. using UnityEngine.UI;
  6. public class LevelGridTileIcon : GridTileIcon
  7. {
  8. public void SetLevel(int level)
  9. {
  10. this._levelImage.sprite = SingletonMonobehaviour<LevelSpriteAssetCollection>.Instance.GetAsset(level);
  11. }
  12. [SerializeField]
  13. private Image _levelImage;
  14. }