first commit

This commit is contained in:
2026-04-07 03:14:32 +03:00
commit b3992fec6b
1026 changed files with 366769 additions and 0 deletions

15
Assets/Scripts/UIText.cs Normal file
View File

@@ -0,0 +1,15 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class UIText : MonoBehaviour
{
[SerializeField] private float _yRotation = -180f;
[SerializeField] private float _xRotation = 53.483f;
void LateUpdate()
{
transform.rotation = Quaternion.Euler(_xRotation, _yRotation, 0f);
}
}