started modeling

This commit is contained in:
2025-03-21 11:49:36 -04:00
parent c597bcb34e
commit 1dce3a7e53
29 changed files with 251 additions and 1 deletions

11
godot/scripts/camera.gd Normal file
View File

@@ -0,0 +1,11 @@
extends Camera3D
var target_angle:int
var current_angle:int
func _physics_process(_delta: float) -> void:
target_angle = GLOBALVARS.selected_player * 90
if current_angle != target_angle:
current_angle += 0.001*(target_angle-current_angle)
global_rotation_degrees.y = current_angle

View File

@@ -0,0 +1 @@
uid://doxajvf15fv27

View File

@@ -0,0 +1,3 @@
extends Node
var selected_player:int = 0

View File

@@ -0,0 +1 @@
uid://xpqvd1g7y1xp