]> Untitled Git - william-skin.git/blob - player/player.tscn
* Added face test animation
[william-skin.git] / player / player.tscn
1 [gd_scene load_steps=10 format=3 uid="uid://cp6xm8gp6csx"]
2
3 [ext_resource type="Script" path="res://player/player.gd" id="1_h17j6"]
4 [ext_resource type="PackedScene" uid="uid://2tvylmtejq0u" path="res://william.tscn" id="1_sujn1"]
5 [ext_resource type="Script" path="res://ux/debug_draw_3d.gd" id="3_4m0p1"]
6 [ext_resource type="Script" path="res://ux/debug_overlay.gd" id="3_lokna"]
7 [ext_resource type="Script" path="res://ux/debug_stats.gd" id="5_n0cdm"]
8
9 [sub_resource type="CapsuleShape3D" id="CapsuleShape3D_2yjd0"]
10
11 [sub_resource type="SphereShape3D" id="SphereShape3D_4dtvp"]
12
13 [sub_resource type="CameraAttributesPractical" id="CameraAttributesPractical_frf40"]
14 dof_blur_far_enabled = true
15 dof_blur_far_distance = 20.0
16
17 [sub_resource type="CylinderShape3D" id="CylinderShape3D_ntdse"]
18 radius = 5.0
19
20 [node name="player" type="CharacterBody3D"]
21 script = ExtResource("1_h17j6")
22 camera_mode = "unlocked"
23
24 [node name="CollisionShape3D" type="CollisionShape3D" parent="."]
25 transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0)
26 shape = SubResource("CapsuleShape3D_2yjd0")
27
28 [node name="WilliamSkin" parent="." instance=ExtResource("1_sujn1")]
29 unique_name_in_owner = true
30 transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 0, 0, 0)
31
32 [node name="cameraPivot" type="Node3D" parent="."]
33
34 [node name="SpringArm3D" type="SpringArm3D" parent="cameraPivot"]
35 transform = Transform3D(1, 0, 0, 0, 0.946525, 0.322629, 0, -0.322629, 0.946525, 0, 1.588, 0)
36 shape = SubResource("SphereShape3D_4dtvp")
37
38 [node name="Camera3D" type="Camera3D" parent="cameraPivot/SpringArm3D"]
39 attributes = SubResource("CameraAttributesPractical_frf40")
40 fov = 80.0
41
42 [node name="headTurn" type="Area3D" parent="."]
43
44 [node name="CollisionShape3D" type="CollisionShape3D" parent="headTurn"]
45 transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0)
46 shape = SubResource("CylinderShape3D_ntdse")
47
48 [node name="DebugOverlay" type="CanvasLayer" parent="."]
49 unique_name_in_owner = true
50 script = ExtResource("3_lokna")
51
52 [node name="DebugDraw3D" type="Control" parent="DebugOverlay"]
53 layout_mode = 3
54 anchors_preset = 0
55 offset_right = 40.0
56 offset_bottom = 40.0
57 script = ExtResource("3_4m0p1")
58
59 [node name="DebugStats" type="MarginContainer" parent="DebugOverlay"]
60 offset_right = 40.0
61 offset_bottom = 40.0
62 script = ExtResource("5_n0cdm")
63
64 [node name="VBoxContainer" type="VBoxContainer" parent="DebugOverlay/DebugStats"]
65 layout_mode = 2
66
67 [connection signal="area_entered" from="headTurn" to="." method="_on_head_turn_area_entered"]
68 [connection signal="area_exited" from="headTurn" to="." method="_on_head_turn_area_exited"]