UIAMLayaoutGrid.cs 708 B

1234567891011121314151617181920212223242526272829303132
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. namespace MetaClient
  5. {
  6. public class UIAMLayaoutGrid : MonoBehaviour
  7. {
  8. public int line = 0;
  9. public int column = 0;
  10. public float childWidth = 10;
  11. public float childHeight = 10;
  12. public List<int> data = new List<int>();
  13. public List<GameObject> objs = new List<GameObject>();
  14. public GameObject Item;
  15. public float parWidth = 0;
  16. public float parHeight = 0;
  17. // Start is called before the first frame update
  18. void Start()
  19. {
  20. }
  21. // Update is called once per frame
  22. void Update()
  23. {
  24. }
  25. }
  26. }