Files
BITFALL/Assets/Polaris - Low Poly Ecosystem/Polaris - Low Poly Terrain Engine/Runtime/Scripts/PaintTool/GeometryTexturePainters/IGTexturePainterWithLivePreview.cs
CortexCore 84ea82581f 1
2023-12-30 17:37:48 +08:00

10 lines
227 B
C#

using UnityEngine;
namespace Pinwheel.Griffin.PaintTool
{
public interface IGTexturePainterWithLivePreview
{
void Editor_DrawLivePreview(GStylizedTerrain terrain, GTexturePainterArgs args, Camera cam);
}
}