unity adding to list code example
Example 1: unity add sections to a list
using UnityEngine;public class Example : MonoBehaviour
{
[Header("Health Settings")]
public int health = 0;
public int maxHealth = 100; [Header("Shield Settings")]
public int shield = 0;
public int maxShield = 0;
}
Example 2: how to add object to list in javascript
var a=[]
var b={};
a.push(b);