19 lines
247 B
C#
19 lines
247 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
[Serializable]
|
|
public class treeInstance_class
|
|
{
|
|
public Vector3 position;
|
|
|
|
public float widthScale;
|
|
|
|
public float heightScale;
|
|
|
|
public Color color;
|
|
|
|
public Color lightmapColor;
|
|
|
|
public int prototypeIndex;
|
|
}
|