update sample

This commit is contained in:
Kirill Chikalin
2025-02-13 17:50:04 +03:00
parent 275dc598c7
commit bd35a522da
242 changed files with 940850 additions and 33728 deletions

View File

@@ -0,0 +1,14 @@
using UnityEngine;
namespace space.chikalin.textdecal
{
public class Rotator : MonoBehaviour
{
[Range(1f, 100f)] public float speed = 30f;
private void Update()
{
transform.Rotate(Vector3.up, Time.deltaTime * speed);
}
}
}