First Commit

This commit is contained in:
2026-05-24 17:10:09 -03:00
commit 0b0113fbde
222 changed files with 67094 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
[gd_scene format=3 uid="uid://dq0ob5g5o14op"]
[ext_resource type="PackedScene" uid="uid://dvb2nvxp6uiio" path="res://wolrd.tscn" id="1_6lo8v"]
[node name="Node3D" type="Node3D" unique_id=2071891780]
[node name="wolrd" parent="." unique_id=1804339286 instance=ExtResource("1_6lo8v")]
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+43
View File
@@ -0,0 +1,43 @@
[gd_scene format=3 uid="uid://dtyqaudcylb5s"]
[ext_resource type="Script" uid="uid://dsc7pk1wlo3lx" path="res://test/Scripts/game_over.gd" id="1_t2oom"]
[ext_resource type="Shader" uid="uid://cadv0cj23y7" path="res://test/materiais/new_shader.gdshader" id="1_tmww3"]
[sub_resource type="ShaderMaterial" id="ShaderMaterial_t2oom"]
shader = ExtResource("1_tmww3")
[node name="Game_over" type="CanvasLayer" unique_id=208691081]
process_mode = 3
script = ExtResource("1_t2oom")
[node name="ColorRect" type="ColorRect" parent="." unique_id=2031297656]
material = SubResource("ShaderMaterial_t2oom")
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
[node name="VBoxContainer" type="VBoxContainer" parent="." unique_id=513960724]
anchors_preset = 8
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
offset_left = -64.0
offset_top = -33.0
offset_right = 64.0
offset_bottom = 33.0
grow_horizontal = 2
grow_vertical = 2
[node name="Retry_button" type="Button" parent="VBoxContainer" unique_id=1992424068]
layout_mode = 2
text = "Retry"
[node name="Quit_button" type="Button" parent="VBoxContainer" unique_id=1539526167]
layout_mode = 2
text = "Quit Game"
[connection signal="pressed" from="VBoxContainer/Retry_button" to="." method="_on_retry_button_pressed"]
[connection signal="pressed" from="VBoxContainer/Quit_button" to="." method="_on_quit_button_pressed"]
+54
View File
@@ -0,0 +1,54 @@
[gd_scene format=3 uid="uid://bq4jr380dns8j"]
[ext_resource type="Script" uid="uid://40tuulq1cqaj" path="res://test/Scripts/pause.gd" id="1_iq5iu"]
[ext_resource type="Shader" uid="uid://cadv0cj23y7" path="res://test/materiais/new_shader.gdshader" id="2_sj5ki"]
[sub_resource type="ShaderMaterial" id="ShaderMaterial_7hqld"]
shader = ExtResource("2_sj5ki")
[sub_resource type="Theme" id="Theme_dfc2f"]
[node name="Pause" type="CanvasLayer" unique_id=1377105863]
process_mode = 3
script = ExtResource("1_iq5iu")
[node name="ColorRect" type="ColorRect" parent="." unique_id=1482826602]
material = SubResource("ShaderMaterial_7hqld")
offset_right = 1151.0
offset_bottom = 651.0
size_flags_vertical = 4
theme = SubResource("Theme_dfc2f")
[node name="BoxContainer" type="BoxContainer" parent="." unique_id=920077710]
offset_right = 216.0
offset_bottom = 50.0
[node name="VBoxContainer" type="VBoxContainer" parent="." unique_id=652322429]
anchors_preset = 8
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
offset_left = -63.5
offset_top = -50.5
offset_right = 63.5
offset_bottom = 50.5
grow_horizontal = 2
grow_vertical = 2
size_flags_vertical = 4
[node name="Continued_button" type="Button" parent="VBoxContainer" unique_id=125597257]
layout_mode = 2
text = "Continued"
[node name="Retry_button" type="Button" parent="VBoxContainer" unique_id=5830091]
layout_mode = 2
text = "Retry"
[node name="Quit_button" type="Button" parent="VBoxContainer" unique_id=1481332859]
layout_mode = 2
text = "Quit"
[connection signal="pressed" from="VBoxContainer/Continued_button" to="." method="_on_continued_button_pressed"]
[connection signal="pressed" from="VBoxContainer/Retry_button" to="." method="_on_retry_button_pressed"]
[connection signal="pressed" from="VBoxContainer/Quit_button" to="." method="_on_quit_button_pressed"]
+20
View File
@@ -0,0 +1,20 @@
[gd_scene format=3 uid="uid://cgspo5g17dtg4"]
[ext_resource type="Script" uid="uid://dbfvho370q6cq" path="res://test/Scripts/coin.gd" id="1_h1t07"]
[ext_resource type="PackedScene" uid="uid://bnucoo28ydn2d" path="res://test/assets/addons/3dplatformprops-main/godot_coin.glb" id="2_ab8qe"]
[sub_resource type="CylinderShape3D" id="CylinderShape3D_8bk7x"]
height = 0.2
radius = 0.36
[node name="Coin" type="Area3D" unique_id=948322406]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.5, 0)
script = ExtResource("1_h1t07")
[node name="Collision_coin" type="CollisionShape3D" parent="." unique_id=505163209]
transform = Transform3D(1, 0, 0, 0, -0.00523593, -0.9999863, 0, 0.9999863, -0.00523593, 0, 0, 0)
shape = SubResource("CylinderShape3D_8bk7x")
[node name="coin_model" parent="." unique_id=2120145985 instance=ExtResource("2_ab8qe")]
[connection signal="body_entered" from="." to="." method="_on_body_entered"]