Add customizable fur patterns

This commit is contained in:
Alexander Sellite 2026-08-12 16:29:58 -04:00
parent 9729c278dc
commit 1940ae13e5
21 changed files with 705 additions and 49 deletions

View file

@ -143,7 +143,7 @@ func _notification(what: int) -> void:
func _rotate(amount: float) -> void:
_camera_yaw = fposmod(_camera_yaw + amount, TAU)
_camera_yaw = fposmod(_camera_yaw - amount, TAU)
_apply_camera_orbit()