lots of features

This commit is contained in:
2023-08-04 11:30:18 -07:00
parent d098cfb017
commit 339cb374b8
27 changed files with 427 additions and 36 deletions

View File

@@ -1,14 +1,25 @@
[gd_scene load_steps=5 format=3 uid="uid://bi7j4afsxghrj"]
[gd_scene load_steps=10 format=3 uid="uid://dae1bs2yqqt5l"]
[ext_resource type="Script" path="res://Scripts/Player.cs" id="1_jsq3s"]
[ext_resource type="Environment" uid="uid://c1i78mwq3ug2f" path="res://Scenes/Enivornment.tres" id="2_t03qe"]
[ext_resource type="AudioStream" uid="uid://cupjwk5q538g2" path="res://Audio/SFX/gunshot.mp3" id="3_5mglu"]
[ext_resource type="Script" path="res://Scripts/SoundEffects.cs" id="4_fmvkw"]
[ext_resource type="PackedScene" uid="uid://cc5emorildoar" path="res://Scenes/Gun.tscn" id="5_sb1dv"]
[ext_resource type="Script" path="res://Scripts/PlayerHUD.cs" id="6_pawgr"]
[sub_resource type="CapsuleShape3D" id="CapsuleShape3D_cxbex"]
[sub_resource type="CapsuleMesh" id="CapsuleMesh_7dxig"]
[sub_resource type="LabelSettings" id="LabelSettings_3d4s1"]
font_size = 40
font_color = Color(0.490196, 0.403922, 0.278431, 1)
outline_size = 3
outline_color = Color(0, 0, 0, 1)
[node name="Player" type="CharacterBody3D" node_paths=PackedStringArray("_pivot")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.13331, 0)
collision_layer = 5
script = ExtResource("1_jsq3s")
_mouseSensitivity = 0.07
_pivot = NodePath("Pivot")
@@ -28,7 +39,40 @@ fov = 60.0
transform = Transform3D(0.125, 0, 0, 0, 0.125, 0, 0, 0, 0.125, 0, 0, 0)
target_position = Vector3(0, 0, -1000)
[node name="AudioStreamPlayer3D" type="AudioStreamPlayer3D" parent="Pivot/Camera3D"]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -1.10748, -0.0718701)
stream = ExtResource("3_5mglu")
volume_db = -28.0
max_db = -5.0
max_polyphony = 8
script = ExtResource("4_fmvkw")
[node name="MeshInstance3D" type="MeshInstance3D" parent="."]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0)
visible = false
mesh = SubResource("CapsuleMesh_7dxig")
[node name="Gun" parent="." instance=ExtResource("5_sb1dv")]
[node name="CanvasLayer" type="CanvasLayer" parent="."]
script = ExtResource("6_pawgr")
[node name="AmmoLabel" type="Label" parent="CanvasLayer"]
anchors_preset = 3
anchor_left = 1.0
anchor_top = 1.0
anchor_right = 1.0
anchor_bottom = 1.0
offset_left = -149.0
offset_top = -63.0
grow_horizontal = 0
grow_vertical = 0
size_flags_horizontal = 8
size_flags_vertical = 8
text = "Ammo"
label_settings = SubResource("LabelSettings_3d4s1")
horizontal_alignment = 1
vertical_alignment = 1
[connection signal="FireGun" from="." to="Pivot/Camera3D/AudioStreamPlayer3D" method="OnFireGun"]
[connection signal="FireGun" from="." to="CanvasLayer" method="OnFireGun"]