123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- [gd_scene load_steps=8 format=3 uid="uid://bmb72w7tf6fu4"]
- [ext_resource type="Texture2D" uid="uid://diymsf2qlhkbe" path="res://icon.svg" id="1_3tqy7"]
- [ext_resource type="PackedScene" uid="uid://cqdewtd1yr4cn" path="res://component/props/godot_logo/godot_logo.tscn" id="1_36ls2"]
- [ext_resource type="Texture2D" uid="uid://dnrpwavhjaq1s" path="res://component/sky/ground/ground004.jpg" id="1_e8dj3"]
- [ext_resource type="PackedScene" uid="uid://dlkwtp1gl45r" path="res://component/ships/BiBiShip.tscn" id="2_hw8a6"]
- [ext_resource type="PackedScene" uid="uid://bi4ilbgyhjrnx" path="res://component/control/keyboard/keyboard_control.tscn" id="3_o4rax"]
- [ext_resource type="Script" path="res://component/control/gamepad/gamepad_control.gd" id="4_vfxyo"]
- [ext_resource type="Script" path="res://component/views/player_camera.gd" id="4_w3h2o"]
- [node name="Level1" type="Node2D"]
- [node name="ParallaxBackground" type="ParallaxBackground" parent="."]
- [node name="Ground" type="ParallaxLayer" parent="ParallaxBackground"]
- motion_scale = Vector2(0.2, 0.2)
- motion_mirroring = Vector2(6400, 6400)
- [node name="Grass" type="Sprite2D" parent="ParallaxBackground/Ground"]
- texture_repeat = 2
- texture = ExtResource("1_e8dj3")
- centered = false
- region_enabled = true
- region_rect = Rect2(0, 0, 6400, 6400)
- [node name="Clouds" type="ParallaxLayer" parent="ParallaxBackground"]
- modulate = Color(4.13924e-06, 0.747864, 0.749296, 1)
- position = Vector2(3, -3)
- motion_scale = Vector2(0.8, 0.8)
- motion_mirroring = Vector2(10000, 5000)
- [node name="Cloud1" type="Sprite2D" parent="ParallaxBackground/Clouds"]
- texture = ExtResource("1_3tqy7")
- [node name="Cloud2" type="Sprite2D" parent="ParallaxBackground/Clouds"]
- position = Vector2(6226, 921)
- texture = ExtResource("1_3tqy7")
- [node name="Cloud3" type="Sprite2D" parent="ParallaxBackground/Clouds"]
- position = Vector2(4356, 2913)
- texture = ExtResource("1_3tqy7")
- [node name="Cloud4" type="Sprite2D" parent="ParallaxBackground/Clouds"]
- position = Vector2(1722, 3018)
- texture = ExtResource("1_3tqy7")
- [node name="Cloud5" type="Sprite2D" parent="ParallaxBackground/Clouds"]
- position = Vector2(8675, 3482)
- texture = ExtResource("1_3tqy7")
- [node name="GodotLogo" parent="." instance=ExtResource("1_36ls2")]
- [node name="GodotLogo2" parent="." instance=ExtResource("1_36ls2")]
- position = Vector2(930, 491)
- [node name="BiBiShip" parent="." instance=ExtResource("2_hw8a6")]
- position = Vector2(462, 278)
- [node name="KeyboardControl" parent="BiBiShip" instance=ExtResource("3_o4rax")]
- [node name="Camera2D" type="Camera2D" parent="BiBiShip"]
- script = ExtResource("4_w3h2o")
- [node name="GamepadControl" type="Node" parent="BiBiShip"]
- script = ExtResource("4_vfxyo")
- [connection signal="moved" from="BiBiShip" to="BiBiShip/Camera2D" method="_on_moved"]
- [connection signal="dir_changed" from="BiBiShip/KeyboardControl" to="BiBiShip" method="_on_command"]
- [connection signal="dir_changed" from="BiBiShip/GamepadControl" to="BiBiShip" method="_on_command"]
|