Firstborn/Library/PackageCache/com.unity.terrain-tools@4.0.5/Editor/TerrainTools/Erosion/Eroder.cs
Schaken-Mods 4ff395c862 Finished the NPC Creator tool
Finished the NPC Creator tool
2023-04-27 18:37:28 -05:00

15 lines
382 B
C#

using UnityEngine;
using System.Collections.Generic;
namespace UnityEditor.TerrainTools
{
internal interface ITerrainEroder
{
void OnEnable();
void ErodeHeightmap(RenderTexture dest, Vector3 terrainDimensions, Rect domainRect, Vector2 texelSize, bool invertEffect = false);
Dictionary<string, RenderTexture> inputTextures { get; set; }
}
}