neuer character modifiziert und skeleton vom alten in den neuen

This commit is contained in:
GodGodGod20081
2026-06-25 12:43:48 +02:00
parent 54f675d28b
commit cdcd374639
22 changed files with 4247 additions and 9663 deletions
+1 -1
View File
@@ -39,7 +39,7 @@ public class Door_Rotate : MonoBehaviour
isOpen = !isOpen;
targetRotation = isOpen ? currentRotation + openAngle : currentRotation - openAngle;
}
//Smoothe rotation der tür
//glatte bewegung der tür
private void SmoothRotateDoor()
{
currentRotation = Mathf.Lerp(currentRotation, targetRotation, Time.deltaTime * rotationSpeed);