diff options
Diffstat (limited to 'client/player')
| -rw-r--r-- | client/player/mirror.gd | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/client/player/mirror.gd b/client/player/mirror.gd index ccec0e65..ac9dfce9 100644 --- a/client/player/mirror.gd +++ b/client/player/mirror.gd @@ -24,8 +24,7 @@ extends Node3D @onready var hand_right = $Main/HandRight @onready var hand_left = $Main/HandLeft - -func _process(delta): +func _process(_delta): if enabled: hand_right.position = hand_left.position * Vector3(-1,1,1) hand_right.rotation = hand_left.rotation * Vector3(1, -1, -1) - Vector3(0.2 * PI, 0, 0) |