Pinguin als Standardcharacter mit Animation

This commit is contained in:
brausjonas
2023-03-31 02:39:36 +02:00
parent 94323a8404
commit 725a68b90c
46 changed files with 3436 additions and 1490 deletions
+14
View File
@@ -0,0 +1,14 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class NamesText : MonoBehaviour
{
public float orgY;
// Update is called once per frame
void Update()
{
transform.rotation = Quaternion.Euler(0, orgY, 0);
}
}