Newer
Older
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
[System.Serializable]
public struct Octave
{
float perlinScale;
float perlinHeight;
}
public class TerrainGenerator : MonoBehaviour
{
public Terrain terrain;
private void Start()
{
}
}