[TableList]
Support Types
Type
Description
Parameters
Parameter Name
Arguments
Description
Examples
using System;
using UnityEngine;
using RenownedGames.Apex;
[Serializable]
public class User
{
public string name;
public int age;
public bool isAdmin;
}
public class TableListExample : MonoBehaviour
{
[TableList]
public User[] users;
[TableList(ColumnWidths = new float[] { 100, 50, 0 })]
public User[] customWidthUsers;
}Last updated