16 lines
350 B
C#
16 lines
350 B
C#
/* INFINITY CODE */
|
|
/* https://infinity-code.com */
|
|
|
|
using UnityEngine;
|
|
|
|
namespace InfinityCode.RealWorldTerrain
|
|
{
|
|
[ExecuteInEditMode]
|
|
public class RealWorldTerrainDynamicBuilding : RealWorldTerrainBuilding
|
|
{
|
|
private void Awake()
|
|
{
|
|
if (baseVertices != null) Generate();
|
|
}
|
|
}
|
|
} |