diff --git a/microjogos/2024S1/seu_projeto/capa.png b/microjogos/2024S1/projeto-faroeste/capa.png similarity index 100% rename from microjogos/2024S1/seu_projeto/capa.png rename to microjogos/2024S1/projeto-faroeste/capa.png diff --git a/microjogos/2024S1/seu_projeto/capa.png.import b/microjogos/2024S1/projeto-faroeste/capa.png.import similarity index 71% rename from microjogos/2024S1/seu_projeto/capa.png.import rename to microjogos/2024S1/projeto-faroeste/capa.png.import index 6f639e9d..28792db5 100644 --- a/microjogos/2024S1/seu_projeto/capa.png.import +++ b/microjogos/2024S1/projeto-faroeste/capa.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://bkvcg7ivmjl0d" -path="res://.godot/imported/capa.png-8a1b289eccd6e7f3202cf5a91f689be2.ctex" +path="res://.godot/imported/capa.png-fe3ab1710c7bc4ea25c5b4a664331970.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://microjogos/2024S1/seu_projeto/capa.png" -dest_files=["res://.godot/imported/capa.png-8a1b289eccd6e7f3202cf5a91f689be2.ctex"] +source_file="res://microjogos/2024S1/projeto-faroeste/capa.png" +dest_files=["res://.godot/imported/capa.png-fe3ab1710c7bc4ea25c5b4a664331970.ctex"] [params] diff --git a/microjogos/2024S1/projeto-faroeste/cenas/CharacterBody2D.gd b/microjogos/2024S1/projeto-faroeste/cenas/CharacterBody2D.gd new file mode 100644 index 00000000..6117333e --- /dev/null +++ b/microjogos/2024S1/projeto-faroeste/cenas/CharacterBody2D.gd @@ -0,0 +1,3 @@ +extends CharacterBody2D + + diff --git a/microjogos/2024S1/projeto-faroeste/cenas/TempoReacao.gd b/microjogos/2024S1/projeto-faroeste/cenas/TempoReacao.gd new file mode 100644 index 00000000..6c843cd5 --- /dev/null +++ b/microjogos/2024S1/projeto-faroeste/cenas/TempoReacao.gd @@ -0,0 +1,12 @@ +extends Timer + + + +func _ready(): + +func _process(delta): + + + + + diff --git a/microjogos/2024S1/projeto-faroeste/cenas/Timer.gd b/microjogos/2024S1/projeto-faroeste/cenas/Timer.gd new file mode 100644 index 00000000..b4fc72a2 --- /dev/null +++ b/microjogos/2024S1/projeto-faroeste/cenas/Timer.gd @@ -0,0 +1,15 @@ +extends Timer + + +func _ready(): + +func _process(delta): + + + + + + + + + diff --git a/microjogos/2024S1/seu_projeto/cenas/cenas.txt b/microjogos/2024S1/projeto-faroeste/cenas/cenas.txt similarity index 100% rename from microjogos/2024S1/seu_projeto/cenas/cenas.txt rename to microjogos/2024S1/projeto-faroeste/cenas/cenas.txt diff --git a/microjogos/2024S1/projeto-faroeste/cenas/main.gd b/microjogos/2024S1/projeto-faroeste/cenas/main.gd new file mode 100644 index 00000000..f126f7ca --- /dev/null +++ b/microjogos/2024S1/projeto-faroeste/cenas/main.gd @@ -0,0 +1,58 @@ +extends Node2D + +signal win +signal lose + +const WIDTH = 240 +const HEIGHT = 135 +var tempoativo = 1 +var vitoria = 1 +func _ready(): + var anEU = get_node("Player/parado1") + anEU.play() + var anBA = get_node("Inimigo/parado2") + anBA.play() + + var intro = get_node("TempoIntro") + intro.start(randf_range(3,5)) + + "_on_tempo_intro_timeout() + _on_sprite_timeout()" +func _physics_process(delta): + if Input.is_action_just_pressed("acao") and tempoativo == 2 and vitoria == 1: + get_node("Player/parado1").visible = false + get_node("Player/tiro1").visible = true + var tiro1 = get_node("Player/tiro1") + tiro1.play() + emit_signal("win") + vitoria = 3 + elif Input.is_action_just_pressed("acao") and vitoria == 2 and tempoativo == 1: + get_node("Inimigo/parado2").visible = false + get_node("Inimigo/tiro2").visible = true + var tiro2 = get_node("Inimigo/tiro2") + tiro2.play() + emit_signal("lose") + +func _on_tempo_intro_timeout(): + get_node("atire").visible = true + get_node("sino").play() + + var sprite = get_node("TempoIntro/sprite") + sprite.start(0.5) + tempoativo = 2 +func _on_sprite_timeout(): + tempoativo = 2 + get_node("atire").visible = false + + var reacao = get_node("TempoIntro/TempoReacao") + reacao.start(0.3) + +func _on_tempo_reacao_timeout(): + tempoativo = 1 + vitoria = 2 + + + + + + diff --git a/microjogos/2024S1/projeto-faroeste/cenas/main.tscn b/microjogos/2024S1/projeto-faroeste/cenas/main.tscn new file mode 100644 index 00000000..c339db9e --- /dev/null +++ b/microjogos/2024S1/projeto-faroeste/cenas/main.tscn @@ -0,0 +1,324 @@ +[gd_scene load_steps=31 format=3 uid="uid://bi0ahd7cv37i6"] + +[ext_resource type="Script" path="res://microjogos/2024S1/projeto-faroeste/cenas/main.gd" id="1_tlomy"] +[ext_resource type="Texture2D" uid="uid://124wjq5srxwg" path="res://microjogos/2024S1/projeto-faroeste/recursos/chao.png" id="2_2vnli"] +[ext_resource type="Texture2D" uid="uid://bwdxsst4cfyqb" path="res://microjogos/2024S1/projeto-faroeste/recursos/New Piskel(1).png" id="3_q0eib"] +[ext_resource type="Texture2D" uid="uid://c3ta5rn85x016" path="res://microjogos/2024S1/projeto-faroeste/recursos/tiro.png" id="4_b11vx"] +[ext_resource type="Texture2D" uid="uid://dcbjp3l7fvu8m" path="res://microjogos/2024S1/projeto-faroeste/recursos/New Piskel.png" id="5_4u7aj"] +[ext_resource type="Texture2D" uid="uid://cii6psgd00xei" path="res://microjogos/2024S1/projeto-faroeste/recursos/vilao.png" id="5_aqjuf"] +[ext_resource type="Texture2D" uid="uid://djw3l44h80fya" path="res://microjogos/2024S1/projeto-faroeste/recursos/desert10__r1738402061.png" id="5_ew2ia"] +[ext_resource type="Texture2D" uid="uid://b0x2kihexrjul" path="res://microjogos/2024S1/projeto-faroeste/recursos/atire.png" id="6_jh6h0"] + +[sub_resource type="CanvasItemMaterial" id="CanvasItemMaterial_m20bu"] + +[sub_resource type="RectangleShape2D" id="RectangleShape2D_b67qc"] +size = Vector2(649.5, 154.375) + +[sub_resource type="CapsuleShape2D" id="CapsuleShape2D_x2ogc"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_iyjgb"] +atlas = ExtResource("3_q0eib") +region = Rect2(0, 0, 50, 50) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g0tx7"] +atlas = ExtResource("3_q0eib") +region = Rect2(0, 50, 50, 50) + +[sub_resource type="SpriteFrames" id="SpriteFrames_w06wt"] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_iyjgb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g0tx7") +}], +"loop": true, +"name": &"default", +"speed": 2.0 +}] + +[sub_resource type="AtlasTexture" id="AtlasTexture_olb33"] +atlas = ExtResource("4_b11vx") +region = Rect2(0, 0, 50, 50) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xv3e2"] +atlas = ExtResource("4_b11vx") +region = Rect2(50, 0, 50, 50) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tpsmg"] +atlas = ExtResource("4_b11vx") +region = Rect2(0, 100, 50, 50) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x25r1"] +atlas = ExtResource("4_b11vx") +region = Rect2(50, 50, 50, 50) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybmjb"] +atlas = ExtResource("4_b11vx") +region = Rect2(0, 50, 50, 50) + +[sub_resource type="SpriteFrames" id="SpriteFrames_g05dv"] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_olb33") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xv3e2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tpsmg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x25r1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ybmjb") +}], +"loop": false, +"name": &"default", +"speed": 5.0 +}] + +[sub_resource type="CapsuleShape2D" id="CapsuleShape2D_m76k1"] +radius = 15.0 +height = 54.0 + +[sub_resource type="AtlasTexture" id="AtlasTexture_tcv8l"] +atlas = ExtResource("5_aqjuf") +region = Rect2(0, 0, 50, 50) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iraj1"] +atlas = ExtResource("5_aqjuf") +region = Rect2(50, 0, 50, 50) + +[sub_resource type="SpriteFrames" id="SpriteFrames_jkfk6"] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tcv8l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iraj1") +}], +"loop": true, +"name": &"default", +"speed": 2.0 +}] + +[sub_resource type="AtlasTexture" id="AtlasTexture_yhom4"] +atlas = ExtResource("5_aqjuf") +region = Rect2(0, 0, 50, 50) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n0wmi"] +atlas = ExtResource("5_aqjuf") +region = Rect2(50, 0, 50, 50) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x11ms"] +atlas = ExtResource("5_aqjuf") +region = Rect2(0, 100, 50, 50) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qtqcr"] +atlas = ExtResource("5_aqjuf") +region = Rect2(50, 50, 50, 50) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gvwht"] +atlas = ExtResource("5_aqjuf") +region = Rect2(0, 50, 50, 50) + +[sub_resource type="SpriteFrames" id="SpriteFrames_xpmbc"] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yhom4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n0wmi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x11ms") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qtqcr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gvwht") +}], +"loop": false, +"name": &"default", +"speed": 4.0 +}] + +[node name="Main" type="Node2D"] +position = Vector2(-27, -5) +script = ExtResource("1_tlomy") + +[node name="Chao" type="StaticBody2D" parent="."] +texture_filter = 1 +position = Vector2(-710, -440) + +[node name="CollisionShape2D" type="CollisionShape2D" parent="Chao"] +material = SubResource("CanvasItemMaterial_m20bu") +position = Vector2(409, 524) +shape = SubResource("RectangleShape2D_b67qc") +debug_color = Color(0.768627, 0.772549, 0.376471, 0.419608) + +[node name="Sprite2D2" type="Sprite2D" parent="Chao/CollisionShape2D"] +visible = false +texture_filter = 1 +position = Vector2(711, 491) +scale = Vector2(5.3501, 2.78125) +texture = ExtResource("2_2vnli") + +[node name="Sprite2D3" type="Sprite2D" parent="Chao/CollisionShape2D"] +visible = false +texture_filter = 1 +position = Vector2(711, 491) +scale = Vector2(5.3501, 2.78125) +texture = ExtResource("2_2vnli") + +[node name="Sprite2D" type="Sprite2D" parent="Chao"] +texture_filter = 5 +position = Vector2(165, 473) +scale = Vector2(1.6875, 1.65625) +texture = ExtResource("2_2vnli") + +[node name="Player" type="CharacterBody2D" parent="."] +position = Vector2(-512, -22) + +[node name="CollisionShape2D" type="CollisionShape2D" parent="Player"] +visible = false +position = Vector2(-34, 14) +shape = SubResource("CapsuleShape2D_x2ogc") + +[node name="parado1" type="AnimatedSprite2D" parent="Player"] +texture_filter = 1 +position = Vector2(-33, 9) +sprite_frames = SubResource("SpriteFrames_w06wt") + +[node name="tiro1" type="AnimatedSprite2D" parent="Player"] +visible = false +texture_filter = 1 +position = Vector2(-33, 8) +sprite_frames = SubResource("SpriteFrames_g05dv") +frame = 4 +frame_progress = 1.0 + +[node name="Inimigo" type="CharacterBody2D" parent="."] +position = Vector2(388, -19) + +[node name="CollisionShape2D" type="CollisionShape2D" parent="Inimigo"] +visible = false +position = Vector2(-526, 1) +shape = SubResource("CapsuleShape2D_m76k1") + +[node name="parado2" type="AnimatedSprite2D" parent="Inimigo"] +texture_filter = 1 +position = Vector2(-528, 5) +sprite_frames = SubResource("SpriteFrames_jkfk6") + +[node name="tiro2" type="AnimatedSprite2D" parent="Inimigo"] +visible = false +texture_filter = 1 +position = Vector2(-528, 4) +sprite_frames = SubResource("SpriteFrames_xpmbc") +frame = 4 +frame_progress = 1.0 + +[node name="TempoIntro" type="Timer" parent="."] +wait_time = 4.601 +one_shot = true + +[node name="TempoReacao" type="Timer" parent="TempoIntro"] +one_shot = true + +[node name="sprite" type="Timer" parent="TempoIntro"] + +[node name="fundo" type="Sprite2D" parent="."] +z_index = -2000 +position = Vector2(-330, -113) +scale = Vector2(0.580204, 0.721805) +texture = ExtResource("5_ew2ia") + +[node name="sino" type="AudioStreamPlayer" parent="."] + +[node name="cacto" type="Sprite2D" parent="."] +texture_filter = 1 +position = Vector2(-182, -12) +scale = Vector2(2.53125, 2.65625) +texture = ExtResource("5_4u7aj") + +[node name="Camera2D" type="Camera2D" parent="."] +position = Vector2(-330, -78) +zoom = Vector2(4, 4) + +[node name="Chao2" type="Sprite2D" parent="."] +texture_filter = 1 +position = Vector2(-487.625, 31.875) +scale = Vector2(1.91406, 1.57031) +texture = ExtResource("2_2vnli") + +[node name="Chao10" type="Sprite2D" parent="Chao2"] +texture_filter = 1 +position = Vector2(210.351, 0.0795994) +scale = Vector2(0.783673, 1.03483) +texture = ExtResource("2_2vnli") + +[node name="Chao9" type="Sprite2D" parent="Chao2"] +texture_filter = 1 +position = Vector2(186.318, 0.0795994) +scale = Vector2(0.865306, 1.01493) +texture = ExtResource("2_2vnli") + +[node name="Chao4" type="Sprite2D" parent="Chao2"] +texture_filter = 1 +position = Vector2(54.9224, 0.0795994) +scale = Vector2(0.767347, 0.995025) +texture = ExtResource("2_2vnli") + +[node name="Chao6" type="Sprite2D" parent="Chao2"] +texture_filter = 1 +position = Vector2(106.384, 0.0795994) +scale = Vector2(0.881632, 0.995025) +texture = ExtResource("2_2vnli") + +[node name="Chao7" type="Sprite2D" parent="Chao2"] +texture_filter = 1 +position = Vector2(133.812, -0.0796032) +scale = Vector2(0.832653, 1.00498) +texture = ExtResource("2_2vnli") + +[node name="Chao3" type="Sprite2D" parent="Chao2"] +texture_filter = 1 +position = Vector2(29.5837, 0.0795994) +scale = Vector2(0.848979, 0.995025) +texture = ExtResource("2_2vnli") + +[node name="Chao5" type="Sprite2D" parent="Chao2"] +texture_filter = 1 +position = Vector2(79.7388, 0.0795994) +scale = Vector2(0.8, 0.995025) +texture = ExtResource("2_2vnli") + +[node name="Chao8" type="Sprite2D" parent="Chao2"] +texture_filter = 1 +position = Vector2(158.89, 0.0795994) +scale = Vector2(0.865306, 0.995025) +texture = ExtResource("2_2vnli") + +[node name="NewPiskel" type="Sprite2D" parent="."] +texture_filter = 1 +position = Vector2(-473, -6) +scale = Vector2(1.90625, 1.84375) +texture = ExtResource("5_4u7aj") + +[node name="atire" type="Sprite2D" parent="."] +visible = false +position = Vector2(-356, -59) +scale = Vector2(0.92, 0.96) +texture = ExtResource("6_jh6h0") + +[connection signal="timeout" from="TempoIntro" to="." method="_on_tempo_intro_timeout"] +[connection signal="timeout" from="TempoIntro/TempoReacao" to="." method="_on_tempo_reacao_timeout"] +[connection signal="timeout" from="TempoIntro/sprite" to="." method="_on_sprite_timeout"] diff --git a/microjogos/2024S1/seu_projeto/cenas/scripts/main.gd b/microjogos/2024S1/projeto-faroeste/cenas/scripts/main.gd similarity index 100% rename from microjogos/2024S1/seu_projeto/cenas/scripts/main.gd rename to microjogos/2024S1/projeto-faroeste/cenas/scripts/main.gd diff --git a/microjogos/2024S1/seu_projeto/cenas/scripts/scripts.txt b/microjogos/2024S1/projeto-faroeste/cenas/scripts/scripts.txt similarity index 100% rename from microjogos/2024S1/seu_projeto/cenas/scripts/scripts.txt rename to microjogos/2024S1/projeto-faroeste/cenas/scripts/scripts.txt diff --git a/microjogos/2024S1/seu_projeto/creditos.gd b/microjogos/2024S1/projeto-faroeste/creditos.gd similarity index 100% rename from microjogos/2024S1/seu_projeto/creditos.gd rename to microjogos/2024S1/projeto-faroeste/creditos.gd diff --git a/microjogos/2024S1/projeto-faroeste/recursos/New Piskel(1).png b/microjogos/2024S1/projeto-faroeste/recursos/New Piskel(1).png new file mode 100644 index 00000000..7d006108 Binary files /dev/null and b/microjogos/2024S1/projeto-faroeste/recursos/New Piskel(1).png differ diff --git a/microjogos/2024S1/projeto-faroeste/recursos/New Piskel(1).png.import b/microjogos/2024S1/projeto-faroeste/recursos/New Piskel(1).png.import new file mode 100644 index 00000000..e550d552 --- /dev/null +++ b/microjogos/2024S1/projeto-faroeste/recursos/New Piskel(1).png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwdxsst4cfyqb" +path="res://.godot/imported/New Piskel(1).png-1c39116785f25f00a2b0b9d196466a13.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://microjogos/2024S1/projeto-faroeste/recursos/New Piskel(1).png" +dest_files=["res://.godot/imported/New Piskel(1).png-1c39116785f25f00a2b0b9d196466a13.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/microjogos/2024S1/projeto-faroeste/recursos/New Piskel.png b/microjogos/2024S1/projeto-faroeste/recursos/New Piskel.png new file mode 100644 index 00000000..ecc2817b Binary files /dev/null and b/microjogos/2024S1/projeto-faroeste/recursos/New Piskel.png differ diff --git a/microjogos/2024S1/projeto-faroeste/recursos/New Piskel.png.import b/microjogos/2024S1/projeto-faroeste/recursos/New Piskel.png.import new file mode 100644 index 00000000..f12ebe99 --- /dev/null +++ b/microjogos/2024S1/projeto-faroeste/recursos/New Piskel.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dcbjp3l7fvu8m" +path="res://.godot/imported/New Piskel.png-129a57682312eb991d499a0f2173009c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://microjogos/2024S1/projeto-faroeste/recursos/New Piskel.png" +dest_files=["res://.godot/imported/New Piskel.png-129a57682312eb991d499a0f2173009c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/microjogos/2024S1/projeto-faroeste/recursos/atire.png b/microjogos/2024S1/projeto-faroeste/recursos/atire.png new file mode 100644 index 00000000..cd3e1416 Binary files /dev/null and b/microjogos/2024S1/projeto-faroeste/recursos/atire.png differ diff --git a/microjogos/2024S1/projeto-faroeste/recursos/atire.png.import b/microjogos/2024S1/projeto-faroeste/recursos/atire.png.import new file mode 100644 index 00000000..1f889f64 --- /dev/null +++ b/microjogos/2024S1/projeto-faroeste/recursos/atire.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b0x2kihexrjul" +path="res://.godot/imported/atire.png-16527822d0d55a49c67406a8b08794e2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://microjogos/2024S1/projeto-faroeste/recursos/atire.png" +dest_files=["res://.godot/imported/atire.png-16527822d0d55a49c67406a8b08794e2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/microjogos/2024S1/projeto-faroeste/recursos/chao.png b/microjogos/2024S1/projeto-faroeste/recursos/chao.png new file mode 100644 index 00000000..a501a9d5 Binary files /dev/null and b/microjogos/2024S1/projeto-faroeste/recursos/chao.png differ diff --git a/microjogos/2024S1/projeto-faroeste/recursos/chao.png.import b/microjogos/2024S1/projeto-faroeste/recursos/chao.png.import new file mode 100644 index 00000000..ad9a0f3a --- /dev/null +++ b/microjogos/2024S1/projeto-faroeste/recursos/chao.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://124wjq5srxwg" +path="res://.godot/imported/chao.png-e952d5cbe81afb5a2acd8a7a9c974cde.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://microjogos/2024S1/projeto-faroeste/recursos/chao.png" +dest_files=["res://.godot/imported/chao.png-e952d5cbe81afb5a2acd8a7a9c974cde.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/microjogos/2024S1/projeto-faroeste/recursos/churchbell.flac b/microjogos/2024S1/projeto-faroeste/recursos/churchbell.flac new file mode 100644 index 00000000..cd51d156 Binary files /dev/null and b/microjogos/2024S1/projeto-faroeste/recursos/churchbell.flac differ diff --git a/microjogos/2024S1/projeto-faroeste/recursos/cowboy-1153172110642v2dvpyyx.png b/microjogos/2024S1/projeto-faroeste/recursos/cowboy-1153172110642v2dvpyyx.png new file mode 100644 index 00000000..e3780770 Binary files /dev/null and b/microjogos/2024S1/projeto-faroeste/recursos/cowboy-1153172110642v2dvpyyx.png differ diff --git a/microjogos/2024S1/projeto-faroeste/recursos/cowboy-1153172110642v2dvpyyx.png.import b/microjogos/2024S1/projeto-faroeste/recursos/cowboy-1153172110642v2dvpyyx.png.import new file mode 100644 index 00000000..1f6baac9 --- /dev/null +++ b/microjogos/2024S1/projeto-faroeste/recursos/cowboy-1153172110642v2dvpyyx.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqmx7len00auv" +path="res://.godot/imported/cowboy-1153172110642v2dvpyyx.png-3aa5619f0e58e4479a3a094827cc7a60.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://microjogos/2024S1/projeto-faroeste/recursos/cowboy-1153172110642v2dvpyyx.png" +dest_files=["res://.godot/imported/cowboy-1153172110642v2dvpyyx.png-3aa5619f0e58e4479a3a094827cc7a60.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/microjogos/2024S1/projeto-faroeste/recursos/cowboy_PNG13.png b/microjogos/2024S1/projeto-faroeste/recursos/cowboy_PNG13.png new file mode 100644 index 00000000..97456f0e Binary files /dev/null and b/microjogos/2024S1/projeto-faroeste/recursos/cowboy_PNG13.png differ diff --git a/microjogos/2024S1/projeto-faroeste/recursos/cowboy_PNG13.png.import b/microjogos/2024S1/projeto-faroeste/recursos/cowboy_PNG13.png.import new file mode 100644 index 00000000..2c1fb2e8 --- /dev/null +++ b/microjogos/2024S1/projeto-faroeste/recursos/cowboy_PNG13.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5nh7ikhmqip1" +path="res://.godot/imported/cowboy_PNG13.png-cd7d76d2097bd76ac9bacf2d18c8eccb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://microjogos/2024S1/projeto-faroeste/recursos/cowboy_PNG13.png" +dest_files=["res://.godot/imported/cowboy_PNG13.png-cd7d76d2097bd76ac9bacf2d18c8eccb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/microjogos/2024S1/projeto-faroeste/recursos/desert10__r1738402061.png b/microjogos/2024S1/projeto-faroeste/recursos/desert10__r1738402061.png new file mode 100644 index 00000000..3ed9ddb6 Binary files /dev/null and b/microjogos/2024S1/projeto-faroeste/recursos/desert10__r1738402061.png differ diff --git a/microjogos/2024S1/projeto-faroeste/recursos/desert10__r1738402061.png.import b/microjogos/2024S1/projeto-faroeste/recursos/desert10__r1738402061.png.import new file mode 100644 index 00000000..c6fe5440 --- /dev/null +++ b/microjogos/2024S1/projeto-faroeste/recursos/desert10__r1738402061.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djw3l44h80fya" +path="res://.godot/imported/desert10__r1738402061.png-66ce233e33ff2ced5da8f0d281f8054a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://microjogos/2024S1/projeto-faroeste/recursos/desert10__r1738402061.png" +dest_files=["res://.godot/imported/desert10__r1738402061.png-66ce233e33ff2ced5da8f0d281f8054a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/microjogos/2024S1/projeto-faroeste/recursos/istockphoto-1334678004-1024x1024.jpg b/microjogos/2024S1/projeto-faroeste/recursos/istockphoto-1334678004-1024x1024.jpg new file mode 100644 index 00000000..f58a1ecf Binary files /dev/null and b/microjogos/2024S1/projeto-faroeste/recursos/istockphoto-1334678004-1024x1024.jpg differ diff --git a/microjogos/2024S1/projeto-faroeste/recursos/istockphoto-1334678004-1024x1024.jpg.import b/microjogos/2024S1/projeto-faroeste/recursos/istockphoto-1334678004-1024x1024.jpg.import new file mode 100644 index 00000000..c11f5404 --- /dev/null +++ b/microjogos/2024S1/projeto-faroeste/recursos/istockphoto-1334678004-1024x1024.jpg.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dtmrbtcwfd5ee" +path="res://.godot/imported/istockphoto-1334678004-1024x1024.jpg-9f3802249afde986c1cea2fc6c22b034.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://microjogos/2024S1/projeto-faroeste/recursos/istockphoto-1334678004-1024x1024.jpg" +dest_files=["res://.godot/imported/istockphoto-1334678004-1024x1024.jpg-9f3802249afde986c1cea2fc6c22b034.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/microjogos/2024S1/seu_projeto/recursos/recursos.txt b/microjogos/2024S1/projeto-faroeste/recursos/recursos.txt similarity index 100% rename from microjogos/2024S1/seu_projeto/recursos/recursos.txt rename to microjogos/2024S1/projeto-faroeste/recursos/recursos.txt diff --git a/microjogos/2024S1/projeto-faroeste/recursos/tiro.png b/microjogos/2024S1/projeto-faroeste/recursos/tiro.png new file mode 100644 index 00000000..f501e783 Binary files /dev/null and b/microjogos/2024S1/projeto-faroeste/recursos/tiro.png differ diff --git a/microjogos/2024S1/projeto-faroeste/recursos/tiro.png.import b/microjogos/2024S1/projeto-faroeste/recursos/tiro.png.import new file mode 100644 index 00000000..b5a4aca9 --- /dev/null +++ b/microjogos/2024S1/projeto-faroeste/recursos/tiro.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c3ta5rn85x016" +path="res://.godot/imported/tiro.png-60156b5ed7491022a09af31a0fdcba64.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://microjogos/2024S1/projeto-faroeste/recursos/tiro.png" +dest_files=["res://.godot/imported/tiro.png-60156b5ed7491022a09af31a0fdcba64.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/microjogos/2024S1/projeto-faroeste/recursos/vilao.png b/microjogos/2024S1/projeto-faroeste/recursos/vilao.png new file mode 100644 index 00000000..f747632d Binary files /dev/null and b/microjogos/2024S1/projeto-faroeste/recursos/vilao.png differ diff --git a/microjogos/2024S1/projeto-faroeste/recursos/vilao.png.import b/microjogos/2024S1/projeto-faroeste/recursos/vilao.png.import new file mode 100644 index 00000000..d3294642 --- /dev/null +++ b/microjogos/2024S1/projeto-faroeste/recursos/vilao.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cii6psgd00xei" +path="res://.godot/imported/vilao.png-709c2a27e73bd3d64e7f0f200e86eb17.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://microjogos/2024S1/projeto-faroeste/recursos/vilao.png" +dest_files=["res://.godot/imported/vilao.png-709c2a27e73bd3d64e7f0f200e86eb17.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/microjogos/2024S1/seu_projeto/seu projeto.txt b/microjogos/2024S1/projeto-faroeste/seu projeto.txt similarity index 100% rename from microjogos/2024S1/seu_projeto/seu projeto.txt rename to microjogos/2024S1/projeto-faroeste/seu projeto.txt diff --git a/microjogos/2024S1/seu_projeto/cenas/main.tscn b/microjogos/2024S1/seu_projeto/cenas/main.tscn deleted file mode 100644 index 38cd47d0..00000000 --- a/microjogos/2024S1/seu_projeto/cenas/main.tscn +++ /dev/null @@ -1,3 +0,0 @@ -[gd_scene format=3 uid="uid://bi0ahd7cv37i6"] - -[node name="Main" type="Node2D"]