-
-
Save todorok1/d44a444565cfa8e6728056b8398dfa3e to your computer and use it in GitHub Desktop.
エディタ上でパーリンノイズによる地形を生成するサンプル
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
using UnityEditor; | |
using UnityEditor.SceneManagement; | |
/// <Summary> | |
/// エディタ上でフィールドを生成するクラスです。 | |
/// </Summary> | |
[CustomEditor(typeof(FieldGenerator))] | |
public class FieldGeneratorEditor : Editor | |
{ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment