grass-rendering-prototype/Assets/TerrainTool/GrasField2.cs
2025-09-02 15:42:46 +02:00

28 lines
455 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class GrasField2 : MonoBehaviour
{
Texture2D GrasFieldTexture;
// Start is called before the first frame update
void OnEnable()
{
GrasFieldTexture = new Texture2D(16, 16, TextureFormat.Alpha8, false);
}
void PaintOnGrasField(Vector2 pos)
{
}
// Update is called once per frame
void Update()
{
}
}