Added basic orbital spinning

This commit is contained in:
Pasha Bibko
2025-11-18 10:14:03 +00:00
parent 7d4dea39a2
commit 22c0eb0ef5
12 changed files with 489 additions and 5 deletions

View File

@@ -0,0 +1,18 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class GlobalOrbitalUpdater : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
}
}