28 lines
455 B
C#
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()
|
|
{
|
|
|
|
}
|
|
}
|