HistoryController.cs 964 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using UnityEngine;
  5. using UnityEngine.UI;
  6. /// <summary>
  7. /// отмена создания стены, маяка, зоны
  8. /// </summary>
  9. public class HistoryController : MonoBehaviour
  10. {
  11. public Button redo;
  12. public Button undo; // отмена
  13. public List<History> histories = new List<History>();
  14. // Start is called before the first frame update
  15. void Start()
  16. {
  17. undo.onClick.AddListener(Undo);
  18. }
  19. // Update is called once per frame
  20. void Update()
  21. {
  22. }
  23. void Undo() {
  24. var last = histories.Last();
  25. last.obj.SetActive(false);
  26. last.ButtonPanel.SetActive(false);
  27. last.status = false;
  28. }
  29. public void EventHistory(uint id, GameObject gameObject, GameObject panel)
  30. {
  31. histories.Add(new History { id = id, obj = gameObject, ButtonPanel = panel, status = true });
  32. }
  33. }