瀏覽代碼

Merge branch 'textured-background'

Add a water textured background.
DricomDragon 5 年之前
父節點
當前提交
c77032da12
共有 4 個文件被更改,包括 82 次插入33 次删除
  1. 14 0
      Background.tscn
  2. 34 33
      Main.tscn
  3. 二進制
      dodge_assets/art/water.jpg
  4. 34 0
      dodge_assets/art/water.jpg.import

+ 14 - 0
Background.tscn

@@ -0,0 +1,14 @@
+[gd_scene load_steps=2 format=2]
+
+[ext_resource path="res://dodge_assets/art/water.jpg" type="Texture" id=1]
+
+[node name="Background" type="Control"]
+anchor_right = 1.0
+anchor_bottom = 1.0
+
+[node name="TextureRect" type="TextureRect" parent="."]
+anchor_right = 1.0
+anchor_bottom = 1.0
+texture = ExtResource( 1 )
+expand = true
+stretch_mode = 2

+ 34 - 33
Main.tscn

@@ -1,61 +1,62 @@
-[gd_scene load_steps=8 format=2]
+[gd_scene load_steps=9 format=2]
 
-[ext_resource path="res://Main.gd" type="Script" id=1]
-[ext_resource path="res://Enemy.tscn" type="PackedScene" id=2]
-[ext_resource path="res://Player.tscn" type="PackedScene" id=3]
-[ext_resource path="res://HUD.tscn" type="PackedScene" id=4]
-[ext_resource path="res://dodge_assets/art/House In a Forest Loop.ogg" type="AudioStream" id=5]
-[ext_resource path="res://dodge_assets/art/gameover.wav" type="AudioStream" id=6]
+[ext_resource path="res://Background.tscn" type="PackedScene" id=1]
+[ext_resource path="res://Main.gd" type="Script" id=2]
+[ext_resource path="res://Enemy.tscn" type="PackedScene" id=3]
+[ext_resource path="res://Player.tscn" type="PackedScene" id=4]
+[ext_resource path="res://HUD.tscn" type="PackedScene" id=5]
+[ext_resource path="res://dodge_assets/art/House In a Forest Loop.ogg" type="AudioStream" id=6]
+[ext_resource path="res://dodge_assets/art/gameover.wav" type="AudioStream" id=7]
 
 [sub_resource type="Curve2D" id=1]
 _data = {
 "points": PoolVector2Array( 0, 0, 0, 0, -1.05261, 2.78944, 0, 0, 0, 0, 477.895, 2.78944, 0, 0, 0, 0, 460.055, 715.427, 0, 0, 0, 0, 5.76184, 708.778, 0, 0, 0, 0, -1.05261, 2.78944 )
 }
 
-[node name="Main" type="Node2D"]
-script = ExtResource( 1 )
+[node name="Root" type="Node"]
+
+[node name="Background" parent="." instance=ExtResource( 1 )]
+rect_min_size = Vector2( 100, 100 )
+
+[node name="Main" type="Node2D" parent="."]
+script = ExtResource( 2 )
 __meta__ = {
 "_edit_group_": true
 }
-Mob = ExtResource( 2 )
-
-[node name="ColorRect" type="ColorRect" parent="."]
-margin_right = 577.0
-margin_bottom = 739.0
-color = Color( 0.152941, 0.0156863, 0.0156863, 1 )
+Mob = ExtResource( 3 )
 
-[node name="MobTimer" type="Timer" parent="."]
+[node name="MobTimer" type="Timer" parent="Main"]
 wait_time = 0.53
 
-[node name="ScoreTimer" type="Timer" parent="."]
+[node name="ScoreTimer" type="Timer" parent="Main"]
 
-[node name="StartTimer" type="Timer" parent="."]
+[node name="StartTimer" type="Timer" parent="Main"]
 wait_time = 2.41
 one_shot = true
 
-[node name="StartPositon" type="Position2D" parent="."]
+[node name="StartPositon" type="Position2D" parent="Main"]
 position = Vector2( 245.263, 375.79 )
 
-[node name="MobPath" type="Path2D" parent="."]
+[node name="MobPath" type="Path2D" parent="Main"]
 curve = SubResource( 1 )
 
-[node name="MobSpawnLocation" type="PathFollow2D" parent="MobPath"]
+[node name="MobSpawnLocation" type="PathFollow2D" parent="Main/MobPath"]
 position = Vector2( -1.05261, 2.78944 )
 rotation = -6.07153e-08
 
-[node name="Player" parent="." instance=ExtResource( 3 )]
+[node name="Player" parent="Main" instance=ExtResource( 4 )]
 position = Vector2( 245.983, 380.055 )
 
-[node name="HUD" parent="." instance=ExtResource( 4 )]
+[node name="HUD" parent="Main" instance=ExtResource( 5 )]
 
-[node name="Music" type="AudioStreamPlayer" parent="."]
-stream = ExtResource( 5 )
-
-[node name="DeathSound" type="AudioStreamPlayer" parent="."]
+[node name="Music" type="AudioStreamPlayer" parent="Main"]
 stream = ExtResource( 6 )
-[connection signal="timeout" from="MobTimer" to="." method="_on_MobTimer_timeout"]
-[connection signal="timeout" from="ScoreTimer" to="." method="_on_ScoreTimer_timeout"]
-[connection signal="timeout" from="StartTimer" to="Player" method="spawn"]
-[connection signal="timeout" from="StartTimer" to="." method="_on_StartTimer_timeout"]
-[connection signal="hit" from="Player" to="." method="game_over"]
-[connection signal="start_game" from="HUD" to="." method="new_game"]
+
+[node name="DeathSound" type="AudioStreamPlayer" parent="Main"]
+stream = ExtResource( 7 )
+[connection signal="timeout" from="Main/MobTimer" to="Main" method="_on_MobTimer_timeout"]
+[connection signal="timeout" from="Main/ScoreTimer" to="Main" method="_on_ScoreTimer_timeout"]
+[connection signal="timeout" from="Main/StartTimer" to="Main/Player" method="spawn"]
+[connection signal="timeout" from="Main/StartTimer" to="Main" method="_on_StartTimer_timeout"]
+[connection signal="hit" from="Main/Player" to="Main" method="game_over"]
+[connection signal="start_game" from="Main/HUD" to="Main" method="new_game"]

二進制
dodge_assets/art/water.jpg


+ 34 - 0
dodge_assets/art/water.jpg.import

@@ -0,0 +1,34 @@
+[remap]
+
+importer="texture"
+type="StreamTexture"
+path="res://.import/water.jpg-45d84d89be0059d59456a6d4b6f43594.stex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://dodge_assets/art/water.jpg"
+dest_files=[ "res://.import/water.jpg-45d84d89be0059d59456a6d4b6f43594.stex" ]
+
+[params]
+
+compress/mode=0
+compress/lossy_quality=0.7
+compress/hdr_mode=0
+compress/bptc_ldr=0
+compress/normal_map=0
+flags/repeat=0
+flags/filter=true
+flags/mipmaps=false
+flags/anisotropic=false
+flags/srgb=2
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/HDR_as_SRGB=false
+process/invert_color=false
+stream=false
+size_limit=0
+detect_3d=true
+svg/scale=1.0