31 lines
1.2 KiB
Plaintext
Raw Normal View History

2024-02-02 19:12:14 +00:00
[gd_scene load_steps=6 format=3 uid="uid://2lcnu3dy54lx"]
2024-01-14 11:22:14 +00:00
[ext_resource type="Script" path="res://player/Player.gd" id="1_8gebs"]
2024-02-02 19:12:14 +00:00
[ext_resource type="PackedScene" uid="uid://dnr3o1rbkqpgu" path="res://assets/models/female/Female.blend" id="2_8nah6"]
2024-01-24 19:57:31 +00:00
[ext_resource type="PackedScene" uid="uid://2bbycjulf00g" path="res://character/health/HealthComponent.tscn" id="2_np5ag"]
2024-02-02 19:12:14 +00:00
[ext_resource type="FontFile" uid="uid://b7mov13kwi8u8" path="res://assets/ui/font/ubuntu_nf_regular.ttf" id="4_76ehj"]
2024-01-14 11:22:14 +00:00
2024-01-18 22:35:17 +00:00
[sub_resource type="CapsuleShape3D" id="CapsuleShape3D_2f50n"]
2024-01-23 23:09:50 +00:00
radius = 0.25
2024-01-18 22:35:17 +00:00
height = 1.6
2024-01-16 22:01:16 +00:00
2024-01-18 22:35:17 +00:00
[node name="Player" type="CharacterBody3D" node_paths=PackedStringArray("model") groups=["player"]]
2024-01-14 11:22:14 +00:00
script = ExtResource("1_8gebs")
2024-01-18 22:35:17 +00:00
model = NodePath("Model")
[node name="Model" type="Node3D" parent="."]
2024-02-02 19:12:14 +00:00
[node name="Female" parent="Model" instance=ExtResource("2_8nah6")]
2024-01-18 22:35:17 +00:00
2024-01-20 21:18:58 +00:00
[node name="Collision" type="CollisionShape3D" parent="."]
2024-01-18 22:35:17 +00:00
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.8, 0)
shape = SubResource("CapsuleShape3D_2f50n")
2024-01-20 21:18:58 +00:00
[node name="Health" parent="." instance=ExtResource("2_np5ag")]
2024-01-25 23:29:05 +00:00
[node name="Label" type="Label3D" parent="."]
2024-01-26 11:50:46 +00:00
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 2, 0)
2024-01-25 23:29:05 +00:00
billboard = 1
2024-01-26 11:50:46 +00:00
text = "Player"
2024-02-02 19:12:14 +00:00
font = ExtResource("4_76ehj")