This commit is contained in:
2026-02-21 11:06:54 +01:00
parent a04ce40779
commit a73f75ffa4
7 changed files with 1862 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
using UnityEngine;
//clankr
public class RotaceZeme : MonoBehaviour
{
public float rychlost = 20f;
// Start is called once before the first execution of Update after the MonoBehaviour is created
void Start()
{
}
// Update is called once per frame
void Update()
{
transform.Rotate(Vector3.up, rychlost * Time.deltaTime);
}
}