using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEditor; public class TreeInstanceComponent : MonoBehaviour { // Start is called before the first frame update public List position = new List(); public List widthScale = new List(); public List heightScale = new List(); public List rotation = new List(); public List Prefab = new List(); void Start() { } // Update is called once per frame void Update() { } }