ActionCardSelector.cs 686 B

12345678910111213141516171819202122232425262728293031
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using UnityEngine.UI;
  5. public class ActionCardSelector : MonoBehaviour
  6. {
  7. public List<Texture> cards; // Start is called before the first frame update
  8. public GameObject cardTexture;
  9. void Start()
  10. {
  11. }
  12. // Update is called once per frame
  13. void Update()
  14. {
  15. }
  16. public void SelectCard()
  17. {
  18. int randomAction = Random.Range(0, cards.Count);
  19. RawImage m_RawImage = cardTexture.GetComponent<RawImage>();
  20. //Change the Texture to be the one you define in the Inspector
  21. m_RawImage.texture = cards[randomAction];
  22. }
  23. }