Initial Android commit

This commit is contained in:
OleSTEEP 2024-11-10 03:34:28 +03:00
commit 1e2b80c13d
8521 changed files with 231475 additions and 0 deletions

View file

@ -0,0 +1,11 @@
[gd_scene load_steps=2 format=2]
[ext_resource path="res://scripts/AlternativeChoices/AlternativeChoiceBase.gd" type="Script" id=1]
[node name="AlternativeChoice" type="Node2D"]
script = ExtResource( 1 )
[node name="SpriteButtons" type="Node2D" parent="."]
[node name="Labels" type="Node2D" parent="."]
z_index = 200

View file

@ -0,0 +1,48 @@
[gd_scene load_steps=9 format=2]
[ext_resource path="res://scenes/AlternativeChoices/AlternativeChoiceBase.tscn" type="PackedScene" id=1]
[ext_resource path="res://scripts/AlternativeChoices/AlternativeChoiceTimeline_0.gd" type="Script" id=2]
[ext_resource path="res://resources/AlternativeChoices/Timeline_0/Phone.webp" type="Texture" id=3]
[ext_resource path="res://resources/AlternativeChoices/HoverAlternative.gdshader" type="Shader" id=4]
[ext_resource path="res://resources/audio/sfx/phone.ogg" type="AudioStream" id=5]
[sub_resource type="ShaderMaterial" id=17]
shader = ExtResource( 4 )
shader_param/mixing = 0.0
[sub_resource type="DynamicFontData" id=16]
font_path = "res://resources/fonts/TimesNewerRoman-Regular.otf"
[sub_resource type="DynamicFont" id=18]
size = 36
font_data = SubResource( 16 )
[node name="AlternativeChoice" instance=ExtResource( 1 )]
script = ExtResource( 2 )
[node name="Phone" type="TextureButton" parent="SpriteButtons" index="0"]
material = SubResource( 17 )
margin_left = 1165.0
margin_top = 428.0
margin_right = 1321.0
margin_bottom = 547.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 3 )
[node name="PhoneLabel" type="Label" parent="Labels" index="0"]
visible = false
margin_bottom = 43.0
custom_fonts/font = SubResource( 18 )
align = 1
valign = 1
[node name="Timer" type="Timer" parent="." index="2"]
wait_time = 27.7
one_shot = true
[node name="PhonePlayer" type="AudioStreamPlayer" parent="." index="3"]
stream = ExtResource( 5 )
bus = "SFX"
[connection signal="button_up" from="SpriteButtons/Phone" to="." method="_on_Orange_button_up"]
[connection signal="timeout" from="Timer" to="." method="_on_Timer_timeout"]

View file

@ -0,0 +1,119 @@
[gd_scene load_steps=18 format=2]
[ext_resource path="res://scenes/AlternativeChoices/AlternativeChoiceBase.tscn" type="PackedScene" id=1]
[ext_resource path="res://resources/AlternativeChoices/HoverAlternative.gdshader" type="Shader" id=2]
[ext_resource path="res://resources/AlternativeChoices/HoverAlternativeBlack.gdshader" type="Shader" id=3]
[ext_resource path="res://resources/AlternativeChoices/Timeline_5/Arrow.webp" type="Texture" id=4]
[ext_resource path="res://resources/AlternativeChoices/Timeline_10/Door.webp" type="Texture" id=5]
[ext_resource path="res://resources/AlternativeChoices/Timeline_9/Lounge2.webp" type="Texture" id=6]
[ext_resource path="res://scripts/AlternativeChoices/AlternativeChoiceTimeline_10.gd" type="Script" id=7]
[sub_resource type="ShaderMaterial" id=20]
shader = ExtResource( 2 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=22]
shader = ExtResource( 3 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=24]
shader = ExtResource( 2 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=29]
shader = ExtResource( 3 )
shader_param/mixing = 0.0
[sub_resource type="DynamicFontData" id=28]
font_path = "res://resources/fonts/TimesNewerRoman-Regular.otf"
[sub_resource type="DynamicFont" id=25]
size = 36
font_data = SubResource( 28 )
[sub_resource type="DynamicFontData" id=19]
font_path = "res://resources/fonts/TimesNewerRoman-Regular.otf"
[sub_resource type="DynamicFont" id=27]
size = 36
font_data = SubResource( 19 )
[sub_resource type="DynamicFontData" id=18]
font_path = "res://resources/fonts/TimesNewerRoman-Regular.otf"
[sub_resource type="DynamicFont" id=26]
size = 36
font_data = SubResource( 18 )
[node name="AlternativeChoice" instance=ExtResource( 1 )]
script = ExtResource( 7 )
[node name="Door" type="TextureButton" parent="SpriteButtons" index="0"]
material = SubResource( 20 )
margin_left = 769.0
margin_top = 587.0
margin_right = 998.0
margin_bottom = 1129.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 5 )
[node name="GoBack" type="TextureButton" parent="SpriteButtons" index="1"]
material = SubResource( 22 )
margin_left = 600.0
margin_top = 930.0
margin_right = 720.0
margin_bottom = 1020.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 4 )
[node name="Lounge" type="TextureButton" parent="SpriteButtons" index="2"]
material = SubResource( 24 )
margin_left = 1034.5
margin_top = 395.0
margin_right = 2056.5
margin_bottom = 1479.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 6 )
[node name="Garage" type="TextureButton" parent="SpriteButtons" index="3"]
material = SubResource( 29 )
margin_left = 1765.0
margin_top = 841.0
margin_right = 1885.0
margin_bottom = 931.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 4 )
flip_h = true
[node name="DoorLabel" type="Label" parent="Labels" index="0"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 25 )
align = 1
valign = 1
[node name="GoBackLabel" type="Label" parent="Labels" index="1"]
visible = false
margin_bottom = 43.0
custom_fonts/font = SubResource( 27 )
align = 1
valign = 1
[node name="LoungeLabel" type="Label" parent="Labels" index="2"]
visible = false
margin_bottom = 43.0
custom_fonts/font = SubResource( 26 )
align = 1
valign = 1
[node name="GarageLabel" type="Label" parent="Labels" index="3"]
visible = false
margin_bottom = 43.0
custom_fonts/font = SubResource( 26 )
align = 1
valign = 1
[connection signal="button_up" from="SpriteButtons/Door" to="." method="_on_Door_button_up"]
[connection signal="button_up" from="SpriteButtons/GoBack" to="." method="_on_GoBack_button_up"]
[connection signal="button_up" from="SpriteButtons/Lounge" to="." method="_on_Lounge_button_up"]
[connection signal="button_up" from="SpriteButtons/Garage" to="." method="_on_Garage_button_up"]

View file

@ -0,0 +1,348 @@
[gd_scene load_steps=33 format=2]
[ext_resource path="res://scenes/AlternativeChoices/AlternativeChoiceBase.tscn" type="PackedScene" id=1]
[ext_resource path="res://resources/AlternativeChoices/Timeline_120/Door_day.webp" type="Texture" id=2]
[ext_resource path="res://resources/graphics/backgrounds/panorama/gray.webp" type="Texture" id=3]
[ext_resource path="res://scripts/AlternativeChoices/AlternativeChoiceTimeline_120.gd" type="Script" id=4]
[ext_resource path="res://resources/AlternativeChoices/HoverAlternative.gdshader" type="Shader" id=5]
[ext_resource path="res://resources/AlternativeChoices/Timeline_5/Arrow.webp" type="Texture" id=6]
[ext_resource path="res://resources/audio/sfx/Shagi dom.ogg" type="AudioStream" id=7]
[ext_resource path="res://resources/graphics/backgrounds/panorama/blue_m.webp" type="Texture" id=8]
[ext_resource path="res://resources/graphics/backgrounds/panorama/white.webp" type="Texture" id=9]
[ext_resource path="res://resources/graphics/backgrounds/panorama/green.webp" type="Texture" id=10]
[ext_resource path="res://resources/graphics/backgrounds/panorama/pink.webp" type="Texture" id=11]
[ext_resource path="res://resources/graphics/backgrounds/panorama/purple.webp" type="Texture" id=12]
[ext_resource path="res://resources/graphics/backgrounds/panorama/red.webp" type="Texture" id=13]
[ext_resource path="res://resources/graphics/backgrounds/panorama/black.webp" type="Texture" id=14]
[ext_resource path="res://resources/graphics/backgrounds/panorama/Masks/gray_mask.png" type="BitMap" id=15]
[ext_resource path="res://resources/graphics/backgrounds/panorama/Masks/pink_mask.png" type="BitMap" id=16]
[ext_resource path="res://resources/graphics/backgrounds/panorama/Masks/blue_m.png" type="BitMap" id=17]
[sub_resource type="ShaderMaterial" id=40]
shader = ExtResource( 5 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=30]
shader = ExtResource( 5 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=31]
shader = ExtResource( 5 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=32]
shader = ExtResource( 5 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=33]
shader = ExtResource( 5 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=34]
shader = ExtResource( 5 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=35]
shader = ExtResource( 5 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=36]
shader = ExtResource( 5 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=37]
shader = ExtResource( 5 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=38]
shader = ExtResource( 5 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=39]
shader = ExtResource( 5 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=41]
shader = ExtResource( 5 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=42]
shader = ExtResource( 5 )
shader_param/mixing = 0.0
[sub_resource type="DynamicFontData" id=43]
font_path = "res://resources/fonts/TimesNewerRoman-Regular.otf"
[sub_resource type="DynamicFont" id=28]
size = 36
font_data = SubResource( 43 )
[node name="AlternativeChoice" instance=ExtResource( 1 )]
script = ExtResource( 4 )
[node name="SpriteButtons" parent="." index="0"]
z_index = 10
[node name="Garage" type="TextureButton" parent="SpriteButtons" index="0"]
material = SubResource( 40 )
margin_left = 943.0
margin_top = 139.0
margin_right = 1508.0
margin_bottom = 1239.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 2 )
[node name="Emilia" type="TextureButton" parent="SpriteButtons" index="1"]
material = SubResource( 30 )
margin_left = 2683.0
margin_top = 700.0
margin_right = 2803.0
margin_bottom = 790.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 6 )
flip_h = true
[node name="White" type="TextureButton" parent="SpriteButtons" index="2"]
material = SubResource( 31 )
margin_left = 2085.0
margin_top = 318.0
margin_right = 2609.0
margin_bottom = 1143.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 9 )
[node name="Amanda" type="TextureButton" parent="SpriteButtons" index="3"]
material = SubResource( 32 )
margin_left = 1667.0
margin_top = 735.0
margin_right = 2299.0
margin_bottom = 1426.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 11 )
texture_click_mask = ExtResource( 16 )
[node name="Robert" type="TextureButton" parent="SpriteButtons" index="4"]
material = SubResource( 33 )
margin_left = 130.0
margin_top = 431.0
margin_right = 769.0
margin_bottom = 1599.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 3 )
texture_click_mask = ExtResource( 15 )
[node name="Red" type="TextureButton" parent="SpriteButtons" index="5"]
material = SubResource( 34 )
margin_left = 1126.0
margin_top = 191.0
margin_right = 1637.0
margin_bottom = 1346.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 13 )
[node name="Blue_M" type="TextureButton" parent="SpriteButtons" index="6"]
material = SubResource( 35 )
margin_left = 1976.0
margin_top = 597.0
margin_right = 2529.0
margin_bottom = 1563.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 8 )
texture_click_mask = ExtResource( 17 )
[node name="Black" type="TextureButton" parent="SpriteButtons" index="7"]
material = SubResource( 36 )
margin_left = 558.0
margin_top = 466.0
margin_right = 1559.0
margin_bottom = 1459.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 14 )
[node name="Green" type="TextureButton" parent="SpriteButtons" index="8"]
material = SubResource( 37 )
margin_left = 1284.0
margin_top = 453.0
margin_right = 1931.0
margin_bottom = 1329.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 10 )
[node name="Dana" type="TextureButton" parent="SpriteButtons" index="9"]
material = SubResource( 38 )
margin_left = 2377.0
margin_top = 415.0
margin_right = 2845.0
margin_bottom = 1192.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 12 )
[node name="Kitchen" type="TextureButton" parent="SpriteButtons" index="10"]
material = SubResource( 39 )
margin_left = 2702.0
margin_top = 977.0
margin_right = 2822.0
margin_bottom = 1067.0
rect_rotation = 35.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 6 )
flip_h = true
[node name="Basement" type="TextureButton" parent="SpriteButtons" index="11"]
material = SubResource( 41 )
margin_left = 94.0
margin_top = 889.0
margin_right = 214.0
margin_bottom = 979.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 6 )
[node name="Stairs" type="TextureButton" parent="SpriteButtons" index="12"]
material = SubResource( 42 )
margin_left = 1360.0
margin_top = 1044.0
margin_right = 1480.0
margin_bottom = 1134.0
rect_rotation = 270.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 6 )
[node name="1" type="Label" parent="Labels" index="0"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 28 )
align = 1
valign = 1
[node name="2" type="Label" parent="Labels" index="1"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 28 )
align = 1
valign = 1
[node name="3" type="Label" parent="Labels" index="2"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 28 )
align = 1
valign = 1
[node name="4" type="Label" parent="Labels" index="3"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 28 )
align = 1
valign = 1
[node name="5" type="Label" parent="Labels" index="4"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 28 )
align = 1
valign = 1
[node name="6" type="Label" parent="Labels" index="5"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 28 )
align = 1
valign = 1
[node name="7" type="Label" parent="Labels" index="6"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 28 )
align = 1
valign = 1
[node name="8" type="Label" parent="Labels" index="7"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 28 )
align = 1
valign = 1
[node name="9" type="Label" parent="Labels" index="8"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 28 )
align = 1
valign = 1
[node name="10" type="Label" parent="Labels" index="9"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 28 )
align = 1
valign = 1
[node name="11" type="Label" parent="Labels" index="10"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 28 )
align = 1
valign = 1
[node name="12" type="Label" parent="Labels" index="11"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 28 )
align = 1
valign = 1
[node name="13" type="Label" parent="Labels" index="12"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 28 )
align = 1
valign = 1
[node name="MovingControls" type="Node2D" parent="." index="2"]
z_index = 400
[node name="LeftMove" type="TextureRect" parent="MovingControls" index="0"]
margin_right = 60.0
margin_bottom = 1080.0
[node name="Sprite" type="Sprite" parent="MovingControls/LeftMove" index="0"]
position = Vector2( 0, 495 )
scale = Vector2( 0.5, 0.5 )
texture = ExtResource( 6 )
centered = false
[node name="RightMove" type="TextureRect" parent="MovingControls" index="1"]
margin_left = 1860.0
margin_right = 1920.0
margin_bottom = 1080.0
flip_h = true
[node name="Sprite" type="Sprite" parent="MovingControls/RightMove" index="0"]
position = Vector2( 0, 495 )
scale = Vector2( 0.5, 0.5 )
texture = ExtResource( 6 )
centered = false
flip_h = true
[node name="WalkingEffect" type="AudioStreamPlayer2D" parent="." index="3"]
stream = ExtResource( 7 )
volume_db = 7.0
bus = "SFX"
[connection signal="button_up" from="SpriteButtons/Garage" to="." method="_on_Garage_button_up"]
[connection signal="button_up" from="SpriteButtons/Emilia" to="." method="_on_2_button_up"]
[connection signal="button_up" from="SpriteButtons/White" to="." method="_on_3_button_up"]
[connection signal="button_up" from="SpriteButtons/Amanda" to="." method="_on_1_button_up"]
[connection signal="button_up" from="SpriteButtons/Robert" to="." method="_on_4_button_up"]
[connection signal="button_up" from="SpriteButtons/Red" to="." method="_on_5_button_up"]
[connection signal="button_up" from="SpriteButtons/Blue_M" to="." method="_on_6_button_up"]
[connection signal="button_up" from="SpriteButtons/Black" to="." method="_on_7_button_up"]
[connection signal="button_up" from="SpriteButtons/Green" to="." method="_on_8_button_up"]
[connection signal="button_up" from="SpriteButtons/Dana" to="." method="_on_9_button_up"]
[connection signal="button_up" from="SpriteButtons/Kitchen" to="." method="_on_Kitchen_button_up"]
[connection signal="button_up" from="SpriteButtons/Basement" to="." method="_on_Basement_button_up"]
[connection signal="button_up" from="SpriteButtons/Stairs" to="." method="_on_13_button_up"]
[connection signal="mouse_entered" from="MovingControls/LeftMove" to="." method="_on_LeftMove_mouse_entered"]
[connection signal="mouse_exited" from="MovingControls/LeftMove" to="." method="_on_LeftMove_mouse_exited"]
[connection signal="mouse_entered" from="MovingControls/RightMove" to="." method="_on_RightMove_mouse_entered"]
[connection signal="mouse_exited" from="MovingControls/RightMove" to="." method="_on_RightMove_mouse_exited"]

View file

@ -0,0 +1,38 @@
[gd_scene load_steps=8 format=2]
[ext_resource path="res://scenes/AlternativeChoices/AlternativeChoiceBase.tscn" type="PackedScene" id=1]
[ext_resource path="res://resources/AlternativeChoices/HoverAlternative.gdshader" type="Shader" id=2]
[ext_resource path="res://resources/AlternativeChoices/Timeline_5/Arrow.webp" type="Texture" id=3]
[ext_resource path="res://scripts/AlternativeChoices/AlternativeChoiceTimeline_120_basement.gd" type="Script" id=4]
[sub_resource type="ShaderMaterial" id=30]
shader = ExtResource( 2 )
shader_param/mixing = 0.0
[sub_resource type="DynamicFontData" id=29]
font_path = "res://resources/fonts/TimesNewerRoman-Regular.otf"
[sub_resource type="DynamicFont" id=31]
size = 36
font_data = SubResource( 29 )
[node name="AlternativeChoice" instance=ExtResource( 1 )]
script = ExtResource( 4 )
[node name="Back" type="TextureButton" parent="SpriteButtons" index="0"]
material = SubResource( 30 )
margin_left = 1476.0
margin_top = 188.0
margin_right = 1596.0
margin_bottom = 278.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 3 )
[node name="1" type="Label" parent="Labels" index="0"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 31 )
align = 1
valign = 1
[connection signal="button_up" from="SpriteButtons/Back" to="." method="_on_Back_button_up"]

View file

@ -0,0 +1,100 @@
[gd_scene load_steps=12 format=2]
[ext_resource path="res://resources/AlternativeChoices/Timeline_32/door_night.webp" type="Texture" id=1]
[ext_resource path="res://resources/AlternativeChoices/Timeline_5/Arrow.webp" type="Texture" id=2]
[ext_resource path="res://scenes/AlternativeChoices/AlternativeChoiceBase.tscn" type="PackedScene" id=3]
[ext_resource path="res://resources/AlternativeChoices/HoverAlternative.gdshader" type="Shader" id=4]
[ext_resource path="res://scripts/AlternativeChoices/AlternativeChoiceTimeline_120_front.gd" type="Script" id=5]
[ext_resource path="res://resources/AlternativeChoices/Timeline_5/LightHouse_n.webp" type="Texture" id=6]
[sub_resource type="ShaderMaterial" id=3]
shader = ExtResource( 4 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=4]
shader = ExtResource( 4 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=7]
shader = ExtResource( 4 )
shader_param/mixing = 0.0
[sub_resource type="DynamicFontData" id=6]
font_path = "res://resources/fonts/TimesNewerRoman-Regular.otf"
[sub_resource type="DynamicFont" id=5]
size = 36
font_data = SubResource( 6 )
[node name="AlternativeChoice" instance=ExtResource( 3 )]
z_index = 1
script = ExtResource( 5 )
[node name="Door" type="TextureButton" parent="SpriteButtons" index="0"]
material = SubResource( 3 )
margin_left = 823.0
margin_top = 526.0
margin_right = 1123.0
margin_bottom = 1076.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 1 )
[node name="ArrowSmoking" type="TextureButton" parent="SpriteButtons" index="1"]
material = SubResource( 4 )
margin_left = 1387.0
margin_top = 671.0
margin_right = 1507.0
margin_bottom = 761.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 2 )
[node name="ArrowGarage" type="TextureButton" parent="SpriteButtons" index="2"]
material = SubResource( 4 )
margin_left = 100.0
margin_top = 722.5
margin_right = 220.0
margin_bottom = 812.5
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 2 )
[node name="LightHouse" type="TextureButton" parent="SpriteButtons" index="3"]
material = SubResource( 7 )
margin_left = 1584.0
margin_top = 159.5
margin_right = 2194.0
margin_bottom = 1159.5
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 6 )
[node name="Door" type="Label" parent="Labels" index="0"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 5 )
align = 1
valign = 1
[node name="Arrow" type="Label" parent="Labels" index="1"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 5 )
align = 1
valign = 1
[node name="Arrow2" type="Label" parent="Labels" index="2"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 5 )
align = 1
valign = 1
[node name="LightHouse" type="Label" parent="Labels" index="3"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 5 )
align = 1
valign = 1
[connection signal="button_up" from="SpriteButtons/Door" to="." method="_on_Door_button_up"]
[connection signal="button_up" from="SpriteButtons/ArrowSmoking" to="." method="_on_ArrowSmoking_button_up"]
[connection signal="button_up" from="SpriteButtons/ArrowGarage" to="." method="_on_ArrowGarage_button_up"]
[connection signal="button_up" from="SpriteButtons/LightHouse" to="." method="_on_LightHouse_button_up"]

View file

@ -0,0 +1,92 @@
[gd_scene load_steps=9 format=2]
[ext_resource path="res://scenes/AlternativeChoices/AlternativeChoiceBase.tscn" type="PackedScene" id=1]
[ext_resource path="res://resources/AlternativeChoices/HoverAlternative.gdshader" type="Shader" id=2]
[ext_resource path="res://resources/AlternativeChoices/Timeline_5/Arrow.webp" type="Texture" id=3]
[ext_resource path="res://scripts/AlternativeChoices/AlternativeChoiceTimeline_120_smoking.gd" type="Script" id=4]
[ext_resource path="res://resources/AlternativeChoices/Timeline_120_smoking/blue.webp" type="Texture" id=13]
[sub_resource type="ShaderMaterial" id=9]
shader = ExtResource( 2 )
shader_param/mixing = 0.0
[sub_resource type="DynamicFontData" id=11]
font_path = "res://resources/fonts/TimesNewerRoman-Regular.otf"
[sub_resource type="DynamicFont" id=10]
size = 36
font_data = SubResource( 11 )
[node name="AlternativeChoice" instance=ExtResource( 1 )]
script = ExtResource( 4 )
[node name="ArrowFront" type="TextureButton" parent="SpriteButtons" index="0"]
material = SubResource( 9 )
margin_left = 50.0
margin_top = 650.0
margin_right = 170.0
margin_bottom = 740.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 3 )
[node name="ArrowGarage" type="TextureButton" parent="SpriteButtons" index="1"]
material = SubResource( 9 )
margin_left = 1800.0
margin_top = 650.0
margin_right = 1920.0
margin_bottom = 740.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 3 )
flip_h = true
[node name="Blue" type="TextureButton" parent="SpriteButtons" index="2"]
material = SubResource( 9 )
margin_left = 1027.0
margin_top = 692.0
margin_right = 1510.0
margin_bottom = 1917.0
rect_scale = Vector2( 0.205, 0.205 )
texture_normal = ExtResource( 13 )
flip_h = true
[node name="Body" type="TextureButton" parent="SpriteButtons" index="3"]
material = SubResource( 9 )
margin_left = 1553.0
margin_top = 733.0
margin_right = 2333.0
margin_bottom = 1237.0
rect_scale = Vector2( 0.25, 0.25 )
flip_h = true
[node name="ArrowLabel" type="Label" parent="Labels" index="0"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 10 )
align = 1
valign = 1
[node name="ArrowLabel2" type="Label" parent="Labels" index="1"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 10 )
align = 1
valign = 1
[node name="Blue" type="Label" parent="Labels" index="2"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 10 )
align = 1
valign = 1
[node name="Body" type="Label" parent="Labels" index="3"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 10 )
align = 1
valign = 1
[connection signal="button_up" from="SpriteButtons/ArrowFront" to="." method="_on_ArrowFront_button_up"]
[connection signal="button_up" from="SpriteButtons/ArrowGarage" to="." method="_on_ArrowGarage_button_up"]
[connection signal="button_up" from="SpriteButtons/Blue" to="." method="_on_Blue_button_up"]
[connection signal="button_up" from="SpriteButtons/Body" to="." method="_on_Body_button_up"]

View file

@ -0,0 +1,212 @@
[gd_scene load_steps=18 format=2]
[ext_resource path="res://scenes/AlternativeChoices/AlternativeChoiceBase.tscn" type="PackedScene" id=1]
[ext_resource path="res://resources/graphics/backgrounds/panorama/white.webp" type="Texture" id=2]
[ext_resource path="res://resources/AlternativeChoices/HoverAlternative.gdshader" type="Shader" id=3]
[ext_resource path="res://scripts/AlternativeChoices/AlternativeChoiceTimeline_140.gd" type="Script" id=4]
[ext_resource path="res://resources/AlternativeChoices/Timeline_120/Door_day.webp" type="Texture" id=5]
[ext_resource path="res://resources/AlternativeChoices/Timeline_5/Arrow.webp" type="Texture" id=6]
[ext_resource path="res://resources/audio/sfx/Shagi dom.ogg" type="AudioStream" id=7]
[ext_resource path="res://resources/graphics/backgrounds/panorama/red.webp" type="Texture" id=8]
[sub_resource type="ShaderMaterial" id=27]
shader = ExtResource( 3 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=23]
shader = ExtResource( 3 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=24]
shader = ExtResource( 3 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=25]
shader = ExtResource( 3 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=26]
shader = ExtResource( 3 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=28]
shader = ExtResource( 3 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=29]
shader = ExtResource( 3 )
shader_param/mixing = 0.0
[sub_resource type="DynamicFontData" id=17]
font_path = "res://resources/fonts/TimesNewerRoman-Regular.otf"
[sub_resource type="DynamicFont" id=22]
size = 36
font_data = SubResource( 17 )
[node name="AlternativeChoice" instance=ExtResource( 1 )]
script = ExtResource( 4 )
[node name="SpriteButtons" parent="." index="0"]
z_index = 1
[node name="Garage" type="TextureButton" parent="SpriteButtons" index="0"]
material = SubResource( 27 )
margin_left = 943.0
margin_top = 139.0
margin_right = 1508.0
margin_bottom = 1239.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 5 )
[node name="Red" type="TextureButton" parent="SpriteButtons" index="1"]
material = SubResource( 23 )
margin_left = 1126.0
margin_top = 191.0
margin_right = 1637.0
margin_bottom = 1346.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 8 )
[node name="White" type="TextureButton" parent="SpriteButtons" index="2"]
material = SubResource( 24 )
margin_left = 2085.0
margin_top = 318.0
margin_right = 2609.0
margin_bottom = 1143.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 2 )
[node name="Emilia" type="TextureButton" parent="SpriteButtons" index="3"]
material = SubResource( 25 )
margin_left = 2656.0
margin_top = 735.0
margin_right = 2776.0
margin_bottom = 825.0
rect_scale = Vector2( 0.5, 0.5 )
focus_mode = 0
texture_normal = ExtResource( 6 )
flip_h = true
[node name="Stairs" type="TextureButton" parent="SpriteButtons" index="4"]
material = SubResource( 26 )
margin_left = 1460.0
margin_top = 1053.0
margin_right = 1580.0
margin_bottom = 1143.0
rect_rotation = 270.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 6 )
[node name="Basement" type="TextureButton" parent="SpriteButtons" index="5"]
material = SubResource( 28 )
margin_left = 70.0001
margin_top = 989.0
margin_right = 190.0
margin_bottom = 1079.0
rect_rotation = -35.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 6 )
[node name="Kitchen" type="TextureButton" parent="SpriteButtons" index="6"]
material = SubResource( 29 )
margin_left = 2680.0
margin_top = 987.0
margin_right = 2800.0
margin_bottom = 1077.0
rect_rotation = 35.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 6 )
flip_h = true
[node name="1" type="Label" parent="Labels" index="0"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 22 )
align = 1
valign = 1
[node name="2" type="Label" parent="Labels" index="1"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 22 )
align = 1
valign = 1
[node name="3" type="Label" parent="Labels" index="2"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 22 )
align = 1
valign = 1
[node name="4" type="Label" parent="Labels" index="3"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 22 )
align = 1
valign = 1
[node name="5" type="Label" parent="Labels" index="4"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 22 )
align = 1
valign = 1
[node name="6" type="Label" parent="Labels" index="5"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 22 )
align = 1
valign = 1
[node name="7" type="Label" parent="Labels" index="6"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 22 )
align = 1
valign = 1
[node name="MovingControls" type="Node2D" parent="." index="2"]
z_index = 400
[node name="LeftMove" type="TextureRect" parent="MovingControls" index="0"]
margin_right = 60.0
margin_bottom = 1080.0
[node name="Sprite" type="Sprite" parent="MovingControls/LeftMove" index="0"]
position = Vector2( 0, 495 )
scale = Vector2( 0.5, 0.5 )
texture = ExtResource( 6 )
centered = false
[node name="RightMove" type="TextureRect" parent="MovingControls" index="1"]
margin_left = 1860.0
margin_right = 1920.0
margin_bottom = 1080.0
flip_h = true
[node name="Sprite" type="Sprite" parent="MovingControls/RightMove" index="0"]
position = Vector2( 0, 495 )
scale = Vector2( 0.5, 0.5 )
texture = ExtResource( 6 )
centered = false
flip_h = true
[node name="WalkingEffect" type="AudioStreamPlayer2D" parent="." index="3"]
stream = ExtResource( 7 )
volume_db = 7.0
bus = "SFX"
[connection signal="button_up" from="SpriteButtons/Garage" to="." method="_on_Garage_button_up"]
[connection signal="button_up" from="SpriteButtons/Red" to="." method="_on_2_button_up"]
[connection signal="button_up" from="SpriteButtons/White" to="." method="_on_4_button_up"]
[connection signal="button_up" from="SpriteButtons/Emilia" to="." method="_on_15_button_up"]
[connection signal="button_up" from="SpriteButtons/Stairs" to="." method="_on_Stairs_button_up"]
[connection signal="button_up" from="SpriteButtons/Basement" to="." method="_on_Basement_button_up"]
[connection signal="button_up" from="SpriteButtons/Kitchen" to="." method="_on_Kitchen_button_up"]
[connection signal="mouse_entered" from="MovingControls/LeftMove" to="." method="_on_LeftMove_mouse_entered"]
[connection signal="mouse_exited" from="MovingControls/LeftMove" to="." method="_on_LeftMove_mouse_exited"]
[connection signal="mouse_entered" from="MovingControls/RightMove" to="." method="_on_RightMove_mouse_entered"]
[connection signal="mouse_exited" from="MovingControls/RightMove" to="." method="_on_RightMove_mouse_exited"]

View file

@ -0,0 +1,59 @@
[gd_scene load_steps=9 format=2]
[ext_resource path="res://scenes/AlternativeChoices/AlternativeChoiceBase.tscn" type="PackedScene" id=1]
[ext_resource path="res://scripts/AlternativeChoices/AlternativeChoiceTimeline_140_lighthouse.gd" type="Script" id=2]
[ext_resource path="res://resources/AlternativeChoices/Timeline_5/Arrow.webp" type="Texture" id=3]
[ext_resource path="res://resources/AlternativeChoices/HoverAlternativeBlack.gdshader" type="Shader" id=4]
[sub_resource type="ShaderMaterial" id=23]
shader = ExtResource( 4 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=24]
shader = ExtResource( 4 )
shader_param/mixing = 0.0
[sub_resource type="DynamicFontData" id=26]
font_path = "res://resources/fonts/TimesNewerRoman-Regular.otf"
[sub_resource type="DynamicFont" id=25]
size = 36
font_data = SubResource( 26 )
[node name="AlternativeChoice" instance=ExtResource( 1 )]
script = ExtResource( 2 )
[node name="Arrow" type="TextureButton" parent="SpriteButtons" index="0"]
material = SubResource( 23 )
margin_left = 142.0
margin_top = 494.0
margin_right = 262.0
margin_bottom = 584.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 3 )
[node name="Behind" type="TextureButton" parent="SpriteButtons" index="1"]
material = SubResource( 24 )
margin_left = 798.0
margin_top = 832.0
margin_right = 918.0
margin_bottom = 922.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 3 )
[node name="a1" type="Label" parent="Labels" index="0"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 25 )
align = 1
valign = 1
[node name="a2" type="Label" parent="Labels" index="1"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 25 )
align = 1
valign = 1
[connection signal="button_up" from="SpriteButtons/Arrow" to="." method="_on_Arrow_button_up"]
[connection signal="button_up" from="SpriteButtons/Behind" to="." method="_on_Behind_button_up"]

View file

@ -0,0 +1,57 @@
[gd_scene load_steps=8 format=2]
[ext_resource path="res://scenes/AlternativeChoices/AlternativeChoiceBase.tscn" type="PackedScene" id=1]
[ext_resource path="res://scripts/AlternativeChoices/AlternativeChoiceTimeline_140_lighthouse_back.gd" type="Script" id=2]
[ext_resource path="res://resources/AlternativeChoices/HoverAlternativeBlack.gdshader" type="Shader" id=3]
[ext_resource path="res://resources/AlternativeChoices/Timeline_5/Arrow.webp" type="Texture" id=4]
[sub_resource type="ShaderMaterial" id=23]
shader = ExtResource( 3 )
shader_param/mixing = 0.0
[sub_resource type="DynamicFontData" id=25]
font_path = "res://resources/fonts/TimesNewerRoman-Regular.otf"
[sub_resource type="DynamicFont" id=24]
size = 36
font_data = SubResource( 25 )
[node name="AlternativeChoice" instance=ExtResource( 1 )]
script = ExtResource( 2 )
[node name="SpriteButtons" parent="." index="0"]
z_index = 1
[node name="Arrow" type="TextureButton" parent="SpriteButtons" index="0"]
material = SubResource( 23 )
margin_left = 100.0
margin_top = 800.0
margin_right = 220.0
margin_bottom = 890.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 4 )
[node name="Cliff" type="TextureButton" parent="SpriteButtons" index="1"]
material = SubResource( 23 )
margin_left = 955.0
margin_top = 317.0
margin_right = 1433.0
margin_bottom = 647.0
rect_scale = Vector2( 0.5, 0.5 )
[node name="a1" type="Label" parent="Labels" index="0"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 24 )
align = 1
valign = 1
[node name="a2" type="Label" parent="Labels" index="1"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 24 )
align = 1
valign = 1
[connection signal="button_up" from="SpriteButtons/Arrow" to="." method="_on_Arrow_button_up"]
[connection signal="button_up" from="SpriteButtons/Cliff" to="." method="_on_Cliff_button_up"]

View file

@ -0,0 +1,107 @@
[gd_scene load_steps=13 format=2]
[ext_resource path="res://scenes/AlternativeChoices/AlternativeChoiceBase.tscn" type="PackedScene" id=1]
[ext_resource path="res://resources/AlternativeChoices/HoverAlternative.gdshader" type="Shader" id=2]
[ext_resource path="res://resources/AlternativeChoices/Timeline_5/Arrow.webp" type="Texture" id=3]
[ext_resource path="res://scripts/AlternativeChoices/AlternativeChoiceTimeline_140_smoking.gd" type="Script" id=4]
[ext_resource path="res://resources/AlternativeChoices/Timeline_120_smoking/blue.webp" type="Texture" id=5]
[sub_resource type="ShaderMaterial" id=9]
shader = ExtResource( 2 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=11]
shader = ExtResource( 2 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=12]
shader = ExtResource( 2 )
shader_param/mixing = 0.0
[sub_resource type="DynamicFontData" id=8]
font_path = "res://resources/fonts/TimesNewerRoman-Regular.otf"
[sub_resource type="DynamicFont" id=10]
size = 36
font_data = SubResource( 8 )
[sub_resource type="DynamicFontData" id=13]
font_path = "res://resources/fonts/TimesNewerRoman-Regular.otf"
[sub_resource type="DynamicFont" id=14]
size = 36
font_data = SubResource( 13 )
[node name="AlternativeChoice" instance=ExtResource( 1 )]
script = ExtResource( 4 )
[node name="ArrowFront" type="TextureButton" parent="SpriteButtons" index="0"]
material = SubResource( 9 )
margin_left = 50.0
margin_top = 650.0
margin_right = 170.0
margin_bottom = 740.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 3 )
[node name="ArrowGarage" type="TextureButton" parent="SpriteButtons" index="1"]
material = SubResource( 9 )
margin_left = 1800.0
margin_top = 650.0
margin_right = 1920.0
margin_bottom = 740.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 3 )
flip_h = true
[node name="Blue" type="TextureButton" parent="SpriteButtons" index="2"]
material = SubResource( 11 )
margin_left = 1019.0
margin_top = 691.0
margin_right = 1502.0
margin_bottom = 1916.0
rect_scale = Vector2( 0.205, 0.205 )
texture_normal = ExtResource( 5 )
flip_h = true
[node name="Body" type="TextureButton" parent="SpriteButtons" index="3"]
material = SubResource( 12 )
margin_left = 1553.0
margin_top = 733.0
margin_right = 2333.0
margin_bottom = 1237.0
rect_scale = Vector2( 0.25, 0.25 )
flip_h = true
[node name="ArrowLabel" type="Label" parent="Labels" index="0"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 10 )
align = 1
valign = 1
[node name="ArrowLabel2" type="Label" parent="Labels" index="1"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 10 )
align = 1
valign = 1
[node name="Blue" type="Label" parent="Labels" index="2"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 14 )
align = 1
valign = 1
[node name="Body" type="Label" parent="Labels" index="3"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 14 )
align = 1
valign = 1
[connection signal="button_up" from="SpriteButtons/ArrowFront" to="." method="_on_ArrowFront_button_up"]
[connection signal="button_up" from="SpriteButtons/ArrowGarage" to="." method="_on_ArrowGarage_button_up"]
[connection signal="button_up" from="SpriteButtons/Blue" to="." method="_on_Blue_button_up"]
[connection signal="button_up" from="SpriteButtons/Body" to="." method="_on_Body_button_up"]

View file

@ -0,0 +1,280 @@
[gd_scene load_steps=39 format=2]
[ext_resource path="res://scenes/AlternativeChoices/AlternativeChoiceBase.tscn" type="PackedScene" id=1]
[ext_resource path="res://scripts/AlternativeChoices/AlternativeChoiceTimeline_157_1.gd" type="Script" id=2]
[ext_resource path="res://resources/AlternativeChoices/Timeline_157_1/Purple.webp" type="Texture" id=3]
[ext_resource path="res://resources/AlternativeChoices/Timeline_157_1/Green.webp" type="Texture" id=4]
[ext_resource path="res://resources/AlternativeChoices/Timeline_157_1/Masks/Pink_Mask.png" type="BitMap" id=5]
[ext_resource path="res://resources/AlternativeChoices/Timeline_157_1/Masks/Orange_Mask.png" type="BitMap" id=6]
[ext_resource path="res://resources/AlternativeChoices/Timeline_157_1/Masks/Red_Mask.png" type="BitMap" id=7]
[ext_resource path="res://resources/AlternativeChoices/Timeline_157_1/Masks/Blue_M_Mask.png" type="BitMap" id=8]
[ext_resource path="res://resources/AlternativeChoices/Timeline_157_1/Masks/Gray_Mask.png" type="BitMap" id=9]
[ext_resource path="res://resources/AlternativeChoices/Timeline_157_1/Masks/Blue_F_Mask.png" type="BitMap" id=10]
[ext_resource path="res://resources/AlternativeChoices/Timeline_157_1/Masks/Yellow_Mask.png" type="BitMap" id=11]
[ext_resource path="res://resources/AlternativeChoices/Timeline_157_1/Masks/White_Mask.png" type="BitMap" id=12]
[ext_resource path="res://resources/AlternativeChoices/Timeline_157_1/Masks/Black_Mask.png" type="BitMap" id=13]
[ext_resource path="res://resources/AlternativeChoices/Timeline_157_1/White.webp" type="Texture" id=14]
[ext_resource path="res://resources/AlternativeChoices/Timeline_157_1/Yellow.webp" type="Texture" id=15]
[ext_resource path="res://resources/AlternativeChoices/Timeline_157_1/Gray.webp" type="Texture" id=16]
[ext_resource path="res://resources/AlternativeChoices/Timeline_157_1/Pink.webp" type="Texture" id=17]
[ext_resource path="res://resources/AlternativeChoices/Timeline_157_1/Black.webp" type="Texture" id=18]
[ext_resource path="res://resources/AlternativeChoices/Timeline_157_1/Orange.webp" type="Texture" id=19]
[ext_resource path="res://resources/AlternativeChoices/Timeline_157_1/Red.webp" type="Texture" id=20]
[ext_resource path="res://resources/AlternativeChoices/Timeline_157_1/Blue_M.webp" type="Texture" id=21]
[ext_resource path="res://resources/AlternativeChoices/Timeline_157_1/Blue_F.webp" type="Texture" id=22]
[ext_resource path="res://resources/AlternativeChoices/Timeline_157_1/Masks/Purple_Mask.png" type="BitMap" id=23]
[ext_resource path="res://resources/AlternativeChoices/Timeline_157_1/Masks/Green_Mask.png" type="BitMap" id=24]
[ext_resource path="res://resources/AlternativeChoices/HoverAlternative.gdshader" type="Shader" id=25]
[sub_resource type="ShaderMaterial" id=1]
shader = ExtResource( 25 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=2]
shader = ExtResource( 25 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=3]
shader = ExtResource( 25 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=4]
shader = ExtResource( 25 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=5]
shader = ExtResource( 25 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=6]
shader = ExtResource( 25 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=7]
shader = ExtResource( 25 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=8]
shader = ExtResource( 25 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=9]
shader = ExtResource( 25 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=10]
shader = ExtResource( 25 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=11]
shader = ExtResource( 25 )
shader_param/mixing = 0.0
[sub_resource type="DynamicFontData" id=20]
font_path = "res://resources/fonts/TimesNewerRoman-Regular.otf"
[sub_resource type="DynamicFont" id=21]
size = 36
font_data = SubResource( 20 )
[node name="AlternativeChoice" instance=ExtResource( 1 )]
script = ExtResource( 2 )
[node name="White" type="TextureButton" parent="SpriteButtons" index="0"]
material = SubResource( 1 )
margin_left = 1119.34
margin_top = 70.4
margin_right = 1674.34
margin_bottom = 1015.4
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 14 )
texture_click_mask = ExtResource( 12 )
[node name="Gray" type="TextureButton" parent="SpriteButtons" index="1"]
material = SubResource( 2 )
margin_left = 1075.3
margin_top = 220.5
margin_right = 1710.3
margin_bottom = 866.5
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 16 )
texture_click_mask = ExtResource( 9 )
[node name="Pink" type="TextureButton" parent="SpriteButtons" index="2"]
material = SubResource( 3 )
margin_left = 1252.5
margin_top = 350.0
margin_right = 1600.5
margin_bottom = 940.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 17 )
texture_click_mask = ExtResource( 5 )
[node name="Yellow" type="TextureButton" parent="SpriteButtons" index="3"]
material = SubResource( 4 )
margin_left = 1050.0
margin_top = 423.0
margin_right = 1790.0
margin_bottom = 1548.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 15 )
texture_click_mask = ExtResource( 11 )
[node name="Orange" type="TextureButton" parent="SpriteButtons" index="4"]
material = SubResource( 5 )
margin_left = 1127.0
margin_top = 519.0
margin_right = 2054.0
margin_bottom = 1641.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 19 )
texture_click_mask = ExtResource( 6 )
[node name="Black" type="TextureButton" parent="SpriteButtons" index="5"]
material = SubResource( 6 )
margin_left = 908.0
margin_top = 126.0
margin_right = 1151.0
margin_bottom = 587.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 18 )
texture_click_mask = ExtResource( 13 )
[node name="Red" type="TextureButton" parent="SpriteButtons" index="6"]
material = SubResource( 7 )
margin_left = 588.0
margin_top = 108.0
margin_right = 1054.0
margin_bottom = 693.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 20 )
texture_click_mask = ExtResource( 7 )
[node name="Blue_M" type="TextureButton" parent="SpriteButtons" index="7"]
material = SubResource( 8 )
margin_left = 545.5
margin_top = 229.0
margin_right = 928.5
margin_bottom = 856.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 21 )
texture_click_mask = ExtResource( 8 )
[node name="Blue_F" type="TextureButton" parent="SpriteButtons" index="8"]
material = SubResource( 9 )
margin_left = 491.0
margin_top = 306.0
margin_right = 961.0
margin_bottom = 1054.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 22 )
texture_click_mask = ExtResource( 10 )
[node name="Purple" type="TextureButton" parent="SpriteButtons" index="9"]
material = SubResource( 10 )
margin_left = 451.0
margin_top = 393.0
margin_right = 1198.0
margin_bottom = 1595.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 3 )
texture_click_mask = ExtResource( 23 )
[node name="Green" type="TextureButton" parent="SpriteButtons" index="10"]
material = SubResource( 11 )
margin_left = 412.0
margin_top = 563.0
margin_right = 1380.0
margin_bottom = 1597.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 4 )
texture_click_mask = ExtResource( 24 )
[node name="a1" type="Label" parent="Labels" index="0"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 21 )
align = 1
valign = 1
[node name="a2" type="Label" parent="Labels" index="1"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 21 )
align = 1
valign = 1
[node name="a3" type="Label" parent="Labels" index="2"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 21 )
align = 1
valign = 1
[node name="a4" type="Label" parent="Labels" index="3"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 21 )
align = 1
valign = 1
[node name="a5" type="Label" parent="Labels" index="4"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 21 )
align = 1
valign = 1
[node name="a6" type="Label" parent="Labels" index="5"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 21 )
align = 1
valign = 1
[node name="a7" type="Label" parent="Labels" index="6"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 21 )
align = 1
valign = 1
[node name="a8" type="Label" parent="Labels" index="7"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 21 )
align = 1
valign = 1
[node name="a9" type="Label" parent="Labels" index="8"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 21 )
align = 1
valign = 1
[node name="a10" type="Label" parent="Labels" index="9"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 21 )
align = 1
valign = 1
[node name="a11" type="Label" parent="Labels" index="10"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 21 )
align = 1
valign = 1
[connection signal="button_up" from="SpriteButtons/White" to="." method="_on_White_button_up"]
[connection signal="button_up" from="SpriteButtons/Gray" to="." method="_on_Gray_button_up"]
[connection signal="button_up" from="SpriteButtons/Pink" to="." method="_on_Pink_button_up"]
[connection signal="button_up" from="SpriteButtons/Yellow" to="." method="_on_Yellow_button_up"]
[connection signal="button_up" from="SpriteButtons/Orange" to="." method="_on_Orange_button_up"]
[connection signal="button_up" from="SpriteButtons/Black" to="." method="_on_Black_button_up"]
[connection signal="button_up" from="SpriteButtons/Red" to="." method="_on_Red_button_up"]
[connection signal="button_up" from="SpriteButtons/Blue_M" to="." method="_on_Blue_M_button_up"]
[connection signal="button_up" from="SpriteButtons/Blue_F" to="." method="_on_Blue_F_button_up"]
[connection signal="button_up" from="SpriteButtons/Purple" to="." method="_on_Purple_button_up"]
[connection signal="button_up" from="SpriteButtons/Green" to="." method="_on_Green_button_up"]

View file

@ -0,0 +1,102 @@
[gd_scene load_steps=17 format=2]
[ext_resource path="res://scenes/AlternativeChoices/AlternativeChoiceBase.tscn" type="PackedScene" id=1]
[ext_resource path="res://resources/AlternativeChoices/Timeline_165/pink_mask.png" type="BitMap" id=2]
[ext_resource path="res://resources/AlternativeChoices/HoverAlternative.gdshader" type="Shader" id=3]
[ext_resource path="res://scripts/AlternativeChoices/AlternativeChoiceTimeline_165.gd" type="Script" id=4]
[ext_resource path="res://resources/AlternativeChoices/Timeline_165/white.webp" type="Texture" id=5]
[ext_resource path="res://resources/AlternativeChoices/Timeline_165/blue_mask.png" type="BitMap" id=6]
[ext_resource path="res://resources/AlternativeChoices/Timeline_165/white_mask.png" type="BitMap" id=7]
[ext_resource path="res://resources/AlternativeChoices/Timeline_165/blue.webp" type="Texture" id=8]
[ext_resource path="res://resources/AlternativeChoices/Timeline_165/pink.webp" type="Texture" id=9]
[ext_resource path="res://resources/graphics/GUI/ChoiceButtonTexture.webp" type="Texture" id=10]
[sub_resource type="ShaderMaterial" id=32]
shader = ExtResource( 3 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=33]
shader = ExtResource( 3 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=30]
shader = ExtResource( 3 )
shader_param/mixing = 0.0
[sub_resource type="DynamicFontData" id=29]
font_path = "res://resources/fonts/TimesNewerRoman-Regular.otf"
[sub_resource type="DynamicFont" id=31]
size = 36
font_data = SubResource( 29 )
[sub_resource type="StyleBoxTexture" id=34]
texture = ExtResource( 10 )
region_rect = Rect2( 0, 0, 1001, 35 )
margin_left = 75.0
margin_right = 75.0
[node name="AlternativeChoice" instance=ExtResource( 1 )]
script = ExtResource( 4 )
[node name="Left" type="TextureButton" parent="SpriteButtons" index="0"]
material = SubResource( 32 )
margin_left = 26.0
margin_top = 125.0
margin_right = 1135.0
margin_bottom = 2285.0
rect_scale = Vector2( 0.442, 0.442 )
texture_normal = ExtResource( 9 )
texture_click_mask = ExtResource( 2 )
[node name="Center" type="TextureButton" parent="SpriteButtons" index="1"]
material = SubResource( 33 )
margin_left = 598.0
margin_top = 18.0
margin_right = 2046.0
margin_bottom = 2178.0
rect_scale = Vector2( 0.492, 0.492 )
texture_normal = ExtResource( 5 )
texture_click_mask = ExtResource( 7 )
[node name="Right" type="TextureButton" parent="SpriteButtons" index="2"]
material = SubResource( 30 )
margin_left = 1300.0
margin_top = 128.0
margin_right = 2708.0
margin_bottom = 2288.0
rect_scale = Vector2( 0.441, 0.441 )
texture_normal = ExtResource( 8 )
texture_click_mask = ExtResource( 6 )
[node name="a1" type="Label" parent="Labels" index="0"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 31 )
custom_styles/normal = SubResource( 34 )
align = 1
valign = 1
[node name="a2" type="Label" parent="Labels" index="1"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 31 )
custom_styles/normal = SubResource( 34 )
align = 1
valign = 1
[node name="a3" type="Label" parent="Labels" index="2"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 31 )
custom_styles/normal = SubResource( 34 )
align = 1
valign = 1
[node name="WaitTimer" type="Timer" parent="." index="2"]
one_shot = true
[connection signal="button_up" from="SpriteButtons/Left" to="." method="_on_Left_button_up"]
[connection signal="button_up" from="SpriteButtons/Center" to="." method="_on_Center_button_up"]
[connection signal="button_up" from="SpriteButtons/Right" to="." method="_on_Right_button_up"]
[connection signal="timeout" from="WaitTimer" to="." method="_on_WaitTimer_timeout"]

View file

@ -0,0 +1,236 @@
[gd_scene load_steps=18 format=2]
[ext_resource path="res://resources/AlternativeChoices/HoverAlternative.gdshader" type="Shader" id=1]
[ext_resource path="res://resources/fonts/OneEleven.ttf" type="DynamicFontData" id=2]
[ext_resource path="res://scripts/AlternativeChoices/Timeline_17.gd" type="Script" id=7]
[sub_resource type="ShaderMaterial" id=12]
shader = ExtResource( 1 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=13]
shader = ExtResource( 1 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=14]
shader = ExtResource( 1 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=15]
shader = ExtResource( 1 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=16]
shader = ExtResource( 1 )
shader_param/mixing = 0.0
[sub_resource type="DynamicFont" id=19]
size = 72
outline_size = 2
outline_color = Color( 0, 0, 0, 1 )
font_data = ExtResource( 2 )
[sub_resource type="StyleBoxEmpty" id=28]
[sub_resource type="DynamicFont" id=20]
size = 72
outline_size = 2
outline_color = Color( 0, 0, 0, 1 )
font_data = ExtResource( 2 )
[sub_resource type="StyleBoxEmpty" id=27]
[sub_resource type="DynamicFont" id=21]
size = 72
outline_size = 2
outline_color = Color( 0, 0, 0, 1 )
font_data = ExtResource( 2 )
[sub_resource type="DynamicFont" id=22]
size = 72
outline_size = 2
outline_color = Color( 0, 0, 0, 1 )
font_data = ExtResource( 2 )
[sub_resource type="DynamicFont" id=23]
size = 72
outline_size = 2
outline_color = Color( 0, 0, 0, 1 )
font_data = ExtResource( 2 )
[sub_resource type="DynamicFont" id=24]
size = 72
outline_size = 2
outline_color = Color( 0, 0, 0, 1 )
font_data = ExtResource( 2 )
[sub_resource type="DynamicFont" id=25]
size = 72
outline_size = 2
outline_color = Color( 0, 0, 0, 1 )
font_data = ExtResource( 2 )
[node name="Node2D" type="Node2D"]
z_index = 4096
script = ExtResource( 7 )
[node name="Girls" type="Control" parent="."]
margin_right = 40.0
margin_bottom = 40.0
[node name="Black" type="TextureRect" parent="Girls"]
modulate = Color( 1, 1, 1, 0 )
material = SubResource( 12 )
margin_right = 3840.0
margin_bottom = 2160.0
rect_scale = Vector2( 0.5, 0.5 )
[node name="Blue" type="TextureRect" parent="Girls"]
modulate = Color( 1, 1, 1, 0 )
material = SubResource( 13 )
margin_right = 3840.0
margin_bottom = 2160.0
rect_scale = Vector2( 0.5, 0.5 )
[node name="Green" type="TextureRect" parent="Girls"]
modulate = Color( 1, 1, 1, 0 )
material = SubResource( 14 )
margin_right = 3840.0
margin_bottom = 2160.0
rect_scale = Vector2( 0.5, 0.5 )
[node name="Orange" type="TextureRect" parent="Girls"]
modulate = Color( 1, 1, 1, 0 )
material = SubResource( 15 )
margin_right = 3840.0
margin_bottom = 2160.0
rect_scale = Vector2( 0.5, 0.5 )
[node name="Pink" type="TextureRect" parent="Girls"]
modulate = Color( 1, 1, 1, 0 )
material = SubResource( 16 )
margin_right = 3840.0
margin_bottom = 2160.0
rect_scale = Vector2( 0.5, 0.5 )
[node name="Purple" type="TextureRect" parent="Girls"]
modulate = Color( 1, 1, 1, 0 )
material = SubResource( 16 )
margin_right = 3840.0
margin_bottom = 2160.0
rect_scale = Vector2( 0.5, 0.5 )
[node name="Buttons" type="VBoxContainer" parent="."]
margin_left = 1231.0
margin_right = 1918.0
margin_bottom = 1080.0
custom_constants/separation = 10
alignment = 1
[node name="Pink" type="Button" parent="Buttons"]
margin_top = 181.0
margin_right = 687.0
margin_bottom = 275.0
custom_colors/font_color_disabled = Color( 0.278431, 0.278431, 0.278431, 1 )
custom_colors/font_color = Color( 1, 1, 1, 1 )
custom_colors/font_color_hover = Color( 0, 0, 0, 1 )
custom_colors/font_color_pressed = Color( 0, 0, 0, 1 )
custom_fonts/font = SubResource( 19 )
custom_styles/focus = SubResource( 28 )
text = "AMANDA"
flat = true
align = 0
[node name="Purple" type="Button" parent="Buttons"]
margin_top = 285.0
margin_right = 687.0
margin_bottom = 379.0
custom_colors/font_color_disabled = Color( 0.278431, 0.278431, 0.278431, 1 )
custom_colors/font_color = Color( 1, 1, 1, 1 )
custom_colors/font_color_hover = Color( 0, 0, 0, 1 )
custom_colors/font_color_pressed = Color( 0, 0, 0, 1 )
custom_fonts/font = SubResource( 20 )
custom_styles/focus = SubResource( 27 )
text = "DANA"
flat = true
align = 0
[node name="Green" type="Button" parent="Buttons"]
margin_top = 389.0
margin_right = 687.0
margin_bottom = 483.0
custom_colors/font_color_disabled = Color( 0.278431, 0.278431, 0.278431, 1 )
custom_colors/font_color = Color( 1, 1, 1, 1 )
custom_colors/font_color_hover = Color( 0, 0, 0, 1 )
custom_colors/font_color_pressed = Color( 0, 0, 0, 1 )
custom_fonts/font = SubResource( 21 )
custom_styles/focus = SubResource( 27 )
text = "AGATHA"
flat = true
align = 0
[node name="Black" type="Button" parent="Buttons"]
margin_top = 493.0
margin_right = 687.0
margin_bottom = 587.0
custom_colors/font_color_disabled = Color( 0.278431, 0.278431, 0.278431, 1 )
custom_colors/font_color = Color( 1, 1, 1, 1 )
custom_colors/font_color_hover = Color( 0, 0, 0, 1 )
custom_colors/font_color_pressed = Color( 0, 0, 0, 1 )
custom_fonts/font = SubResource( 22 )
custom_styles/focus = SubResource( 27 )
text = "LINDA"
flat = true
align = 0
[node name="Blue" type="Button" parent="Buttons"]
margin_top = 597.0
margin_right = 687.0
margin_bottom = 691.0
custom_colors/font_color_disabled = Color( 0.278431, 0.278431, 0.278431, 1 )
custom_colors/font_color = Color( 1, 1, 1, 1 )
custom_colors/font_color_hover = Color( 0, 0, 0, 1 )
custom_colors/font_color_pressed = Color( 0, 0, 0, 1 )
custom_fonts/font = SubResource( 23 )
custom_styles/focus = SubResource( 27 )
text = "EMILIA"
flat = true
align = 0
[node name="Orange" type="Button" parent="Buttons"]
margin_top = 701.0
margin_right = 687.0
margin_bottom = 795.0
custom_colors/font_color_disabled = Color( 0.278431, 0.278431, 0.278431, 1 )
custom_colors/font_color = Color( 1, 1, 1, 1 )
custom_colors/font_color_hover = Color( 0, 0, 0, 1 )
custom_colors/font_color_pressed = Color( 0, 0, 0, 1 )
custom_fonts/font = SubResource( 24 )
custom_styles/focus = SubResource( 27 )
text = "GO TO BAR"
flat = true
align = 0
[node name="Guys" type="Button" parent="Buttons"]
margin_top = 805.0
margin_right = 687.0
margin_bottom = 899.0
custom_colors/font_color_disabled = Color( 0.278431, 0.278431, 0.278431, 1 )
custom_colors/font_color = Color( 1, 1, 1, 1 )
custom_colors/font_color_hover = Color( 0, 0, 0, 1 )
custom_colors/font_color_pressed = Color( 0, 0, 0, 1 )
custom_fonts/font = SubResource( 25 )
custom_styles/focus = SubResource( 27 )
text = "ПОЙТИ К ПАРНЯМ."
flat = true
align = 0
[connection signal="button_up" from="Buttons/Pink" to="." method="_on_Pink_button_up"]
[connection signal="button_up" from="Buttons/Purple" to="." method="_on_Purple_button_up"]
[connection signal="button_up" from="Buttons/Green" to="." method="_on_Green_button_up"]
[connection signal="button_up" from="Buttons/Black" to="." method="_on_Black_button_up"]
[connection signal="button_up" from="Buttons/Blue" to="." method="_on_Blue_button_up"]
[connection signal="button_up" from="Buttons/Orange" to="." method="_on_Orange_button_up"]
[connection signal="button_up" from="Buttons/Guys" to="." method="_on_Guys_button_up"]
[connection signal="mouse_entered" from="Buttons/Guys" to="." method="_on_Guys_mouse_entered"]
[connection signal="mouse_exited" from="Buttons/Guys" to="." method="_on_Guys_mouse_exited"]

View file

@ -0,0 +1,69 @@
[gd_scene load_steps=9 format=2]
[ext_resource path="res://scenes/AlternativeChoices/AlternativeChoiceBase.tscn" type="PackedScene" id=1]
[ext_resource path="res://scripts/AlternativeChoices/AlternativeChoiceTimeline_1_bridge.gd" type="Script" id=2]
[ext_resource path="res://resources/AlternativeChoices/HoverAlternativeBlack.gdshader" type="Shader" id=9]
[ext_resource path="res://resources/AlternativeChoices/Timeline_5/Arrow.webp" type="Texture" id=10]
[sub_resource type="ShaderMaterial" id=25]
shader = ExtResource( 9 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=26]
shader = ExtResource( 9 )
shader_param/mixing = 0.0
[sub_resource type="DynamicFontData" id=22]
font_path = "res://resources/fonts/TimesNewerRoman-Regular.otf"
[sub_resource type="DynamicFont" id=24]
size = 36
font_data = SubResource( 22 )
[node name="AlternativeChoice" instance=ExtResource( 1 )]
script = ExtResource( 2 )
[node name="SpriteButtons" parent="." index="0"]
z_index = 20
[node name="Left" type="TextureButton" parent="SpriteButtons" index="0"]
material = SubResource( 25 )
margin_left = 53.0
margin_top = 501.0
margin_right = 173.0
margin_bottom = 591.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 10 )
[node name="Right" type="TextureButton" parent="SpriteButtons" index="1"]
material = SubResource( 26 )
margin_left = 1765.0
margin_top = 577.0
margin_right = 1885.0
margin_bottom = 667.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 10 )
flip_h = true
[node name="a1" type="Label" parent="Labels" index="0"]
visible = false
margin_left = 34.0
margin_top = 452.0
margin_right = 133.0
margin_bottom = 497.0
custom_fonts/font = SubResource( 24 )
align = 1
valign = 1
[node name="a2" type="Label" parent="Labels" index="1"]
visible = false
margin_left = 1730.0
margin_top = 530.0
margin_right = 1858.0
margin_bottom = 575.0
custom_fonts/font = SubResource( 24 )
align = 1
valign = 1
[connection signal="button_up" from="SpriteButtons/Left" to="." method="_on_Left_button_up"]
[connection signal="button_up" from="SpriteButtons/Right" to="." method="_on_Right_button_up"]

View file

@ -0,0 +1,70 @@
[gd_scene load_steps=9 format=2]
[ext_resource path="res://scripts/AlternativeChoices/AlternativeChoiceTimeline_1_forest.gd" type="Script" id=1]
[ext_resource path="res://scenes/AlternativeChoices/AlternativeChoiceBase.tscn" type="PackedScene" id=2]
[ext_resource path="res://resources/AlternativeChoices/HoverAlternativeBlack.gdshader" type="Shader" id=3]
[ext_resource path="res://resources/AlternativeChoices/Timeline_5/Arrow.webp" type="Texture" id=4]
[sub_resource type="ShaderMaterial" id=26]
shader = ExtResource( 3 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=27]
shader = ExtResource( 3 )
shader_param/mixing = 0.0
[sub_resource type="DynamicFontData" id=25]
font_path = "res://resources/fonts/TimesNewerRoman-Regular.otf"
[sub_resource type="DynamicFont" id=24]
size = 36
font_data = SubResource( 25 )
[node name="AlternativeChoice" instance=ExtResource( 2 )]
script = ExtResource( 1 )
[node name="SpriteButtons" parent="." index="0"]
z_index = 20
[node name="Left" type="TextureButton" parent="SpriteButtons" index="0"]
material = SubResource( 26 )
margin_left = 564.0
margin_top = 435.0
margin_right = 684.0
margin_bottom = 525.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 4 )
[node name="Right" type="TextureButton" parent="SpriteButtons" index="1"]
material = SubResource( 27 )
margin_left = 1287.0
margin_top = 912.0
margin_right = 1407.0
margin_bottom = 1002.0
rect_rotation = 60.0897
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 4 )
flip_h = true
[node name="a1" type="Label" parent="Labels" index="0"]
visible = false
margin_left = 539.0
margin_top = 382.0
margin_right = 650.0
margin_bottom = 427.0
custom_fonts/font = SubResource( 24 )
align = 1
valign = 1
[node name="a2" type="Label" parent="Labels" index="1"]
visible = false
margin_left = 1231.0
margin_top = 874.0
margin_right = 1328.0
margin_bottom = 919.0
custom_fonts/font = SubResource( 24 )
align = 1
valign = 1
[connection signal="button_up" from="SpriteButtons/Left" to="." method="_on_Left_button_up"]
[connection signal="button_up" from="SpriteButtons/Right" to="." method="_on_Right_button_up"]

View file

@ -0,0 +1,69 @@
[gd_scene load_steps=9 format=2]
[ext_resource path="res://scenes/AlternativeChoices/AlternativeChoiceBase.tscn" type="PackedScene" id=1]
[ext_resource path="res://scripts/AlternativeChoices/AlternativeChoiceTimeline_1_parking.gd" type="Script" id=2]
[ext_resource path="res://resources/AlternativeChoices/HoverAlternativeBlack.gdshader" type="Shader" id=3]
[ext_resource path="res://resources/AlternativeChoices/Timeline_5/Arrow.webp" type="Texture" id=4]
[sub_resource type="ShaderMaterial" id=26]
shader = ExtResource( 3 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=27]
shader = ExtResource( 3 )
shader_param/mixing = 0.0
[sub_resource type="DynamicFontData" id=25]
font_path = "res://resources/fonts/TimesNewerRoman-Regular.otf"
[sub_resource type="DynamicFont" id=24]
size = 36
font_data = SubResource( 25 )
[node name="AlternativeChoice" instance=ExtResource( 1 )]
script = ExtResource( 2 )
[node name="SpriteButtons" parent="." index="0"]
z_index = 20
[node name="Left" type="TextureButton" parent="SpriteButtons" index="0"]
material = SubResource( 26 )
margin_left = 190.0
margin_top = 850.0
margin_right = 310.0
margin_bottom = 940.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 4 )
[node name="Right" type="TextureButton" parent="SpriteButtons" index="1"]
material = SubResource( 27 )
margin_left = 1793.0
margin_top = 850.0
margin_right = 1913.0
margin_bottom = 940.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 4 )
flip_h = true
[node name="a1" type="Label" parent="Labels" index="0"]
visible = false
margin_left = 170.0
margin_top = 798.0
margin_right = 270.0
margin_bottom = 843.0
custom_fonts/font = SubResource( 24 )
align = 1
valign = 1
[node name="a2" type="Label" parent="Labels" index="1"]
visible = false
margin_left = 1769.0
margin_top = 797.0
margin_right = 1878.0
margin_bottom = 842.0
custom_fonts/font = SubResource( 24 )
align = 1
valign = 1
[connection signal="button_up" from="SpriteButtons/Left" to="." method="_on_Left_button_up"]
[connection signal="button_up" from="SpriteButtons/Right" to="." method="_on_Right_button_up"]

View file

@ -0,0 +1,119 @@
[gd_scene load_steps=17 format=2]
[ext_resource path="res://scripts/AlternativeChoices/AlternativeChoiceTimeline_2.gd" type="Script" id=1]
[ext_resource path="res://resources/AlternativeChoices/Timeline_2/Sofa.webp" type="Texture" id=2]
[ext_resource path="res://resources/AlternativeChoices/Timeline_2/Orange.webp" type="Texture" id=3]
[ext_resource path="res://resources/AlternativeChoices/Timeline_2/Yellow.webp" type="Texture" id=4]
[ext_resource path="res://resources/AlternativeChoices/HoverAlternative.gdshader" type="Shader" id=5]
[ext_resource path="res://scenes/AlternativeChoices/AlternativeChoiceBase.tscn" type="PackedScene" id=6]
[sub_resource type="ShaderMaterial" id=10]
shader = ExtResource( 5 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=11]
shader = ExtResource( 5 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=12]
shader = ExtResource( 5 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=19]
shader = ExtResource( 5 )
shader_param/mixing = 0.0
[sub_resource type="DynamicFontData" id=16]
font_path = "res://resources/fonts/TimesNewerRoman-Regular.otf"
[sub_resource type="DynamicFont" id=13]
size = 36
font_data = SubResource( 16 )
[sub_resource type="DynamicFontData" id=17]
font_path = "res://resources/fonts/TimesNewerRoman-Regular.otf"
[sub_resource type="DynamicFont" id=14]
size = 36
font_data = SubResource( 17 )
[sub_resource type="DynamicFontData" id=18]
font_path = "res://resources/fonts/TimesNewerRoman-Regular.otf"
[sub_resource type="DynamicFont" id=15]
size = 36
font_data = SubResource( 18 )
[node name="AlternativeChoice" instance=ExtResource( 6 )]
script = ExtResource( 1 )
[node name="SpriteButtons" parent="." index="0"]
z_index = 1
[node name="Orange" type="TextureButton" parent="SpriteButtons" index="0"]
material = SubResource( 10 )
margin_left = 1292.0
margin_top = 255.0
margin_right = 3531.0
margin_bottom = 3369.0
rect_scale = Vector2( 0.088, 0.088 )
texture_normal = ExtResource( 3 )
[node name="Yellow" type="TextureButton" parent="SpriteButtons" index="1"]
material = SubResource( 11 )
margin_left = 1595.84
margin_top = 329.0
margin_right = 4378.84
margin_bottom = 6594.0
rect_scale = Vector2( 0.105, 0.105 )
texture_normal = ExtResource( 4 )
[node name="Sofa" type="TextureButton" parent="SpriteButtons" index="2"]
material = SubResource( 12 )
margin_left = 55.0
margin_top = 454.0
margin_right = 819.0
margin_bottom = 908.0
rect_scale = Vector2( 0.495, 0.495 )
texture_normal = ExtResource( 2 )
[node name="Oldman" type="TextureButton" parent="SpriteButtons" index="3"]
material = SubResource( 19 )
margin_left = 550.0
margin_top = 400.0
margin_right = 901.0
margin_bottom = 1064.0
rect_scale = Vector2( 0.495, 0.495 )
[node name="OrangeLabel" type="Label" parent="Labels" index="0"]
visible = false
margin_bottom = 43.0
custom_fonts/font = SubResource( 13 )
align = 1
valign = 1
[node name="YellowLabel" type="Label" parent="Labels" index="1"]
visible = false
margin_bottom = 43.0
custom_fonts/font = SubResource( 14 )
align = 1
valign = 1
[node name="SofaLabel" type="Label" parent="Labels" index="2"]
visible = false
margin_bottom = 43.0
custom_fonts/font = SubResource( 15 )
align = 1
valign = 1
[node name="SofaLabel2" type="Label" parent="Labels" index="3"]
visible = false
margin_bottom = 43.0
custom_fonts/font = SubResource( 15 )
align = 1
valign = 1
[connection signal="button_up" from="SpriteButtons/Orange" to="." method="_on_Orange_button_up"]
[connection signal="button_up" from="SpriteButtons/Yellow" to="." method="_on_Yellow_button_up"]
[connection signal="button_up" from="SpriteButtons/Sofa" to="." method="_on_Sofa_button_up"]
[connection signal="button_up" from="SpriteButtons/Oldman" to="." method="_on_Oldman_button_up"]

View file

@ -0,0 +1,150 @@
[gd_scene load_steps=15 format=2]
[ext_resource path="res://scenes/AlternativeChoices/AlternativeChoiceBase.tscn" type="PackedScene" id=1]
[ext_resource path="res://scripts/AlternativeChoices/AlternativeChoiceTimeline_32.gd" type="Script" id=2]
[ext_resource path="res://resources/AlternativeChoices/HoverAlternative.gdshader" type="Shader" id=3]
[ext_resource path="res://resources/AlternativeChoices/Timeline_32/door_night.webp" type="Texture" id=4]
[ext_resource path="res://resources/AlternativeChoices/Timeline_5/Arrow.webp" type="Texture" id=6]
[ext_resource path="res://resources/AlternativeChoices/Timeline_5/LightHouse_n.webp" type="Texture" id=7]
[sub_resource type="ShaderMaterial" id=6]
shader = ExtResource( 3 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=7]
shader = ExtResource( 3 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=8]
shader = ExtResource( 3 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=9]
shader = ExtResource( 3 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=10]
shader = ExtResource( 3 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=11]
shader = ExtResource( 3 )
shader_param/mixing = 0.0
[sub_resource type="DynamicFontData" id=5]
font_path = "res://resources/fonts/TimesNewerRoman-Regular.otf"
[sub_resource type="DynamicFont" id=12]
size = 36
font_data = SubResource( 5 )
[node name="AlternativeChoice" instance=ExtResource( 1 )]
script = ExtResource( 2 )
[node name="SpriteButtons" parent="." index="0"]
z_index = 1
[node name="Parking" type="TextureButton" parent="SpriteButtons" index="0"]
material = SubResource( 6 )
margin_left = 159.0
margin_top = 810.0
margin_right = 279.0
margin_bottom = 900.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 6 )
[node name="GoBack" type="TextureButton" parent="SpriteButtons" index="1"]
material = SubResource( 7 )
margin_left = 823.0
margin_top = 527.0
margin_right = 1123.0
margin_bottom = 1077.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 4 )
[node name="Smoking" type="TextureButton" parent="SpriteButtons" index="2"]
material = SubResource( 8 )
margin_left = 1404.0
margin_top = 666.0
margin_right = 1524.0
margin_bottom = 756.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 6 )
[node name="LightHouse" type="TextureButton" parent="SpriteButtons" index="3"]
material = SubResource( 9 )
margin_left = 1584.0
margin_top = 159.0
margin_right = 2194.0
margin_bottom = 1159.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 7 )
[node name="Pristan" type="TextureButton" parent="SpriteButtons" index="4"]
material = SubResource( 10 )
margin_left = 867.0
margin_top = 1027.0
margin_right = 987.0
margin_bottom = 1117.0
rect_rotation = -90.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 6 )
[node name="Ovrag" type="TextureButton" parent="SpriteButtons" index="5"]
material = SubResource( 11 )
margin_left = 1773.0
margin_top = 831.0
margin_right = 1893.0
margin_bottom = 921.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 6 )
flip_h = true
[node name="a1" type="Label" parent="Labels" index="0"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 12 )
align = 1
valign = 1
[node name="a2" type="Label" parent="Labels" index="1"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 12 )
align = 1
valign = 1
[node name="a3" type="Label" parent="Labels" index="2"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 12 )
align = 1
valign = 1
[node name="a4" type="Label" parent="Labels" index="3"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 12 )
align = 1
valign = 1
[node name="a5" type="Label" parent="Labels" index="4"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 12 )
align = 1
valign = 1
[node name="a6" type="Label" parent="Labels" index="5"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 12 )
align = 1
valign = 1
[connection signal="button_up" from="SpriteButtons/Parking" to="." method="_on_Parking_button_up"]
[connection signal="button_up" from="SpriteButtons/GoBack" to="." method="_on_GoBack_button_up"]
[connection signal="button_up" from="SpriteButtons/Smoking" to="." method="_on_Smoking_button_up"]
[connection signal="button_up" from="SpriteButtons/LightHouse" to="." method="_on_LightHouse_button_up"]
[connection signal="button_up" from="SpriteButtons/Pristan" to="." method="_on_Pristan_button_up"]
[connection signal="button_up" from="SpriteButtons/Ovrag" to="." method="_on_Ovrag_button_up"]

View file

@ -0,0 +1,129 @@
[gd_scene load_steps=19 format=2]
[ext_resource path="res://scenes/AlternativeChoices/AlternativeChoiceBase.tscn" type="PackedScene" id=1]
[ext_resource path="res://resources/AlternativeChoices/HoverAlternative.gdshader" type="Shader" id=2]
[ext_resource path="res://resources/AlternativeChoices/Timeline_2/Yellow.webp" type="Texture" id=3]
[ext_resource path="res://resources/AlternativeChoices/Timeline_2/Sofa.webp" type="Texture" id=4]
[ext_resource path="res://resources/AlternativeChoices/Timeline_2/Orange.webp" type="Texture" id=5]
[ext_resource path="res://resources/AlternativeChoices/Timeline_6/Door.webp" type="Texture" id=6]
[ext_resource path="res://scripts/AlternativeChoices/AlternativeChoiceTimeline_3_1.gd" type="Script" id=7]
[sub_resource type="ShaderMaterial" id=12]
shader = ExtResource( 2 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=13]
shader = ExtResource( 2 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=14]
shader = ExtResource( 2 )
shader_param/mixing = 0.0
[sub_resource type="Shader" id=19]
code = "shader_type canvas_item;
uniform float mixing = 0.0;
void fragment(){
vec4 color = texture(TEXTURE,UV);
color.rgb = mix(color.rgb, vec3(1,1,1).rgb, mixing);
COLOR = color;
}"
[sub_resource type="ShaderMaterial" id=15]
shader = SubResource( 19 )
shader_param/mixing = 0.0
[sub_resource type="DynamicFontData" id=23]
font_path = "res://resources/fonts/TimesNewerRoman-Regular.otf"
[sub_resource type="DynamicFont" id=16]
size = 36
font_data = SubResource( 23 )
[sub_resource type="DynamicFontData" id=21]
font_path = "res://resources/fonts/TimesNewerRoman-Regular.otf"
[sub_resource type="DynamicFont" id=17]
size = 36
font_data = SubResource( 21 )
[sub_resource type="DynamicFontData" id=22]
font_path = "res://resources/fonts/TimesNewerRoman-Regular.otf"
[sub_resource type="DynamicFont" id=18]
size = 36
font_data = SubResource( 22 )
[node name="AlternativeChoice" instance=ExtResource( 1 )]
script = ExtResource( 7 )
[node name="Orange" type="TextureButton" parent="SpriteButtons" index="0"]
material = SubResource( 12 )
margin_left = 1292.0
margin_top = 255.0
margin_right = 3531.0
margin_bottom = 3369.0
rect_scale = Vector2( 0.088, 0.088 )
texture_normal = ExtResource( 5 )
[node name="Yellow" type="TextureButton" parent="SpriteButtons" index="1"]
material = SubResource( 13 )
margin_left = 1595.84
margin_top = 329.0
margin_right = 4378.84
margin_bottom = 6594.0
rect_scale = Vector2( 0.105, 0.105 )
texture_normal = ExtResource( 3 )
[node name="Sofa" type="TextureButton" parent="SpriteButtons" index="2"]
material = SubResource( 14 )
margin_left = 55.0
margin_top = 454.0
margin_right = 819.0
margin_bottom = 908.0
rect_scale = Vector2( 0.495, 0.495 )
texture_normal = ExtResource( 4 )
[node name="Door" type="TextureButton" parent="SpriteButtons" index="3"]
material = SubResource( 15 )
margin_left = 712.0
margin_top = 216.0
margin_right = 1076.0
margin_bottom = 995.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 6 )
[node name="OrangeLabel" type="Label" parent="Labels" index="0"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 16 )
align = 1
valign = 1
[node name="YellowLabel" type="Label" parent="Labels" index="1"]
visible = false
margin_bottom = 43.0
custom_fonts/font = SubResource( 17 )
align = 1
valign = 1
[node name="SofaLabel" type="Label" parent="Labels" index="2"]
visible = false
margin_bottom = 43.0
custom_fonts/font = SubResource( 18 )
align = 1
valign = 1
[node name="DoorLabel" type="Label" parent="Labels" index="3"]
visible = false
margin_bottom = 43.0
custom_fonts/font = SubResource( 18 )
align = 1
valign = 1
[connection signal="button_up" from="SpriteButtons/Orange" to="." method="_on_Orange_button_up"]
[connection signal="button_up" from="SpriteButtons/Yellow" to="." method="_on_Yellow_button_up"]
[connection signal="button_up" from="SpriteButtons/Sofa" to="." method="_on_Sofa_button_up"]
[connection signal="button_up" from="SpriteButtons/Door" to="." method="_on_Door_button_up"]

View file

@ -0,0 +1,184 @@
[gd_scene load_steps=22 format=2]
[ext_resource path="res://scenes/AlternativeChoices/AlternativeChoiceBase.tscn" type="PackedScene" id=1]
[ext_resource path="res://scripts/AlternativeChoices/AlternativeChoiceTimeline_5.gd" type="Script" id=2]
[ext_resource path="res://resources/AlternativeChoices/Timeline_5/Door.webp" type="Texture" id=3]
[ext_resource path="res://resources/AlternativeChoices/Timeline_5/LightHouse.webp" type="Texture" id=4]
[ext_resource path="res://resources/characters/male/White_old/22.webp" type="Texture" id=5]
[ext_resource path="res://resources/AlternativeChoices/Timeline_5/Arrow.webp" type="Texture" id=6]
[ext_resource path="res://resources/AlternativeChoices/HoverAlternativeBlack.gdshader" type="Shader" id=7]
[ext_resource path="res://resources/AlternativeChoices/HoverAlternative.gdshader" type="Shader" id=8]
[sub_resource type="ShaderMaterial" id=21]
shader = ExtResource( 7 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=22]
shader = ExtResource( 7 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=23]
shader = ExtResource( 7 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=24]
shader = ExtResource( 8 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=25]
shader = ExtResource( 7 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=10]
shader = ExtResource( 8 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=13]
shader = ExtResource( 8 )
shader_param/mixing = 0.0
[sub_resource type="DynamicFontData" id=20]
font_path = "res://resources/fonts/TimesNewerRoman-Regular.otf"
[sub_resource type="DynamicFont" id=14]
size = 36
font_data = SubResource( 20 )
[sub_resource type="DynamicFontData" id=19]
font_path = "res://resources/fonts/TimesNewerRoman-Regular.otf"
[sub_resource type="DynamicFont" id=16]
size = 36
font_data = SubResource( 19 )
[sub_resource type="DynamicFontData" id=18]
font_path = "res://resources/fonts/TimesNewerRoman-Regular.otf"
[sub_resource type="DynamicFont" id=15]
size = 36
font_data = SubResource( 18 )
[node name="AlternativeChoice" instance=ExtResource( 1 )]
script = ExtResource( 2 )
[node name="a1" type="TextureButton" parent="SpriteButtons" index="0"]
material = SubResource( 21 )
margin_left = 100.0
margin_top = 722.5
margin_right = 220.0
margin_bottom = 812.5
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 6 )
[node name="a2" type="TextureButton" parent="SpriteButtons" index="1"]
material = SubResource( 22 )
margin_left = 873.0
margin_top = 1054.0
margin_right = 993.0
margin_bottom = 1144.0
rect_rotation = -100.7
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 6 )
[node name="Around" type="TextureButton" parent="SpriteButtons" index="2"]
material = SubResource( 23 )
margin_left = 1387.0
margin_top = 671.0
margin_right = 1507.0
margin_bottom = 761.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 6 )
[node name="LightHouse" type="TextureButton" parent="SpriteButtons" index="3"]
material = SubResource( 24 )
margin_left = 1584.0
margin_top = 159.5
margin_right = 2194.0
margin_bottom = 1159.5
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 4 )
[node name="a5" type="TextureButton" parent="SpriteButtons" index="4"]
material = SubResource( 25 )
margin_left = 1699.0
margin_top = 783.0
margin_right = 1819.0
margin_bottom = 873.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 6 )
flip_h = true
[node name="White" type="TextureButton" parent="SpriteButtons" index="5"]
material = SubResource( 10 )
margin_left = 498.701
margin_top = 718.0
margin_right = 4041.7
margin_bottom = 6624.0
rect_scale = Vector2( 0.046, 0.046 )
texture_normal = ExtResource( 5 )
[node name="Inside" type="TextureButton" parent="SpriteButtons" index="6"]
material = SubResource( 13 )
margin_left = 769.0
margin_top = 476.5
margin_right = 1281.0
margin_bottom = 1226.5
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 3 )
[node name="a1" type="Label" parent="Labels" index="0"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 14 )
align = 1
valign = 1
[node name="a2" type="Label" parent="Labels" index="1"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 14 )
align = 1
valign = 1
[node name="AroundLabel" type="Label" parent="Labels" index="2"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 16 )
align = 1
valign = 1
[node name="LightHouseLabel" type="Label" parent="Labels" index="3"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 15 )
align = 1
valign = 1
[node name="a5" type="Label" parent="Labels" index="4"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 14 )
align = 1
valign = 1
[node name="WhiteLabel" type="Label" parent="Labels" index="5"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 14 )
align = 1
valign = 1
[node name="InsideLabel" type="Label" parent="Labels" index="6"]
visible = false
margin_bottom = 43.0
custom_fonts/font = SubResource( 16 )
align = 1
valign = 1
[connection signal="button_up" from="SpriteButtons/a1" to="." method="_on_a1_button_up"]
[connection signal="button_up" from="SpriteButtons/a2" to="." method="_on_a2_button_up"]
[connection signal="button_up" from="SpriteButtons/Around" to="." method="_on_Around_button_up"]
[connection signal="button_up" from="SpriteButtons/LightHouse" to="." method="_on_LightHouse_button_up"]
[connection signal="button_up" from="SpriteButtons/a5" to="." method="_on_a5_button_up"]
[connection signal="button_up" from="SpriteButtons/White" to="." method="_on_White_button_up"]
[connection signal="button_up" from="SpriteButtons/Inside" to="." method="_on_Inside_button_up"]

View file

@ -0,0 +1,79 @@
[gd_scene load_steps=10 format=2]
[ext_resource path="res://scenes/AlternativeChoices/AlternativeChoiceBase.tscn" type="PackedScene" id=1]
[ext_resource path="res://resources/AlternativeChoices/HoverAlternativeBlack.gdshader" type="Shader" id=2]
[ext_resource path="res://scripts/AlternativeChoices/AlternativeChoiceTimeline_5_garage.gd" type="Script" id=3]
[ext_resource path="res://resources/AlternativeChoices/Timeline_5/Arrow.webp" type="Texture" id=4]
[sub_resource type="ShaderMaterial" id=20]
shader = ExtResource( 2 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=21]
shader = ExtResource( 2 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=22]
shader = ExtResource( 2 )
shader_param/mixing = 0.0
[sub_resource type="DynamicFontData" id=17]
font_path = "res://resources/fonts/TimesNewerRoman-Regular.otf"
[sub_resource type="DynamicFont" id=19]
size = 36
font_data = SubResource( 17 )
[node name="AlternativeChoice" instance=ExtResource( 1 )]
script = ExtResource( 3 )
[node name="a1" type="TextureButton" parent="SpriteButtons" index="0"]
material = SubResource( 20 )
margin_left = 1786.0
margin_top = 689.0
margin_right = 1906.0
margin_bottom = 779.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 4 )
flip_h = true
[node name="a2" type="TextureButton" parent="SpriteButtons" index="1"]
material = SubResource( 21 )
margin_left = 77.0
margin_top = 570.0
margin_right = 197.0
margin_bottom = 660.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 4 )
[node name="a3" type="TextureButton" parent="SpriteButtons" index="2"]
material = SubResource( 22 )
margin_left = 177.0
margin_top = 394.0
margin_right = 918.0
margin_bottom = 840.0
[node name="a1" type="Label" parent="Labels" index="0"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 19 )
align = 1
valign = 1
[node name="a2" type="Label" parent="Labels" index="1"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 19 )
align = 1
valign = 1
[node name="a3" type="Label" parent="Labels" index="2"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 19 )
align = 1
valign = 1
[connection signal="button_up" from="SpriteButtons/a1" to="." method="_on_a1_button_up"]
[connection signal="button_up" from="SpriteButtons/a2" to="." method="_on_a2_button_up"]
[connection signal="button_up" from="SpriteButtons/a3" to="." method="_on_a3_button_up"]

View file

@ -0,0 +1,82 @@
[gd_scene load_steps=11 format=2]
[ext_resource path="res://scenes/AlternativeChoices/AlternativeChoiceBase.tscn" type="PackedScene" id=1]
[ext_resource path="res://scripts/AlternativeChoices/AlternativeChoiceTimeline_5_lighthouse.gd" type="Script" id=3]
[ext_resource path="res://resources/AlternativeChoices/HoverAlternativeBlack.gdshader" type="Shader" id=4]
[ext_resource path="res://resources/AlternativeChoices/Timeline_5/Arrow.webp" type="Texture" id=5]
[ext_resource path="res://resources/AlternativeChoices/Timeline_5_lighthouse/Lady with dog.webp" type="Texture" id=6]
[sub_resource type="ShaderMaterial" id=23]
shader = ExtResource( 4 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=26]
shader = ExtResource( 4 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=27]
shader = ExtResource( 4 )
shader_param/mixing = 0.0
[sub_resource type="DynamicFontData" id=22]
font_path = "res://resources/fonts/TimesNewerRoman-Regular.otf"
[sub_resource type="DynamicFont" id=24]
size = 36
font_data = SubResource( 22 )
[node name="AlternativeChoice" instance=ExtResource( 1 )]
script = ExtResource( 3 )
[node name="Arrow" type="TextureButton" parent="SpriteButtons" index="0"]
material = SubResource( 23 )
margin_left = 142.0
margin_top = 494.0
margin_right = 262.0
margin_bottom = 584.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 5 )
[node name="Lady" type="TextureButton" parent="SpriteButtons" index="1"]
visible = false
material = SubResource( 26 )
margin_left = 942.0
margin_top = 762.0
margin_right = 1485.0
margin_bottom = 1344.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 6 )
[node name="Behind" type="TextureButton" parent="SpriteButtons" index="2"]
material = SubResource( 27 )
margin_left = 798.0
margin_top = 832.0
margin_right = 918.0
margin_bottom = 922.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 5 )
[node name="a1" type="Label" parent="Labels" index="0"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 24 )
align = 1
valign = 1
[node name="a2" type="Label" parent="Labels" index="1"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 24 )
align = 1
valign = 1
[node name="a3" type="Label" parent="Labels" index="2"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 24 )
align = 1
valign = 1
[connection signal="button_up" from="SpriteButtons/Arrow" to="." method="_on_Arrow_button_up"]
[connection signal="button_up" from="SpriteButtons/Lady" to="." method="_on_Lady_button_up"]
[connection signal="button_up" from="SpriteButtons/Behind" to="." method="_on_Behind_button_up"]

View file

@ -0,0 +1,38 @@
[gd_scene load_steps=8 format=2]
[ext_resource path="res://scenes/AlternativeChoices/AlternativeChoiceBase.tscn" type="PackedScene" id=1]
[ext_resource path="res://scripts/AlternativeChoices/AlternativeChoiceTimeline_5_lighthouse_back.gd" type="Script" id=2]
[ext_resource path="res://resources/AlternativeChoices/HoverAlternativeBlack.gdshader" type="Shader" id=4]
[ext_resource path="res://resources/AlternativeChoices/Timeline_5/Arrow.webp" type="Texture" id=5]
[sub_resource type="ShaderMaterial" id=23]
shader = ExtResource( 4 )
shader_param/mixing = 0.0
[sub_resource type="DynamicFontData" id=25]
font_path = "res://resources/fonts/TimesNewerRoman-Regular.otf"
[sub_resource type="DynamicFont" id=24]
size = 36
font_data = SubResource( 25 )
[node name="AlternativeChoice" instance=ExtResource( 1 )]
script = ExtResource( 2 )
[node name="Arrow" type="TextureButton" parent="SpriteButtons" index="0"]
material = SubResource( 23 )
margin_left = 100.0
margin_top = 800.0
margin_right = 220.0
margin_bottom = 890.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 5 )
[node name="a1" type="Label" parent="Labels" index="0"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 24 )
align = 1
valign = 1
[connection signal="button_up" from="SpriteButtons/Arrow" to="." method="_on_Arrow_button_up"]

View file

@ -0,0 +1,122 @@
[gd_scene load_steps=13 format=2]
[ext_resource path="res://scenes/AlternativeChoices/AlternativeChoiceBase.tscn" type="PackedScene" id=1]
[ext_resource path="res://scripts/AlternativeChoices/AlternativeChoiceTimeline_5_pristan.gd" type="Script" id=2]
[ext_resource path="res://resources/AlternativeChoices/HoverAlternativeBlack.gdshader" type="Shader" id=3]
[ext_resource path="res://resources/AlternativeChoices/Timeline_5/Arrow.webp" type="Texture" id=4]
[ext_resource path="res://resources/graphics/backgrounds/pristan/fisher.webp" type="Texture" id=6]
[sub_resource type="ShaderMaterial" id=23]
shader = ExtResource( 3 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=24]
shader = ExtResource( 3 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=25]
shader = ExtResource( 3 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=26]
shader = ExtResource( 3 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=27]
shader = ExtResource( 3 )
shader_param/mixing = 0.0
[sub_resource type="DynamicFontData" id=20]
font_path = "res://resources/fonts/TimesNewerRoman-Regular.otf"
[sub_resource type="DynamicFont" id=22]
size = 36
font_data = SubResource( 20 )
[node name="AlternativeChoice" instance=ExtResource( 1 )]
script = ExtResource( 2 )
[node name="Arrow" type="TextureButton" parent="SpriteButtons" index="0"]
material = SubResource( 23 )
margin_left = 435.0
margin_top = 896.0
margin_right = 555.0
margin_bottom = 986.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 4 )
[node name="Fisher" type="TextureButton" parent="SpriteButtons" index="1"]
visible = false
material = SubResource( 24 )
margin_left = 1355.0
margin_top = 220.0
margin_right = 1581.0
margin_bottom = 674.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 6 )
flip_h = true
[node name="Yacht" type="TextureButton" parent="SpriteButtons" index="2"]
material = SubResource( 25 )
margin_left = 324.0
margin_top = 233.0
margin_right = 655.0
margin_bottom = 417.0
[node name="Yacht2" type="TextureButton" parent="SpriteButtons" index="3"]
material = SubResource( 26 )
margin_left = 823.0
margin_top = 225.0
margin_right = 1245.0
margin_bottom = 399.0
[node name="Boat" type="TextureButton" parent="SpriteButtons" index="4"]
material = SubResource( 27 )
margin_left = 1480.0
margin_top = 367.0
margin_right = 1654.0
margin_bottom = 536.0
[node name="a1" type="Label" parent="Labels" index="0"]
visible = false
margin_left = 377.0
margin_top = 842.0
margin_right = 552.0
margin_bottom = 887.0
custom_fonts/font = SubResource( 22 )
align = 1
valign = 1
[node name="a2" type="Label" parent="Labels" index="1"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 22 )
align = 1
valign = 1
[node name="a3" type="Label" parent="Labels" index="2"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 22 )
align = 1
valign = 1
[node name="a4" type="Label" parent="Labels" index="3"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 22 )
align = 1
valign = 1
[node name="a5" type="Label" parent="Labels" index="4"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 22 )
align = 1
valign = 1
[connection signal="button_up" from="SpriteButtons/Arrow" to="." method="_on_Arrow_button_up"]
[connection signal="button_up" from="SpriteButtons/Fisher" to="." method="_on_Fisher_button_up"]
[connection signal="button_up" from="SpriteButtons/Yacht" to="." method="_on_Yacht_button_up"]
[connection signal="button_up" from="SpriteButtons/Yacht2" to="." method="_on_Yacht_button_up"]
[connection signal="button_up" from="SpriteButtons/Boat" to="." method="_on_Boat_button_up"]

View file

@ -0,0 +1,89 @@
[gd_scene load_steps=12 format=2]
[ext_resource path="res://scenes/AlternativeChoices/AlternativeChoiceBase.tscn" type="PackedScene" id=1]
[ext_resource path="res://resources/AlternativeChoices/HoverAlternativeBlack.gdshader" type="Shader" id=2]
[ext_resource path="res://scripts/AlternativeChoices/AlternativeChoiceTimeline_5_tropinka.gd" type="Script" id=3]
[ext_resource path="res://resources/AlternativeChoices/Timeline_5/Arrow.webp" type="Texture" id=4]
[ext_resource path="res://resources/AlternativeChoices/HoverAlternative.gdshader" type="Shader" id=5]
[ext_resource path="res://resources/AlternativeChoices/Timeline_5_tropinka/Door.webp" type="Texture" id=6]
[sub_resource type="ShaderMaterial" id=23]
shader = ExtResource( 2 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=26]
shader = ExtResource( 5 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=25]
shader = ExtResource( 2 )
shader_param/mixing = 0.0
[sub_resource type="DynamicFontData" id=22]
font_path = "res://resources/fonts/TimesNewerRoman-Regular.otf"
[sub_resource type="DynamicFont" id=21]
size = 36
font_data = SubResource( 22 )
[node name="AlternativeChoice" instance=ExtResource( 1 )]
script = ExtResource( 3 )
[node name="a1" type="TextureButton" parent="SpriteButtons" index="0"]
material = SubResource( 23 )
margin_left = 308.0
margin_top = 559.0
margin_right = 428.0
margin_bottom = 649.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 4 )
[node name="door" type="TextureButton" parent="SpriteButtons" index="1"]
material = SubResource( 26 )
margin_left = 1272.0
margin_top = 514.0
margin_right = 1374.0
margin_bottom = 732.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 6 )
[node name="a3" type="TextureButton" parent="SpriteButtons" index="2"]
material = SubResource( 25 )
margin_left = 1782.0
margin_top = 943.0
margin_right = 1902.0
margin_bottom = 1033.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 4 )
flip_h = true
[node name="a1" type="Label" parent="Labels" index="0"]
visible = false
margin_left = 228.0
margin_top = 503.0
margin_right = 446.0
margin_bottom = 548.0
custom_fonts/font = SubResource( 21 )
align = 1
valign = 1
[node name="a2" type="Label" parent="Labels" index="1"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 21 )
align = 1
valign = 1
[node name="a3" type="Label" parent="Labels" index="2"]
visible = false
margin_left = 1719.0
margin_top = 891.0
margin_right = 1906.0
margin_bottom = 936.0
custom_fonts/font = SubResource( 21 )
align = 1
valign = 1
[connection signal="button_up" from="SpriteButtons/a1" to="." method="_on_a1_button_up"]
[connection signal="button_up" from="SpriteButtons/door" to="." method="_on_door_button_up"]
[connection signal="button_up" from="SpriteButtons/a3" to="." method="_on_a3_button_up"]

View file

@ -0,0 +1,129 @@
[gd_scene load_steps=19 format=2]
[ext_resource path="res://resources/AlternativeChoices/HoverAlternative.gdshader" type="Shader" id=1]
[ext_resource path="res://scenes/AlternativeChoices/AlternativeChoiceBase.tscn" type="PackedScene" id=2]
[ext_resource path="res://resources/AlternativeChoices/Timeline_2/Sofa.webp" type="Texture" id=3]
[ext_resource path="res://resources/AlternativeChoices/Timeline_2/Orange.webp" type="Texture" id=4]
[ext_resource path="res://resources/AlternativeChoices/Timeline_2/Yellow.webp" type="Texture" id=5]
[ext_resource path="res://resources/AlternativeChoices/Timeline_6/Door.webp" type="Texture" id=6]
[ext_resource path="res://scripts/AlternativeChoices/AlternativeChoiceTimeline_6.gd" type="Script" id=7]
[sub_resource type="ShaderMaterial" id=12]
shader = ExtResource( 1 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=13]
shader = ExtResource( 1 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=14]
shader = ExtResource( 1 )
shader_param/mixing = 0.0
[sub_resource type="Shader" id=19]
code = "shader_type canvas_item;
uniform float mixing = 0.0;
void fragment(){
vec4 color = texture(TEXTURE,UV);
color.rgb = mix(color.rgb, vec3(1,1,1).rgb, mixing);
COLOR = color;
}"
[sub_resource type="ShaderMaterial" id=15]
shader = SubResource( 19 )
shader_param/mixing = 0.0
[sub_resource type="DynamicFontData" id=20]
font_path = "res://resources/fonts/TimesNewerRoman-Regular.otf"
[sub_resource type="DynamicFont" id=16]
size = 36
font_data = SubResource( 20 )
[sub_resource type="DynamicFontData" id=21]
font_path = "res://resources/fonts/TimesNewerRoman-Regular.otf"
[sub_resource type="DynamicFont" id=17]
size = 36
font_data = SubResource( 21 )
[sub_resource type="DynamicFontData" id=22]
font_path = "res://resources/fonts/TimesNewerRoman-Regular.otf"
[sub_resource type="DynamicFont" id=18]
size = 36
font_data = SubResource( 22 )
[node name="AlternativeChoice" instance=ExtResource( 2 )]
script = ExtResource( 7 )
[node name="Orange" type="TextureButton" parent="SpriteButtons" index="0"]
material = SubResource( 12 )
margin_left = 1292.0
margin_top = 255.0
margin_right = 3531.0
margin_bottom = 3369.0
rect_scale = Vector2( 0.088, 0.088 )
texture_normal = ExtResource( 4 )
[node name="Yellow" type="TextureButton" parent="SpriteButtons" index="1"]
material = SubResource( 13 )
margin_left = 1595.84
margin_top = 329.0
margin_right = 4378.84
margin_bottom = 6594.0
rect_scale = Vector2( 0.105, 0.105 )
texture_normal = ExtResource( 5 )
[node name="Sofa" type="TextureButton" parent="SpriteButtons" index="2"]
material = SubResource( 14 )
margin_left = 55.0
margin_top = 454.0
margin_right = 819.0
margin_bottom = 908.0
rect_scale = Vector2( 0.495, 0.495 )
texture_normal = ExtResource( 3 )
[node name="Door" type="TextureButton" parent="SpriteButtons" index="3"]
material = SubResource( 15 )
margin_left = 712.0
margin_top = 216.0
margin_right = 1076.0
margin_bottom = 995.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 6 )
[node name="OrangeLabel" type="Label" parent="Labels" index="0"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 16 )
align = 1
valign = 1
[node name="YellowLabel" type="Label" parent="Labels" index="1"]
visible = false
margin_bottom = 43.0
custom_fonts/font = SubResource( 17 )
align = 1
valign = 1
[node name="SofaLabel" type="Label" parent="Labels" index="2"]
visible = false
margin_bottom = 43.0
custom_fonts/font = SubResource( 18 )
align = 1
valign = 1
[node name="DoorLabel" type="Label" parent="Labels" index="3"]
visible = false
margin_bottom = 43.0
custom_fonts/font = SubResource( 18 )
align = 1
valign = 1
[connection signal="button_up" from="SpriteButtons/Orange" to="." method="_on_Orange_button_up"]
[connection signal="button_up" from="SpriteButtons/Yellow" to="." method="_on_Yellow_button_up"]
[connection signal="button_up" from="SpriteButtons/Sofa" to="." method="_on_Sofa_button_up"]
[connection signal="button_up" from="SpriteButtons/Door" to="." method="_on_Door_button_up"]

View file

@ -0,0 +1,38 @@
[gd_scene load_steps=8 format=2]
[ext_resource path="res://scenes/AlternativeChoices/AlternativeChoiceBase.tscn" type="PackedScene" id=1]
[ext_resource path="res://scripts/AlternativeChoices/AlternativeChoiceTimeline_8.gd" type="Script" id=2]
[ext_resource path="res://resources/AlternativeChoices/HoverAlternativeBlack.gdshader" type="Shader" id=3]
[ext_resource path="res://resources/AlternativeChoices/Timeline_5/Arrow.webp" type="Texture" id=4]
[sub_resource type="ShaderMaterial" id=20]
shader = ExtResource( 3 )
shader_param/mixing = 0.0
[sub_resource type="DynamicFontData" id=19]
font_path = "res://resources/fonts/TimesNewerRoman-Regular.otf"
[sub_resource type="DynamicFont" id=25]
size = 36
font_data = SubResource( 19 )
[node name="AlternativeChoice" instance=ExtResource( 1 )]
script = ExtResource( 2 )
[node name="Back" type="TextureButton" parent="SpriteButtons" index="0"]
material = SubResource( 20 )
margin_left = 160.0
margin_top = 550.0
margin_right = 280.0
margin_bottom = 640.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 4 )
[node name="Back" type="Label" parent="Labels" index="0"]
visible = false
margin_bottom = 43.0
custom_fonts/font = SubResource( 25 )
align = 1
valign = 1
[connection signal="button_up" from="SpriteButtons/Back" to="." method="_on_Back_button_up"]

View file

@ -0,0 +1,119 @@
[gd_scene load_steps=18 format=2]
[ext_resource path="res://scenes/AlternativeChoices/AlternativeChoiceBase.tscn" type="PackedScene" id=1]
[ext_resource path="res://resources/AlternativeChoices/Timeline_9/Lounge2.webp" type="Texture" id=2]
[ext_resource path="res://resources/AlternativeChoices/Timeline_5/Arrow.webp" type="Texture" id=3]
[ext_resource path="res://resources/AlternativeChoices/HoverAlternativeBlack.gdshader" type="Shader" id=4]
[ext_resource path="res://resources/AlternativeChoices/HoverAlternative.gdshader" type="Shader" id=5]
[ext_resource path="res://resources/AlternativeChoices/Timeline_10/Door.webp" type="Texture" id=6]
[ext_resource path="res://scripts/AlternativeChoices/AlternativeChoiceTimeline_9.gd" type="Script" id=7]
[sub_resource type="ShaderMaterial" id=20]
shader = ExtResource( 5 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=21]
shader = ExtResource( 4 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=22]
shader = ExtResource( 5 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=26]
shader = ExtResource( 4 )
shader_param/mixing = 0.0
[sub_resource type="DynamicFontData" id=17]
font_path = "res://resources/fonts/TimesNewerRoman-Regular.otf"
[sub_resource type="DynamicFont" id=23]
size = 36
font_data = SubResource( 17 )
[sub_resource type="DynamicFontData" id=18]
font_path = "res://resources/fonts/TimesNewerRoman-Regular.otf"
[sub_resource type="DynamicFont" id=24]
size = 36
font_data = SubResource( 18 )
[sub_resource type="DynamicFontData" id=19]
font_path = "res://resources/fonts/TimesNewerRoman-Regular.otf"
[sub_resource type="DynamicFont" id=25]
size = 36
font_data = SubResource( 19 )
[node name="AlternativeChoice" instance=ExtResource( 1 )]
script = ExtResource( 7 )
[node name="Lounge" type="TextureButton" parent="SpriteButtons" index="0"]
material = SubResource( 20 )
margin_left = 1034.5
margin_top = 395.0
margin_right = 2056.5
margin_bottom = 1479.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 2 )
[node name="GoBack" type="TextureButton" parent="SpriteButtons" index="1"]
material = SubResource( 21 )
margin_left = 600.0
margin_top = 930.0
margin_right = 720.0
margin_bottom = 1020.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 3 )
[node name="Door" type="TextureButton" parent="SpriteButtons" index="2"]
material = SubResource( 22 )
margin_left = 769.0
margin_top = 587.0
margin_right = 998.0
margin_bottom = 1129.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 6 )
[node name="Garage" type="TextureButton" parent="SpriteButtons" index="3"]
material = SubResource( 26 )
margin_left = 1765.0
margin_top = 841.0
margin_right = 1885.0
margin_bottom = 931.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 3 )
flip_h = true
[node name="LoungeLabel" type="Label" parent="Labels" index="0"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 23 )
align = 1
valign = 1
[node name="GoBackLabel" type="Label" parent="Labels" index="1"]
visible = false
margin_bottom = 43.0
custom_fonts/font = SubResource( 24 )
align = 1
valign = 1
[node name="DoorLabel" type="Label" parent="Labels" index="2"]
visible = false
margin_bottom = 43.0
custom_fonts/font = SubResource( 25 )
align = 1
valign = 1
[node name="GarageLabel" type="Label" parent="Labels" index="3"]
visible = false
margin_bottom = 43.0
custom_fonts/font = SubResource( 24 )
align = 1
valign = 1
[connection signal="button_up" from="SpriteButtons/Lounge" to="." method="_on_Lounge_button_up"]
[connection signal="button_up" from="SpriteButtons/GoBack" to="." method="_on_GoBack_button_up"]
[connection signal="button_up" from="SpriteButtons/Door" to="." method="_on_Door_button_up"]
[connection signal="button_up" from="SpriteButtons/Garage" to="." method="_on_Garage_button_up"]

View file

@ -0,0 +1,129 @@
[gd_scene load_steps=19 format=2]
[ext_resource path="res://scenes/AlternativeChoices/AlternativeChoiceBase.tscn" type="PackedScene" id=1]
[ext_resource path="res://scripts/AlternativeChoices/AlternativeChoiceTimeline_Sofa.gd" type="Script" id=2]
[ext_resource path="res://resources/AlternativeChoices/Timeline_2/Yellow.webp" type="Texture" id=3]
[ext_resource path="res://resources/AlternativeChoices/Timeline_2/Sofa.webp" type="Texture" id=4]
[ext_resource path="res://resources/AlternativeChoices/Timeline_2/Orange.webp" type="Texture" id=5]
[ext_resource path="res://resources/AlternativeChoices/Timeline_6/Door.webp" type="Texture" id=6]
[ext_resource path="res://resources/AlternativeChoices/HoverAlternative.gdshader" type="Shader" id=7]
[sub_resource type="ShaderMaterial" id=22]
shader = ExtResource( 7 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=23]
shader = ExtResource( 7 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=24]
shader = ExtResource( 7 )
shader_param/mixing = 0.0
[sub_resource type="Shader" id=11]
code = "shader_type canvas_item;
uniform float mixing = 0.0;
void fragment(){
vec4 color = texture(TEXTURE,UV);
color.rgb = mix(color.rgb, vec3(1,1,1).rgb, mixing);
COLOR = color;
}"
[sub_resource type="ShaderMaterial" id=25]
shader = SubResource( 11 )
shader_param/mixing = 0.0
[sub_resource type="DynamicFontData" id=19]
font_path = "res://resources/fonts/TimesNewerRoman-Regular.otf"
[sub_resource type="DynamicFont" id=26]
size = 36
font_data = SubResource( 19 )
[sub_resource type="DynamicFontData" id=20]
font_path = "res://resources/fonts/TimesNewerRoman-Regular.otf"
[sub_resource type="DynamicFont" id=27]
size = 36
font_data = SubResource( 20 )
[sub_resource type="DynamicFontData" id=21]
font_path = "res://resources/fonts/TimesNewerRoman-Regular.otf"
[sub_resource type="DynamicFont" id=28]
size = 36
font_data = SubResource( 21 )
[node name="AlternativeChoice" instance=ExtResource( 1 )]
script = ExtResource( 2 )
[node name="Orange" type="TextureButton" parent="SpriteButtons" index="0"]
material = SubResource( 22 )
margin_left = 1292.0
margin_top = 255.0
margin_right = 3531.0
margin_bottom = 3369.0
rect_scale = Vector2( 0.088, 0.088 )
texture_normal = ExtResource( 5 )
[node name="Yellow" type="TextureButton" parent="SpriteButtons" index="1"]
material = SubResource( 23 )
margin_left = 1595.84
margin_top = 329.0
margin_right = 4378.84
margin_bottom = 6594.0
rect_scale = Vector2( 0.105, 0.105 )
texture_normal = ExtResource( 3 )
[node name="Sofa" type="TextureButton" parent="SpriteButtons" index="2"]
material = SubResource( 24 )
margin_left = 55.0
margin_top = 454.0
margin_right = 819.0
margin_bottom = 908.0
rect_scale = Vector2( 0.495, 0.495 )
texture_normal = ExtResource( 4 )
[node name="Door" type="TextureButton" parent="SpriteButtons" index="3"]
material = SubResource( 25 )
margin_left = 712.0
margin_top = 216.0
margin_right = 1076.0
margin_bottom = 995.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 6 )
[node name="OrangeLabel" type="Label" parent="Labels" index="0"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 26 )
align = 1
valign = 1
[node name="YellowLabel" type="Label" parent="Labels" index="1"]
visible = false
margin_bottom = 43.0
custom_fonts/font = SubResource( 27 )
align = 1
valign = 1
[node name="SofaLabel" type="Label" parent="Labels" index="2"]
visible = false
margin_bottom = 43.0
custom_fonts/font = SubResource( 28 )
align = 1
valign = 1
[node name="DoorLabel" type="Label" parent="Labels" index="3"]
visible = false
margin_bottom = 43.0
custom_fonts/font = SubResource( 28 )
align = 1
valign = 1
[connection signal="button_up" from="SpriteButtons/Orange" to="." method="_on_Orange_button_up"]
[connection signal="button_up" from="SpriteButtons/Yellow" to="." method="_on_Yellow_button_up"]
[connection signal="button_up" from="SpriteButtons/Sofa" to="." method="_on_Sofa_button_up"]
[connection signal="button_up" from="SpriteButtons/Door" to="." method="_on_Door_button_up"]

View file

@ -0,0 +1,80 @@
[gd_scene load_steps=11 format=2]
[ext_resource path="res://scenes/AlternativeChoices/AlternativeChoiceBase.tscn" type="PackedScene" id=1]
[ext_resource path="res://resources/AlternativeChoices/Before_Timeline_149/orange.webp" type="Texture" id=2]
[ext_resource path="res://resources/AlternativeChoices/HoverAlternative.gdshader" type="Shader" id=3]
[ext_resource path="res://scripts/AlternativeChoices/AlternativeChoiceTimeline_before_129.gd" type="Script" id=4]
[ext_resource path="res://resources/AlternativeChoices/Timeline_5/Arrow.webp" type="Texture" id=5]
[sub_resource type="ShaderMaterial" id=5]
shader = ExtResource( 3 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=6]
shader = ExtResource( 3 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=7]
shader = ExtResource( 3 )
shader_param/mixing = 0.0
[sub_resource type="DynamicFontData" id=2]
font_path = "res://resources/fonts/TimesNewerRoman-Regular.otf"
[sub_resource type="DynamicFont" id=3]
size = 36
font_data = SubResource( 2 )
[node name="AlternativeChoice" instance=ExtResource( 1 )]
script = ExtResource( 4 )
[node name="Orange" type="TextureButton" parent="SpriteButtons" index="0"]
material = SubResource( 5 )
margin_left = 1262.0
margin_top = 386.0
margin_right = 1745.0
margin_bottom = 1611.0
rect_scale = Vector2( 0.55, 0.55 )
texture_normal = ExtResource( 2 )
[node name="Arrow" type="TextureButton" parent="SpriteButtons" index="1"]
material = SubResource( 6 )
margin_left = 43.0
margin_top = 508.0
margin_right = 163.0
margin_bottom = 598.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 5 )
[node name="Knife" type="TextureButton" parent="SpriteButtons" index="2"]
material = SubResource( 7 )
margin_left = 1639.0
margin_top = 498.0
margin_right = 1783.0
margin_bottom = 604.0
rect_scale = Vector2( 0.5, 0.5 )
[node name="Orange" type="Label" parent="Labels" index="0"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 3 )
align = 1
valign = 1
[node name="Back" type="Label" parent="Labels" index="1"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 3 )
align = 1
valign = 1
[node name="Knife" type="Label" parent="Labels" index="2"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 3 )
align = 1
valign = 1
[connection signal="button_up" from="SpriteButtons/Orange" to="." method="_on_Orange_button_up"]
[connection signal="button_up" from="SpriteButtons/Arrow" to="." method="_on_Arrow_button_up"]
[connection signal="button_up" from="SpriteButtons/Knife" to="." method="_on_Knife_button_up"]

View file

@ -0,0 +1,109 @@
[gd_scene load_steps=14 format=2]
[ext_resource path="res://scenes/AlternativeChoices/AlternativeChoiceBase.tscn" type="PackedScene" id=1]
[ext_resource path="res://resources/AlternativeChoices/Timeline_5/Arrow.webp" type="Texture" id=2]
[ext_resource path="res://resources/AlternativeChoices/HoverAlternative.gdshader" type="Shader" id=3]
[ext_resource path="res://scripts/AlternativeChoices/AlternativeChoiceTimeline_before_130.gd" type="Script" id=4]
[ext_resource path="res://resources/AlternativeChoices/Before_Timeline_142_h/Yellow.webp" type="Texture" id=5]
[sub_resource type="ShaderMaterial" id=9]
shader = ExtResource( 3 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=10]
shader = ExtResource( 3 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=11]
shader = ExtResource( 3 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=12]
shader = ExtResource( 3 )
shader_param/mixing = 0.0
[sub_resource type="DynamicFontData" id=2]
font_path = "res://resources/fonts/TimesNewerRoman-Regular.otf"
[sub_resource type="DynamicFont" id=3]
size = 36
font_data = SubResource( 2 )
[sub_resource type="DynamicFontData" id=7]
font_path = "res://resources/fonts/TimesNewerRoman-Regular.otf"
[sub_resource type="DynamicFont" id=8]
size = 36
font_data = SubResource( 7 )
[node name="AlternativeChoice" instance=ExtResource( 1 )]
script = ExtResource( 4 )
[node name="Yellow" type="TextureButton" parent="SpriteButtons" index="0"]
material = SubResource( 9 )
margin_left = 1067.0
margin_top = 360.0
margin_right = 1550.0
margin_bottom = 1585.0
rect_scale = Vector2( 0.38, 0.38 )
texture_normal = ExtResource( 5 )
flip_h = true
[node name="Door" type="TextureButton" parent="SpriteButtons" index="1"]
material = SubResource( 10 )
margin_left = 742.0
margin_top = 396.0
margin_right = 859.0
margin_bottom = 560.0
[node name="ArrowSmoking" type="TextureButton" parent="SpriteButtons" index="2"]
material = SubResource( 11 )
margin_left = 50.0
margin_top = 650.0
margin_right = 170.0
margin_bottom = 740.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 2 )
[node name="ArrowFront" type="TextureButton" parent="SpriteButtons" index="3"]
material = SubResource( 12 )
margin_left = 1800.0
margin_top = 650.0
margin_right = 1920.0
margin_bottom = 740.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 2 )
flip_h = true
[node name="Yellow" type="Label" parent="Labels" index="0"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 3 )
align = 1
valign = 1
[node name="Door" type="Label" parent="Labels" index="1"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 3 )
align = 1
valign = 1
[node name="a1" type="Label" parent="Labels" index="2"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 8 )
align = 1
valign = 1
[node name="a2" type="Label" parent="Labels" index="3"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 8 )
align = 1
valign = 1
[connection signal="button_up" from="SpriteButtons/Yellow" to="." method="_on_Yellow_button_up"]
[connection signal="button_up" from="SpriteButtons/Door" to="." method="_on_Door_button_up"]
[connection signal="button_up" from="SpriteButtons/ArrowSmoking" to="." method="_on_ArrowSmoking_button_up"]
[connection signal="button_up" from="SpriteButtons/ArrowFront" to="." method="_on_ArrowFront_button_up"]

View file

@ -0,0 +1,106 @@
[gd_scene load_steps=13 format=2]
[ext_resource path="res://scenes/AlternativeChoices/AlternativeChoiceBase.tscn" type="PackedScene" id=1]
[ext_resource path="res://scripts/AlternativeChoices/AlternativeChoiceTimeline_before_141.gd" type="Script" id=2]
[ext_resource path="res://resources/AlternativeChoices/HoverAlternative.gdshader" type="Shader" id=4]
[ext_resource path="res://resources/AlternativeChoices/Timeline_5/LightHouse_n.webp" type="Texture" id=5]
[ext_resource path="res://resources/AlternativeChoices/Timeline_32/door_night.webp" type="Texture" id=6]
[ext_resource path="res://resources/AlternativeChoices/Timeline_5/Arrow.webp" type="Texture" id=7]
[sub_resource type="ShaderMaterial" id=4]
shader = ExtResource( 4 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=5]
shader = ExtResource( 4 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=6]
shader = ExtResource( 4 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=7]
shader = ExtResource( 4 )
shader_param/mixing = 0.0
[sub_resource type="DynamicFontData" id=2]
font_path = "res://resources/fonts/TimesNewerRoman-Regular.otf"
[sub_resource type="DynamicFont" id=3]
size = 36
font_data = SubResource( 2 )
[node name="AlternativeChoice" instance=ExtResource( 1 )]
script = ExtResource( 2 )
[node name="SpriteButtons" parent="." index="0"]
z_index = 2
[node name="Door" type="TextureButton" parent="SpriteButtons" index="0"]
material = SubResource( 4 )
margin_left = 823.0
margin_top = 526.0
margin_right = 1123.0
margin_bottom = 1076.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 6 )
[node name="ArrowGarage" type="TextureButton" parent="SpriteButtons" index="1"]
material = SubResource( 5 )
margin_left = 88.0
margin_top = 838.0
margin_right = 208.0
margin_bottom = 928.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 7 )
[node name="ArrowSmoking" type="TextureButton" parent="SpriteButtons" index="2"]
material = SubResource( 6 )
margin_left = 1396.0
margin_top = 674.0
margin_right = 1516.0
margin_bottom = 764.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 7 )
[node name="LightHouse" type="TextureButton" parent="SpriteButtons" index="3"]
material = SubResource( 7 )
margin_left = 1584.0
margin_top = 159.5
margin_right = 2194.0
margin_bottom = 1159.5
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 5 )
[node name="Door" type="Label" parent="Labels" index="0"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 3 )
align = 1
valign = 1
[node name="Arrow" type="Label" parent="Labels" index="1"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 3 )
align = 1
valign = 1
[node name="Arrow2" type="Label" parent="Labels" index="2"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 3 )
align = 1
valign = 1
[node name="LightHouse" type="Label" parent="Labels" index="3"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 3 )
align = 1
valign = 1
[connection signal="button_up" from="SpriteButtons/Door" to="." method="_on_Door_button_up"]
[connection signal="button_up" from="SpriteButtons/ArrowGarage" to="." method="_on_ArrowGarage_button_up"]
[connection signal="button_up" from="SpriteButtons/ArrowSmoking" to="." method="_on_ArrowSmoking_button_up"]
[connection signal="button_up" from="SpriteButtons/LightHouse" to="." method="_on_LightHouse_button_up"]

View file

@ -0,0 +1,121 @@
[gd_scene load_steps=13 format=2]
[ext_resource path="res://scenes/AlternativeChoices/AlternativeChoiceBase.tscn" type="PackedScene" id=1]
[ext_resource path="res://resources/AlternativeChoices/HoverAlternative.gdshader" type="Shader" id=2]
[ext_resource path="res://scripts/AlternativeChoices/AlternativeChoiceTimeline_before_142_h.gd" type="Script" id=3]
[ext_resource path="res://resources/AlternativeChoices/Before_Timeline_142_h/Yellow.webp" type="Texture" id=6]
[ext_resource path="res://resources/AlternativeChoices/Timeline_5/Arrow.webp" type="Texture" id=7]
[sub_resource type="ShaderMaterial" id=1]
shader = ExtResource( 2 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=2]
shader = ExtResource( 2 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=5]
shader = ExtResource( 2 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=6]
shader = ExtResource( 2 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=7]
shader = ExtResource( 2 )
shader_param/mixing = 0.0
[sub_resource type="DynamicFontData" id=3]
font_path = "res://resources/fonts/TimesNewerRoman-Regular.otf"
[sub_resource type="DynamicFont" id=4]
size = 36
font_data = SubResource( 3 )
[node name="AlternativeChoice" instance=ExtResource( 1 )]
script = ExtResource( 3 )
[node name="Yellow" type="TextureButton" parent="SpriteButtons" index="0"]
material = SubResource( 1 )
margin_left = 1067.0
margin_top = 360.0
margin_right = 1550.0
margin_bottom = 1585.0
rect_scale = Vector2( 0.38, 0.38 )
texture_normal = ExtResource( 6 )
flip_h = true
[node name="Door" type="TextureButton" parent="SpriteButtons" index="1"]
material = SubResource( 2 )
margin_left = 744.0
margin_top = 395.0
margin_right = 862.0
margin_bottom = 545.0
[node name="Car" type="TextureButton" parent="SpriteButtons" index="2"]
material = SubResource( 5 )
margin_left = 185.0
margin_top = 392.0
margin_right = 729.0
margin_bottom = 823.0
[node name="ArrowFront" type="TextureButton" parent="SpriteButtons" index="3"]
material = SubResource( 6 )
margin_left = 1800.0
margin_top = 650.0
margin_right = 1920.0
margin_bottom = 740.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 7 )
flip_h = true
[node name="ArrowSmoking" type="TextureButton" parent="SpriteButtons" index="4"]
material = SubResource( 7 )
margin_left = 50.0
margin_top = 650.0
margin_right = 170.0
margin_bottom = 740.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 7 )
[node name="YellowLabel" type="Label" parent="Labels" index="0"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 4 )
align = 1
valign = 1
[node name="DoorLabel" type="Label" parent="Labels" index="1"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 4 )
align = 1
valign = 1
[node name="CarLabel" type="Label" parent="Labels" index="2"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 4 )
align = 1
valign = 1
[node name="ArrowLabel" type="Label" parent="Labels" index="3"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 4 )
align = 1
valign = 1
[node name="ArrowLabel2" type="Label" parent="Labels" index="4"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 4 )
align = 1
valign = 1
[connection signal="button_up" from="SpriteButtons/Yellow" to="." method="_on_Yellow_button_up"]
[connection signal="button_up" from="SpriteButtons/Door" to="." method="_on_Door_button_up"]
[connection signal="button_up" from="SpriteButtons/Car" to="." method="_on_Car_button_up"]
[connection signal="button_up" from="SpriteButtons/ArrowFront" to="." method="_on_ArrowFront_button_up"]
[connection signal="button_up" from="SpriteButtons/ArrowSmoking" to="." method="_on_ArrowSmoking_button_up"]

View file

@ -0,0 +1,99 @@
[gd_scene load_steps=12 format=2]
[ext_resource path="res://scenes/AlternativeChoices/AlternativeChoiceBase.tscn" type="PackedScene" id=1]
[ext_resource path="res://resources/AlternativeChoices/Before_Timeline_143/gray.webp" type="Texture" id=2]
[ext_resource path="res://scripts/AlternativeChoices/AlternativeChoiceTimeline_before_143.gd" type="Script" id=3]
[ext_resource path="res://resources/AlternativeChoices/HoverAlternative.gdshader" type="Shader" id=4]
[ext_resource path="res://resources/AlternativeChoices/Timeline_5/Arrow.webp" type="Texture" id=5]
[sub_resource type="ShaderMaterial" id=5]
shader = ExtResource( 4 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=6]
shader = ExtResource( 4 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=7]
shader = ExtResource( 4 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=8]
shader = ExtResource( 4 )
shader_param/mixing = 0.0
[sub_resource type="DynamicFontData" id=2]
font_path = "res://resources/fonts/TimesNewerRoman-Regular.otf"
[sub_resource type="DynamicFont" id=3]
size = 36
font_data = SubResource( 2 )
[node name="AlternativeChoice" instance=ExtResource( 1 )]
script = ExtResource( 3 )
[node name="Gray" type="TextureButton" parent="SpriteButtons" index="0"]
material = SubResource( 5 )
margin_left = 207.0
margin_top = 421.0
margin_right = 690.0
margin_bottom = 1646.0
rect_scale = Vector2( 0.45, 0.45 )
texture_normal = ExtResource( 2 )
[node name="Arrow" type="TextureButton" parent="SpriteButtons" index="1"]
material = SubResource( 6 )
margin_left = 1401.0
margin_top = 131.0
margin_right = 1521.0
margin_bottom = 221.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 5 )
[node name="Elec" type="TextureButton" parent="SpriteButtons" index="2"]
material = SubResource( 7 )
margin_left = 631.0
margin_top = 451.0
margin_right = 819.0
margin_bottom = 733.0
rect_scale = Vector2( 0.5, 0.5 )
[node name="Window" type="TextureButton" parent="SpriteButtons" index="3"]
material = SubResource( 8 )
margin_top = 152.0
margin_right = 640.0
margin_bottom = 614.0
rect_scale = Vector2( 0.5, 0.5 )
[node name="GrayLabel" type="Label" parent="Labels" index="0"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 3 )
align = 1
valign = 1
[node name="Arrow" type="Label" parent="Labels" index="1"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 3 )
align = 1
valign = 1
[node name="Elec" type="Label" parent="Labels" index="2"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 3 )
align = 1
valign = 1
[node name="Window" type="Label" parent="Labels" index="3"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 3 )
align = 1
valign = 1
[connection signal="button_up" from="SpriteButtons/Gray" to="." method="_on_Gray_button_up"]
[connection signal="button_up" from="SpriteButtons/Arrow" to="." method="_on_Arrow_button_up"]
[connection signal="button_up" from="SpriteButtons/Elec" to="." method="_on_Elec_button_up"]
[connection signal="button_up" from="SpriteButtons/Window" to="." method="_on_Window_button_up"]

View file

@ -0,0 +1,80 @@
[gd_scene load_steps=11 format=2]
[ext_resource path="res://scenes/AlternativeChoices/AlternativeChoiceBase.tscn" type="PackedScene" id=1]
[ext_resource path="res://scripts/AlternativeChoices/AlternativeChoiceTimeline_before_149.gd" type="Script" id=2]
[ext_resource path="res://resources/AlternativeChoices/HoverAlternative.gdshader" type="Shader" id=3]
[ext_resource path="res://resources/AlternativeChoices/Timeline_5/Arrow.webp" type="Texture" id=5]
[ext_resource path="res://resources/AlternativeChoices/Before_Timeline_149/orange.webp" type="Texture" id=6]
[sub_resource type="ShaderMaterial" id=8]
shader = ExtResource( 3 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=9]
shader = ExtResource( 3 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=10]
shader = ExtResource( 3 )
shader_param/mixing = 0.0
[sub_resource type="DynamicFontData" id=7]
font_path = "res://resources/fonts/TimesNewerRoman-Regular.otf"
[sub_resource type="DynamicFont" id=3]
size = 36
font_data = SubResource( 7 )
[node name="AlternativeChoice" instance=ExtResource( 1 )]
script = ExtResource( 2 )
[node name="Orange" type="TextureButton" parent="SpriteButtons" index="0"]
material = SubResource( 8 )
margin_left = 1262.0
margin_top = 386.0
margin_right = 1745.0
margin_bottom = 1611.0
rect_scale = Vector2( 0.55, 0.55 )
texture_normal = ExtResource( 6 )
[node name="Arrow" type="TextureButton" parent="SpriteButtons" index="1"]
material = SubResource( 9 )
margin_left = 43.0
margin_top = 508.0
margin_right = 163.0
margin_bottom = 598.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 5 )
[node name="Knife" type="TextureButton" parent="SpriteButtons" index="2"]
material = SubResource( 10 )
margin_left = 1639.0
margin_top = 498.0
margin_right = 1783.0
margin_bottom = 604.0
rect_scale = Vector2( 0.5, 0.5 )
[node name="OrangeLabel" type="Label" parent="Labels" index="0"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 3 )
align = 1
valign = 1
[node name="ArrowLabel" type="Label" parent="Labels" index="1"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 3 )
align = 1
valign = 1
[node name="KnifeLabel" type="Label" parent="Labels" index="2"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 3 )
align = 1
valign = 1
[connection signal="button_up" from="SpriteButtons/Orange" to="." method="_on_Orange_button_up"]
[connection signal="button_up" from="SpriteButtons/Arrow" to="." method="_on_Arrow_button_up"]
[connection signal="button_up" from="SpriteButtons/Knife" to="." method="_on_Knife_button_up"]

View file

@ -0,0 +1,126 @@
[gd_scene load_steps=15 format=2]
[ext_resource path="res://scenes/AlternativeChoices/AlternativeChoiceBase.tscn" type="PackedScene" id=1]
[ext_resource path="res://resources/AlternativeChoices/Timeline_5/Arrow.webp" type="Texture" id=2]
[ext_resource path="res://resources/AlternativeChoices/HoverAlternative.gdshader" type="Shader" id=3]
[ext_resource path="res://scripts/AlternativeChoices/AlternativeChoiceTimeline_before_2nd_floor.gd" type="Script" id=4]
[ext_resource path="res://resources/AlternativeChoices/Before_2nd_floor/lightsOn2.webp" type="Texture" id=5]
[ext_resource path="res://resources/AlternativeChoices/Before_2nd_floor/lightsOnOffice.webp" type="Texture" id=6]
[ext_resource path="res://resources/AlternativeChoices/Before_2nd_floor/lightsOn1.webp" type="Texture" id=7]
[sub_resource type="ShaderMaterial" id=18]
shader = ExtResource( 3 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=19]
shader = ExtResource( 3 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=20]
shader = ExtResource( 3 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=21]
shader = ExtResource( 3 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=22]
shader = ExtResource( 3 )
shader_param/mixing = 0.0
[sub_resource type="DynamicFontData" id=17]
font_path = "res://resources/fonts/TimesNewerRoman-Regular.otf"
[sub_resource type="DynamicFont" id=23]
size = 36
font_data = SubResource( 17 )
[node name="AlternativeChoice" instance=ExtResource( 1 )]
script = ExtResource( 4 )
[node name="Down" type="TextureButton" parent="SpriteButtons" index="0"]
material = SubResource( 18 )
margin_left = 1415.0
margin_top = 668.0
margin_right = 1535.0
margin_bottom = 758.0
texture_normal = ExtResource( 2 )
flip_h = true
flip_v = true
[node name="Up" type="TextureButton" parent="SpriteButtons" index="1"]
material = SubResource( 19 )
margin_left = 1415.0
margin_top = 334.0
margin_right = 1535.0
margin_bottom = 424.0
texture_normal = ExtResource( 2 )
flip_h = true
[node name="1" type="TextureButton" parent="SpriteButtons" index="2"]
material = SubResource( 20 )
margin_left = 53.0
margin_top = 93.0
margin_right = 973.0
margin_bottom = 1784.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 7 )
[node name="2" type="TextureButton" parent="SpriteButtons" index="3"]
material = SubResource( 21 )
margin_left = 809.0
margin_top = 180.0
margin_right = 1118.0
margin_bottom = 1166.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 5 )
[node name="Office" type="TextureButton" parent="SpriteButtons" index="4"]
material = SubResource( 22 )
margin_left = 1100.0
margin_top = 202.0
margin_right = 1294.0
margin_bottom = 918.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 6 )
[node name="Down" type="Label" parent="Labels" index="0"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 23 )
align = 1
valign = 1
[node name="Up" type="Label" parent="Labels" index="1"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 23 )
align = 1
valign = 1
[node name="1" type="Label" parent="Labels" index="2"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 23 )
align = 1
valign = 1
[node name="2" type="Label" parent="Labels" index="3"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 23 )
align = 1
valign = 1
[node name="Office" type="Label" parent="Labels" index="4"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 23 )
align = 1
valign = 1
[connection signal="button_up" from="SpriteButtons/Down" to="." method="_on_Down_button_up"]
[connection signal="button_up" from="SpriteButtons/Up" to="." method="_on_Up_button_up"]
[connection signal="button_up" from="SpriteButtons/1" to="." method="_on_1_button_up"]
[connection signal="button_up" from="SpriteButtons/2" to="." method="_on_2_button_up"]
[connection signal="button_up" from="SpriteButtons/Office" to="." method="_on_Office_button_up"]

View file

@ -0,0 +1,127 @@
[gd_scene load_steps=16 format=2]
[ext_resource path="res://scenes/AlternativeChoices/AlternativeChoiceBase.tscn" type="PackedScene" id=1]
[ext_resource path="res://resources/AlternativeChoices/HoverAlternative.gdshader" type="Shader" id=2]
[ext_resource path="res://resources/AlternativeChoices/Timeline_5/Arrow.webp" type="Texture" id=3]
[ext_resource path="res://scripts/AlternativeChoices/AlternativeChoiceTimeline_before_3rd_floor.gd" type="Script" id=4]
[ext_resource path="res://resources/AlternativeChoices/Before_3rd_floor/lightsOn3.webp" type="Texture" id=5]
[ext_resource path="res://resources/AlternativeChoices/Before_3rd_floor/lightsOn4.webp" type="Texture" id=6]
[ext_resource path="res://resources/AlternativeChoices/Before_3rd_floor/lightsOn5.webp" type="Texture" id=7]
[ext_resource path="res://resources/AlternativeChoices/Before_3rd_floor/Window_lightsOn.webp" type="Texture" id=9]
[sub_resource type="ShaderMaterial" id=1]
shader = ExtResource( 2 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=2]
shader = ExtResource( 2 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=3]
shader = ExtResource( 2 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=4]
shader = ExtResource( 2 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=5]
shader = ExtResource( 2 )
shader_param/mixing = 0.0
[sub_resource type="DynamicFontData" id=6]
font_path = "res://resources/fonts/TimesNewerRoman-Regular.otf"
[sub_resource type="DynamicFont" id=7]
size = 36
font_data = SubResource( 6 )
[node name="AlternativeChoice" instance=ExtResource( 1 )]
script = ExtResource( 4 )
[node name="Down" type="TextureButton" parent="SpriteButtons" index="0"]
material = SubResource( 1 )
margin_left = 1382.0
margin_top = 570.0
margin_right = 1502.0
margin_bottom = 660.0
texture_normal = ExtResource( 3 )
flip_h = true
flip_v = true
[node name="Window" type="TextureButton" parent="SpriteButtons" index="1"]
material = SubResource( 2 )
margin_left = 1308.0
margin_top = 168.0
margin_right = 1598.0
margin_bottom = 785.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 9 )
[node name="3" type="TextureButton" parent="SpriteButtons" index="2"]
material = SubResource( 3 )
margin_left = 52.0
margin_top = 93.0
margin_right = 972.0
margin_bottom = 1784.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 5 )
[node name="4" type="TextureButton" parent="SpriteButtons" index="3"]
material = SubResource( 4 )
margin_left = 809.0
margin_top = 181.0
margin_right = 1118.0
margin_bottom = 1167.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 6 )
[node name="5" type="TextureButton" parent="SpriteButtons" index="4"]
material = SubResource( 5 )
margin_left = 1100.0
margin_top = 202.0
margin_right = 1294.0
margin_bottom = 918.0
rect_scale = Vector2( 0.5, 0.5 )
texture_normal = ExtResource( 7 )
[node name="Down" type="Label" parent="Labels" index="0"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 7 )
align = 1
valign = 1
[node name="Window" type="Label" parent="Labels" index="1"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 7 )
align = 1
valign = 1
[node name="3" type="Label" parent="Labels" index="2"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 7 )
align = 1
valign = 1
[node name="4" type="Label" parent="Labels" index="3"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 7 )
align = 1
valign = 1
[node name="5" type="Label" parent="Labels" index="4"]
visible = false
margin_bottom = 45.0
custom_fonts/font = SubResource( 7 )
align = 1
valign = 1
[connection signal="button_up" from="SpriteButtons/Down" to="." method="_on_Down_button_up"]
[connection signal="button_up" from="SpriteButtons/Window" to="." method="_on_Window_button_up"]
[connection signal="button_up" from="SpriteButtons/3" to="." method="_on_3_button_up"]
[connection signal="button_up" from="SpriteButtons/4" to="." method="_on_4_button_up"]
[connection signal="button_up" from="SpriteButtons/5" to="." method="_on_5_button_up"]

25
scenes/BGMScene.tscn Normal file
View file

@ -0,0 +1,25 @@
[gd_scene load_steps=4 format=2]
[ext_resource path="res://scripts/BGMScene.gd" type="Script" id=1]
[ext_resource path="res://scripts/TweenBGM.gd" type="Script" id=2]
[ext_resource path="res://scripts/TweenBGMsfx.gd" type="Script" id=3]
[node name="Node2D" type="Node"]
script = ExtResource( 1 )
[node name="Tween" type="Tween" parent="."]
[node name="AudioStreamPlayer" type="AudioStreamPlayer" parent="Tween"]
bus = "BGM"
[node name="TweenBGM" type="Tween" parent="."]
script = ExtResource( 2 )
[node name="BGMStreamPlayer" type="AudioStreamPlayer" parent="TweenBGM"]
[node name="TweenBGMsfx" type="Tween" parent="."]
script = ExtResource( 3 )
[node name="BGMStreamPlayer" type="AudioStreamPlayer" parent="TweenBGMsfx"]
[connection signal="finished" from="TweenBGM/BGMStreamPlayer" to="TweenBGM" method="_on_BGMStreamPlayer_finished"]

View file

@ -0,0 +1,46 @@
[gd_scene load_steps=2 format=2]
[ext_resource path="res://dlc/oneeleven18+/scripts/DLC18.gd" type="Script" id=1]
[node name="AgathaDLC" type="Node2D"]
script = ExtResource( 1 )
[node name="Sprite0" type="Sprite" parent="."]
visible = false
centered = false
[node name="Sprite1" type="Sprite" parent="."]
visible = false
centered = false
[node name="Sprite2" type="Sprite" parent="."]
visible = false
centered = false
[node name="Sprite3" type="Sprite" parent="."]
visible = false
centered = false
[node name="Sprite4" type="Sprite" parent="."]
visible = false
centered = false
[node name="Sprite5" type="Sprite" parent="."]
visible = false
centered = false
[node name="Sprite6" type="Sprite" parent="."]
visible = false
centered = false
[node name="Sprite7" type="Sprite" parent="."]
visible = false
centered = false
[node name="Sprite8" type="Sprite" parent="."]
visible = false
centered = false
[node name="Tween" type="Tween" parent="."]
[connection signal="tween_all_completed" from="Tween" to="." method="_on_Tween_tween_all_completed"]

View file

@ -0,0 +1,18 @@
[gd_scene load_steps=4 format=2]
[ext_resource path="res://scripts/backround_scenes_scripts/Agatha_sex.gd" type="Script" id=1]
[ext_resource path="res://resources/graphics/backgrounds/agatha_sex/2.webp" type="Texture" id=2]
[ext_resource path="res://resources/graphics/backgrounds/agatha_sex/1.webp" type="Texture" id=3]
[node name="Agatha_sex" type="Node2D"]
script = ExtResource( 1 )
[node name="Sprite2" type="Sprite" parent="."]
texture = ExtResource( 2 )
centered = false
[node name="Sprite1" type="Sprite" parent="."]
texture = ExtResource( 3 )
centered = false
[node name="Tween" type="Tween" parent="."]

View file

@ -0,0 +1,32 @@
[gd_scene load_steps=2 format=2]
[ext_resource path="res://dlc/oneeleven18+/scripts/DLC18.gd" type="Script" id=1]
[node name="AmandaDLC" type="Node2D"]
script = ExtResource( 1 )
[node name="Sprite0" type="Sprite" parent="."]
visible = false
centered = false
[node name="Sprite1" type="Sprite" parent="."]
visible = false
centered = false
[node name="Sprite2" type="Sprite" parent="."]
visible = false
centered = false
[node name="Sprite3" type="Sprite" parent="."]
visible = false
centered = false
[node name="Sprite4" type="Sprite" parent="."]
visible = false
centered = false
[node name="Sprite5" type="Sprite" parent="."]
visible = false
centered = false
[node name="Tween" type="Tween" parent="."]

View file

@ -0,0 +1,17 @@
[gd_scene load_steps=3 format=2]
[ext_resource path="res://scripts/backround_scenes_scripts/Amanda_Suicide.gd" type="Script" id=3]
[sub_resource type="VideoStreamGDNative" id=1]
[node name="Amanda_Suicide" type="Node2D"]
scale = Vector2( 2, 2 )
script = ExtResource( 3 )
[node name="Video" type="Node2D" parent="."]
[node name="VideoPlayer" type="VideoPlayer" parent="Video"]
margin_right = 1920.0
margin_bottom = 1080.0
stream = SubResource( 1 )
buffering_msec = 1000

View file

@ -0,0 +1,34 @@
[gd_scene load_steps=7 format=2]
[ext_resource path="res://scripts/backround_scenes_scripts/Amanda_before_sex.gd" type="Script" id=1]
[ext_resource path="res://resources/graphics/backgrounds/amanda_before_sex/sprite1_body.webp" type="Texture" id=2]
[ext_resource path="res://resources/graphics/backgrounds/amanda_before_sex/head2.webp" type="Texture" id=3]
[ext_resource path="res://resources/graphics/backgrounds/amanda_before_sex/head4.webp" type="Texture" id=4]
[ext_resource path="res://resources/graphics/backgrounds/amanda_before_sex/head3.webp" type="Texture" id=5]
[ext_resource path="res://resources/graphics/backgrounds/amanda_before_sex/head1.webp" type="Texture" id=6]
[node name="Amanda_before_sex" type="Node2D"]
script = ExtResource( 1 )
[node name="Body" type="Sprite" parent="."]
texture = ExtResource( 2 )
centered = false
[node name="Head1" type="Sprite" parent="."]
texture = ExtResource( 6 )
centered = false
[node name="Head2" type="Sprite" parent="."]
visible = false
texture = ExtResource( 3 )
centered = false
[node name="Head3" type="Sprite" parent="."]
visible = false
texture = ExtResource( 5 )
centered = false
[node name="Head4" type="Sprite" parent="."]
visible = false
texture = ExtResource( 4 )
centered = false

View file

@ -0,0 +1,18 @@
[gd_scene load_steps=4 format=2]
[ext_resource path="res://resources/graphics/backgrounds/amanda_sex/AMANDA 1.webp" type="Texture" id=1]
[ext_resource path="res://resources/graphics/backgrounds/amanda_sex/AMANDA 2.webp" type="Texture" id=2]
[ext_resource path="res://scripts/backround_scenes_scripts/Amanda_sex.gd" type="Script" id=3]
[node name="Amanda_sex" type="Node2D"]
script = ExtResource( 3 )
[node name="Sprite2" type="Sprite" parent="."]
texture = ExtResource( 2 )
centered = false
[node name="Sprite1" type="Sprite" parent="."]
texture = ExtResource( 1 )
centered = false
[node name="Tween" type="Tween" parent="."]

View file

@ -0,0 +1,95 @@
[gd_scene load_steps=12 format=2]
[ext_resource path="res://resources/graphics/backgrounds/black_green_death_1/Stsena_smerti_chernaya_i_zelenaya_BEZ_SVETA__BEZ_DOZhDYa.webp" type="Texture" id=4]
[ext_resource path="res://resources/graphics/backgrounds/black_green_death_1/Stsena_smerti_chernaya_i_zelenaya_SVET__BEZ_DOZhDYa.webp" type="Texture" id=5]
[ext_resource path="res://resources/graphics/backgrounds/black_green_death_1/Stsena_smerti_chernaya_PNG.webp" type="Texture" id=6]
[ext_resource path="res://darkening_shader.tres" type="Shader" id=7]
[ext_resource path="res://scripts/Green__Black_Death_1.gd" type="Script" id=9]
[ext_resource path="res://resources/graphics/backgrounds/drop_for_roman.webp" type="Texture" id=10]
[ext_resource path="res://resources/graphics/darkening/darkening1.webp" type="Texture" id=11]
[ext_resource path="res://resources/graphics/endtext/2_thx_for_playing.webp" type="Texture" id=12]
[ext_resource path="res://resources/graphics/endtext/2_konets_demo.webp" type="Texture" id=13]
[sub_resource type="ParticlesMaterial" id=5]
lifetime_randomness = 0.1
trail_divisor = 2
emission_shape = 2
emission_box_extents = Vector3( 5000, 100, 1 )
flag_align_y = true
flag_disable_z = true
gravity = Vector3( 0, 98, 0 )
orbit_velocity = 0.0
orbit_velocity_random = 0.0
radial_accel = 22.18
scale = 0.8
color = Color( 1, 1, 1, 0.392157 )
[sub_resource type="ShaderMaterial" id=6]
shader = ExtResource( 7 )
shader_param/alphaChannel = 1.0
[node name="Black_Death_1" type="Node2D"]
scale = Vector2( 1.5, 1.5 )
script = ExtResource( 9 )
[node name="TurnOff" type="Node2D" parent="."]
[node name="Sprite" type="Sprite" parent="TurnOff"]
texture = ExtResource( 4 )
centered = false
[node name="TurnOn" type="Node2D" parent="."]
visible = false
[node name="Sprite5" type="Sprite" parent="TurnOn"]
texture = ExtResource( 5 )
centered = false
[node name="Node2D" type="Node2D" parent="TurnOn"]
[node name="Sprite6" type="Sprite" parent="TurnOn/Node2D"]
position = Vector2( 1196, 672 )
scale = Vector2( 0.55, 0.55 )
texture = ExtResource( 6 )
centered = false
[node name="Rain" type="Node2D" parent="."]
[node name="rain" type="Node2D" parent="Rain"]
scale = Vector2( 0.66, 0.66 )
[node name="Particles2D" type="Particles2D" parent="Rain/rain"]
position = Vector2( 5000, -400 )
amount = 2500
lifetime = 8.0
preprocess = 10.0
speed_scale = 5.0
visibility_rect = Rect2( -3000, 300, 200, 200 )
process_material = SubResource( 5 )
texture = ExtResource( 10 )
[node name="ToRemove" type="Sprite" parent="Rain"]
visible = false
material = SubResource( 6 )
scale = Vector2( 0.67, 0.67 )
texture = ExtResource( 11 )
centered = false
[node name="End" type="Node2D" parent="."]
[node name="Tween" type="Tween" parent="End"]
[node name="ru" type="Sprite" parent="End"]
visible = false
light_mask = 4
position = Vector2( 835, -389 )
scale = Vector2( 0.4, 0.4 )
texture = ExtResource( 13 )
centered = false
[node name="eng" type="Sprite" parent="End"]
visible = false
position = Vector2( 835, -389 )
scale = Vector2( 0.4, 0.4 )
texture = ExtResource( 12 )
centered = false

View file

@ -0,0 +1,11 @@
[gd_scene load_steps=3 format=2]
[ext_resource path="res://resources/graphics/backgrounds/blood_floor/Blood_floor.webp" type="Texture" id=1]
[ext_resource path="res://scripts/Blood_floor.gd" type="Script" id=2]
[node name="Blood_floor" type="Node2D"]
script = ExtResource( 2 )
[node name="Sprite" type="Sprite" parent="."]
texture = ExtResource( 1 )
centered = false

View file

@ -0,0 +1,71 @@
[gd_scene load_steps=10 format=2]
[ext_resource path="res://resources/graphics/backgrounds/car/renata-before.webp" type="Texture" id=1]
[ext_resource path="res://resources/graphics/backgrounds/car/renata2.webp" type="Texture" id=2]
[ext_resource path="res://scenes/BackgroundScenes/CarBack3d.tscn" type="PackedScene" id=3]
[ext_resource path="res://resources/graphics/backgrounds/car/Car-after.webp" type="Texture" id=5]
[ext_resource path="res://scripts/backround_scenes_scripts/Car.gd" type="Script" id=6]
[ext_resource path="res://resources/graphics/backgrounds/car/Stul.webp" type="Texture" id=7]
[ext_resource path="res://resources/graphics/backgrounds/car/ренатаPodushka.webp" type="Texture" id=8]
[ext_resource path="res://resources/graphics/backgrounds/car/Car-before.webp" type="Texture" id=9]
[sub_resource type="ViewportTexture" id=1]
viewport_path = NodePath("From3D/Viewport")
[node name="Car" type="Node2D"]
script = ExtResource( 6 )
[node name="View3D" type="Sprite" parent="."]
texture = SubResource( 1 )
centered = false
flip_v = true
[node name="CrashBack" type="Sprite" parent="."]
visible = false
[node name="Polygon2D" type="Polygon2D" parent="CrashBack"]
color = Color( 0, 0, 0, 1 )
polygon = PoolVector2Array( 0, 0, 3840, 0, 3840, 2160, 0, 2160 )
[node name="Car1" type="Sprite" parent="."]
texture = ExtResource( 9 )
centered = false
[node name="Orange1" type="Sprite" parent="Car1"]
position = Vector2( -2, 0 )
texture = ExtResource( 1 )
centered = false
[node name="Stul" type="Sprite" parent="Car1"]
texture = ExtResource( 7 )
centered = false
[node name="Car2" type="Sprite" parent="."]
visible = false
texture = ExtResource( 5 )
centered = false
[node name="Orange2" type="Sprite" parent="Car2"]
position = Vector2( -3, 0 )
texture = ExtResource( 2 )
centered = false
[node name="Orange_addon" type="Sprite" parent="Car2"]
position = Vector2( -3, 0 )
texture = ExtResource( 8 )
centered = false
[node name="Stul" type="Sprite" parent="Car2"]
texture = ExtResource( 7 )
centered = false
[node name="From3D" type="Node2D" parent="."]
[node name="Viewport" type="Viewport" parent="From3D"]
size = Vector2( 3840, 2160 )
[node name="CarBack3d" parent="From3D/Viewport" instance=ExtResource( 3 )]
[node name="Tween" type="Tween" parent="."]
[connection signal="tween_all_completed" from="Tween" to="." method="_on_Tween_tween_all_completed"]

View file

@ -0,0 +1,99 @@
[gd_scene load_steps=10 format=2]
[ext_resource path="res://resources/graphics/backgrounds/car/road.glb" type="PackedScene" id=1]
[ext_resource path="res://resources/graphics/backgrounds/car/tree2.glb" type="PackedScene" id=2]
[ext_resource path="res://resources/graphics/backgrounds/car/tree1.glb" type="PackedScene" id=3]
[ext_resource path="res://scripts/backround_scenes_scripts/CarBack3d.gd" type="Script" id=4]
[sub_resource type="ProceduralSky" id=2]
sky_top_color = Color( 0.521569, 0.521569, 0.521569, 1 )
sky_horizon_color = Color( 0.243137, 0.243137, 0.243137, 1 )
sky_curve = 0.151361
sky_energy = 0.1
ground_bottom_color = Color( 0, 0, 0, 1 )
ground_horizon_color = Color( 0, 0, 0, 1 )
sun_color = Color( 0, 0, 0, 1 )
[sub_resource type="Environment" id=1]
background_mode = 3
background_sky = SubResource( 2 )
background_color = Color( 0.0588235, 0.0588235, 0.0588235, 1 )
background_energy = 0.84
[sub_resource type="ParticlesMaterial" id=3]
lifetime_randomness = 0.1
emission_shape = 2
emission_box_extents = Vector3( 5, 1, 10 )
radial_accel = 1.0
[sub_resource type="SpatialMaterial" id=5]
albedo_color = Color( 0.337255, 0.337255, 0.337255, 0.6 )
metallic = 0.11
metallic_specular = 0.19
emission_enabled = true
emission = Color( 0.0980392, 0.0980392, 0.0980392, 1 )
emission_energy = 1.0
emission_operator = 0
emission_on_uv2 = false
[sub_resource type="CubeMesh" id=4]
material = SubResource( 5 )
size = Vector3( 0.02, 0.2, 0.02 )
[node name="CarBack3d" type="Spatial"]
script = ExtResource( 4 )
[node name="Camera" type="Camera" parent="."]
transform = Transform( -0.820216, 0.217456, -0.529111, -0.00730292, 0.920877, 0.389786, 0.572007, 0.323573, -0.75373, -2.7782, 2.39846, 0 )
environment = SubResource( 1 )
[node name="road" parent="." instance=ExtResource( 1 )]
transform = Transform( 0.990387, 0, -0.138326, 0, 1, 0, 0.138326, 0, 0.990387, 0, 0, 0 )
[node name="TreeArray" type="Spatial" parent="."]
transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 1.47353, 0, 0 )
[node name="tree1" parent="TreeArray" instance=ExtResource( 3 )]
transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 6.06611, 0, 19.5117 )
[node name="tree2" parent="TreeArray" instance=ExtResource( 2 )]
transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 9.37888, 0, 2.07081 )
[node name="tree3" parent="TreeArray" instance=ExtResource( 3 )]
transform = Transform( 0.536799, 0, -0.84371, 0, 1, 0, 0.84371, 0, 0.536799, 11.3423, 0, 6.88538 )
[node name="tree4" parent="TreeArray" instance=ExtResource( 2 )]
transform = Transform( 0.991172, 0, -0.132585, 0, 1, 0, 0.132585, 0, 0.991172, 4.08133, 0, 123.009 )
[node name="tree5" parent="TreeArray" instance=ExtResource( 3 )]
transform = Transform( 0.479718, 0, -0.877423, 0, 1, 0, 0.877423, 0, 0.479718, 8.23057, 0, 8.77411 )
[node name="tree6" parent="TreeArray" instance=ExtResource( 3 )]
transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 6.06611, 0, 52.236 )
[node name="tree7" parent="TreeArray" instance=ExtResource( 2 )]
transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 9.37888, 0, -3.63926 )
[node name="SpotLight" type="SpotLight" parent="."]
transform = Transform( -0.996349, 0.0183138, 0.083387, 0.0292467, 0.990839, 0.131843, -0.0802086, 0.1338, -0.987757, 1.91363, 0.425769, -0.155553 )
light_energy = 7.0
light_specular = 3.0
spot_range = 14.0
spot_angle = 25.0
spot_angle_attenuation = 0.784584
[node name="SpotLight2" type="SpotLight" parent="."]
transform = Transform( -0.982907, -0.0126385, 0.183666, 0.0221129, 0.982313, 0.185935, -0.182768, 0.186818, -0.965244, 0.299636, 0.425769, 0.349761 )
light_energy = 7.0
light_specular = 3.0
spot_range = 14.0
spot_angle = 25.0
spot_angle_attenuation = 0.784584
[node name="Rain" type="Particles" parent="."]
transform = Transform( 0.999002, 0, -0.0446656, -0.0233516, 0.852449, -0.522289, 0.0380751, 0.522811, 0.851598, 0, 5.30411, 0.514551 )
amount = 1000
preprocess = 5.0
visibility_aabb = AABB( -3.24902, -18.0102, -25.7333, 8, 17.7655, 52.158 )
process_material = SubResource( 3 )
draw_pass_1 = SubResource( 4 )

View file

@ -0,0 +1,47 @@
[gd_scene load_steps=9 format=2]
[ext_resource path="res://resources/graphics/backgrounds/chapter_selector/BigCityView (1).webp" type="Texture" id=1]
[ext_resource path="res://scripts/backround_scenes_scripts/ChapterSelector_Gallery.gd" type="Script" id=2]
[ext_resource path="res://resources/graphics/backgrounds/chapter_selector/7.1.webp" type="Texture" id=3]
[ext_resource path="res://resources/graphics/backgrounds/chapter_selector/7.2.webp" type="Texture" id=4]
[ext_resource path="res://resources/effects/MovingBackground.gdshader" type="Shader" id=7]
[ext_resource path="res://resources/graphics/backgrounds/chapter_selector/2.webp" type="Texture" id=9]
[sub_resource type="ShaderMaterial" id=1]
shader = ExtResource( 7 )
shader_param/direction = Vector2( 1.046, 0.7 )
shader_param/speed_scale = 0.02
[sub_resource type="ShaderMaterial" id=2]
shader = ExtResource( 7 )
shader_param/direction = Vector2( 1.046, 0.552 )
shader_param/speed_scale = 0.044
[node name="ChapterSelector" type="Node2D"]
script = ExtResource( 2 )
[node name="background" type="Sprite" parent="."]
scale = Vector2( 0.25, 0.25 )
texture = ExtResource( 1 )
centered = false
[node name="Node2D" type="Node2D" parent="."]
[node name="Cloud3" type="Sprite" parent="Node2D"]
modulate = Color( 1, 1, 1, 0.862745 )
position = Vector2( -51, -158 )
texture = ExtResource( 3 )
centered = false
[node name="Cloud2" type="Sprite" parent="Node2D"]
self_modulate = Color( 1, 1, 1, 0.941176 )
material = SubResource( 1 )
position = Vector2( -505, -28 )
texture = ExtResource( 4 )
centered = false
[node name="Cloud1" type="Sprite" parent="Node2D"]
modulate = Color( 1, 1, 1, 0.780392 )
material = SubResource( 2 )
texture = ExtResource( 9 )
centered = false

View file

@ -0,0 +1,12 @@
[gd_scene load_steps=2 format=2]
[ext_resource path="res://scripts/backround_scenes_scripts/Chernii_ekran.gd" type="Script" id=1]
[node name="Chernii_ekran" type="Node2D"]
script = ExtResource( 1 )
[node name="ForScale" type="Node2D" parent="."]
[node name="Polygon2D" type="Polygon2D" parent="ForScale"]
color = Color( 0, 0, 0, 1 )
polygon = PoolVector2Array( 0, 0, 3840, 0, 3840, 2160, 0, 2160 )

View file

@ -0,0 +1,72 @@
[gd_scene load_steps=12 format=2]
[ext_resource path="res://resources/graphics/backgrounds/comics/comic6.webp" type="Texture" id=1]
[ext_resource path="res://resources/graphics/backgrounds/comics/comic2.webp" type="Texture" id=2]
[ext_resource path="res://resources/graphics/backgrounds/comics/comic7.webp" type="Texture" id=3]
[ext_resource path="res://resources/graphics/backgrounds/comics/comic0.webp" type="Texture" id=4]
[ext_resource path="res://resources/graphics/backgrounds/comics/comic1.webp" type="Texture" id=5]
[ext_resource path="res://resources/graphics/backgrounds/comics/comic4.webp" type="Texture" id=6]
[ext_resource path="res://resources/graphics/backgrounds/comics/comic5.webp" type="Texture" id=7]
[ext_resource path="res://resources/graphics/backgrounds/comics/comic8.webp" type="Texture" id=8]
[ext_resource path="res://resources/graphics/backgrounds/comics/1 11 (комикс) чёрная подложка.webp" type="Texture" id=9]
[ext_resource path="res://resources/graphics/backgrounds/comics/comic3.webp" type="Texture" id=10]
[ext_resource path="res://scripts/backround_scenes_scripts/Comics.gd" type="Script" id=11]
[node name="Comics" type="Node2D"]
script = ExtResource( 11 )
[node name="Back" type="Sprite" parent="."]
texture = ExtResource( 9 )
centered = false
[node name="Sprite0" type="Sprite" parent="."]
texture = ExtResource( 4 )
centered = false
[node name="Sprite1" type="Sprite" parent="."]
visible = false
texture = ExtResource( 5 )
centered = false
[node name="Sprite2" type="Sprite" parent="."]
visible = false
texture = ExtResource( 2 )
centered = false
[node name="Sprite3" type="Sprite" parent="."]
visible = false
texture = ExtResource( 10 )
normal_map = ExtResource( 10 )
centered = false
[node name="Sprite4" type="Sprite" parent="."]
visible = false
texture = ExtResource( 6 )
centered = false
[node name="Sprite5" type="Sprite" parent="."]
visible = false
texture = ExtResource( 7 )
centered = false
[node name="Sprite6" type="Sprite" parent="."]
visible = false
texture = ExtResource( 1 )
centered = false
[node name="Sprite7" type="Sprite" parent="."]
visible = false
texture = ExtResource( 3 )
centered = false
[node name="Sprite8" type="Sprite" parent="."]
visible = false
texture = ExtResource( 8 )
centered = false
[node name="Tween" type="Tween" parent="."]
[node name="Timer" type="Timer" parent="."]
one_shot = true
[connection signal="timeout" from="Timer" to="." method="_on_Timer_timeout"]

View file

@ -0,0 +1,36 @@
[gd_scene load_steps=2 format=2]
[ext_resource path="res://dlc/oneeleven18+/scripts/DLC18.gd" type="Script" id=1]
[node name="DanaDLC" type="Node2D"]
script = ExtResource( 1 )
[node name="Sprite0" type="Sprite" parent="."]
visible = false
centered = false
[node name="Sprite1" type="Sprite" parent="."]
visible = false
centered = false
[node name="Sprite2" type="Sprite" parent="."]
visible = false
centered = false
[node name="Sprite3" type="Sprite" parent="."]
visible = false
centered = false
[node name="Sprite4" type="Sprite" parent="."]
visible = false
centered = false
[node name="Sprite5" type="Sprite" parent="."]
visible = false
centered = false
[node name="Sprite6" type="Sprite" parent="."]
visible = false
centered = false
[node name="Tween" type="Tween" parent="."]

View file

@ -0,0 +1,18 @@
[gd_scene load_steps=4 format=2]
[ext_resource path="res://resources/graphics/backgrounds/dana_sex/DANA 1.webp" type="Texture" id=1]
[ext_resource path="res://resources/graphics/backgrounds/dana_sex/Dana 2.webp" type="Texture" id=2]
[ext_resource path="res://scripts/backround_scenes_scripts/Dana_sex.gd" type="Script" id=3]
[node name="Dana_sex" type="Node2D"]
script = ExtResource( 3 )
[node name="Sprite2" type="Sprite" parent="."]
texture = ExtResource( 2 )
centered = false
[node name="Sprite1" type="Sprite" parent="."]
texture = ExtResource( 1 )
centered = false
[node name="Tween" type="Tween" parent="."]

View file

@ -0,0 +1,10 @@
[gd_scene load_steps=2 format=2]
[ext_resource path="res://scripts/backround_scenes_scripts/Death_Boy_Electricity.gd" type="Script" id=6]
[node name="Death_Boy_Electricity" type="Node2D"]
scale = Vector2( 0.69, 0.69 )
script = ExtResource( 6 )
[node name="Boy" type="Sprite" parent="."]
centered = false

View file

@ -0,0 +1,44 @@
[gd_scene load_steps=6 format=2]
[ext_resource path="res://resources/graphics/backgrounds/death_car/тачка фары.webp" type="Texture" id=1]
[ext_resource path="res://resources/graphics/backgrounds/death_car/тачка.webp" type="Texture" id=2]
[ext_resource path="res://resources/graphics/backgrounds/drop1.webp" type="Texture" id=3]
[ext_resource path="res://scripts/backround_scenes_scripts/Death_Car.gd" type="Script" id=4]
[sub_resource type="ParticlesMaterial" id=1]
lifetime_randomness = 0.1
trail_divisor = 2
emission_shape = 2
emission_box_extents = Vector3( 5000, 100, 1 )
flag_align_y = true
flag_disable_z = true
gravity = Vector3( 0, 98, 0 )
orbit_velocity = 0.0
orbit_velocity_random = 0.0
radial_accel = 33.26
scale = 1.5
[node name="Death_Car" type="Node2D"]
script = ExtResource( 4 )
[node name="car" type="Sprite" parent="."]
texture = ExtResource( 2 )
centered = false
[node name="lights" type="Sprite" parent="."]
texture = ExtResource( 1 )
offset = Vector2( 1920, 1080 )
[node name="rain" type="Node2D" parent="."]
z_index = 1
[node name="Particles2D" type="Particles2D" parent="rain"]
modulate = Color( 0.768627, 0.768627, 0.768627, 1 )
position = Vector2( 5000, -200 )
amount = 3000
lifetime = 7.0
preprocess = 10.0
speed_scale = 6.0
visibility_rect = Rect2( -3000, 300, 200, 200 )
process_material = SubResource( 1 )
texture = ExtResource( 3 )

View file

@ -0,0 +1,12 @@
[gd_scene load_steps=3 format=2]
[ext_resource path="res://resources/graphics/backgrounds/death_electro/GG_ELEKTROvers2.webp" type="Texture" id=1]
[ext_resource path="res://scripts/backround_scenes_scripts/Death_Electro.gd" type="Script" id=2]
[node name="Death_Electro" type="Node2D"]
scale = Vector2( 0.69, 0.69 )
script = ExtResource( 2 )
[node name="Sprite" type="Sprite" parent="."]
texture = ExtResource( 1 )
centered = false

View file

@ -0,0 +1,9 @@
[gd_scene load_steps=2 format=2]
[ext_resource path="res://scripts/backround_scenes_scripts/Death_Poison.gd" type="Script" id=2]
[node name="Death_Poison" type="Node2D"]
script = ExtResource( 2 )
[node name="Char" type="Sprite" parent="."]
centered = false

View file

@ -0,0 +1,11 @@
[gd_scene load_steps=3 format=2]
[ext_resource path="res://resources/graphics/backgrounds/death_stairs/Упал с лестницы1.webp" type="Texture" id=1]
[ext_resource path="res://scripts/backround_scenes_scripts/Death_Stairs.gd" type="Script" id=2]
[node name="Death_Stairs" type="Node2D"]
script = ExtResource( 2 )
[node name="Sprite" type="Sprite" parent="."]
texture = ExtResource( 1 )
centered = false

View file

@ -0,0 +1,156 @@
extends Node2D
const zoomStart = 1.0
const zoomEnd = 0.97
const bloodStart = 0.2
const bloodEnd = 0.9
const timeParam = 1.7
const easterEggDelay = 13.0
var easterPresented
var countdownTime
var beginCountdown
var isDead
var bloodIncrement
var zoomIncrement
var currentZoom
var currentEnergy
var isIncreasing
var screenWidth;
var screenHeight;
var xOffset;
var yOffset
func _ready():
if not get_tree().root.has_node("Root"):
return ;
GallerySingleton.AddImage("Death_fall");
if (float(Dialogic.get_variable("Pink_Karma")) <= - 3.5):
easterPresented = true
var dialogicNode = get_parent().get_parent().get_node("Game").get_child(0).get_child(0)
dialogicNode.connect("dialogic_signal", self, "_frame_switch_listener")
beginCountdown = false
countdownTime = 0.0
isDead = false
bloodIncrement = (bloodEnd - bloodStart) / timeParam;
zoomIncrement = (zoomEnd - zoomStart) / timeParam;
currentZoom = zoomStart
isIncreasing = true
currentEnergy = 0
screenWidth = SettingsSingleton.GetCurrectScreenResolutionVector2().x
screenHeight = SettingsSingleton.GetCurrectScreenResolutionVector2().y
func _process(delta):
if (easterPresented):
if (countdownTime < easterEggDelay and beginCountdown):
countdownTime += delta
elif (countdownTime >= easterEggDelay and beginCountdown):
beginCountdown = false
easterEgg()
if (isDead):
if (isIncreasing):
if (currentEnergy <= bloodEnd):
currentEnergy += bloodIncrement * delta
currentZoom += zoomIncrement * delta
$death / Light2D.self_modulate.a = currentEnergy
xOffset = (1 - currentZoom) * ($death / Polygon2D.get_global_transform_with_canvas().origin.x) / (screenWidth);
yOffset = (1 - currentZoom) * (screenHeight - $death / Polygon2D.get_global_transform_with_canvas().origin.y) / screenHeight;
var offset = Vector2(xOffset, yOffset);
var tiling = Vector2(currentZoom, currentZoom)
$death / Polygon2D.material.set_shader_param("offset", offset)
$death / Polygon2D.material.set_shader_param("tiling", tiling);
else :
isIncreasing = false
if ( not isIncreasing):
if (currentEnergy >= bloodStart):
currentEnergy -= bloodIncrement * delta
currentZoom -= zoomIncrement * delta
$death / Light2D.self_modulate.a = currentEnergy
xOffset = (1 - currentZoom) * ($death / Polygon2D.get_global_transform_with_canvas().origin.x) / (screenWidth);
yOffset = (1 - currentZoom) * (screenHeight - $death / Polygon2D.get_global_transform_with_canvas().origin.y) / screenHeight;
var offset = Vector2(xOffset, yOffset);
$death / Polygon2D.material.set_shader_param("offset", offset)
$death / Polygon2D.material.set_shader_param("tiling", Vector2(currentZoom, currentZoom));
else :
isIncreasing = true
else :pass
func _frame_switch_listener(string):
match string:
"frame2":
$Sprite2.visible = false
$frames / Sprite2_1.visible = true
"frame3":
$frames / Sprite2_1.visible = false
$frames / Sprite2_2.visible = true
"frame4":
$frames / Sprite2_2.visible = false
$Sprite3.visible = true
"death":
$death.visible = true;
var tween = $death.get_child(0).get_child(0)
var light = $death.get_child(0)
tween.interpolate_method(self, "bloodInterpolate", 0.0, bloodStart, 1.0, Tween.TRANS_LINEAR, 0);
tween.start()
yield ($death.get_child(0).get_child(0), "tween_all_completed")
currentEnergy = bloodStart
$death.get_child(0).self_modulate.a = bloodStart
isDead = true;
if easterPresented:
beginCountdown = true
func bloodInterpolate(value):
$death / Light2D.self_modulate.a = value;
func easterEgg():
if Dialogic.get_variable("Killer") == "Pink":
var tween = $Tween
$Sprite4.self_modulate.a = 0
tween.interpolate_method(self, "interpolateEye", 0, 0.8, 4.5, Tween.TRANS_LINEAR, 0)
$Sprite4.visible = true
tween.start()
func interpolateEye(value):
$Sprite4.self_modulate.a = value
func InitForGallery()->Array:
scale = Vector2(0.5, 0.5)
$Sprite2.visible = true;
$frames.visible = false;
$Sprite3.visible = false;
$Sprite4.visible = false;
return ["ui_gallery_fall_1", "ui_gallery_fall_2", "ui_gallery_fall_3", "ui_gallery_fall_4"];
func SetSettings(setting):
if setting == tr("ui_gallery_fall_1"):
$Sprite2.visible = true;
$frames.visible = false;
$Sprite3.visible = false;
$Sprite4.visible = false;
elif setting == tr("ui_gallery_fall_2"):
$Sprite2.visible = false;
$frames.visible = true;
$frames / Sprite2_1.visible = true;
$frames / Sprite2_2.visible = false;
$Sprite3.visible = false;
$Sprite4.visible = false;
elif setting == tr("ui_gallery_fall_3"):
$Sprite2.visible = false;
$frames.visible = true;
$frames / Sprite2_1.visible = false;
$frames / Sprite2_2.visible = true;
$Sprite3.visible = false;
$Sprite4.visible = false;
elif setting == tr("ui_gallery_fall_4"):
$Sprite2.visible = false;
$frames.visible = false;
$Sprite3.visible = true;
$Sprite4.visible = false;

View file

@ -0,0 +1,102 @@
[gd_scene load_steps=14 format=2]
[ext_resource path="res://resources/graphics/backgrounds/death_fall/Иллюстрация_без_названия(8).webp" type="Texture" id=1]
[ext_resource path="res://resources/graphics/backgrounds/death_fall/EYEDEAD.webp" type="Texture" id=2]
[ext_resource path="res://resources/graphics/backgrounds/death_fall/Иллюстрация_без_названия(10).webp" type="Texture" id=3]
[ext_resource path="res://resources/graphics/backgrounds/death_fall/Иллюстрация_без_названия(9).webp" type="Texture" id=4]
[ext_resource path="res://resources/graphics/backgrounds/death_fall/Glaz Krov.webp" type="Texture" id=5]
[ext_resource path="res://resources/graphics/backgrounds/scene12/zoom.webp" type="Texture" id=6]
[ext_resource path="res://resources/graphics/endtext/2_you_died.webp" type="Texture" id=7]
[ext_resource path="res://resources/graphics/endtext/2_vy_umerli.webp" type="Texture" id=8]
[ext_resource path="res://resources/graphics/backgrounds/scene12/Blood_02.webp" type="Texture" id=9]
[ext_resource path="res://zoom_in_shader.tres" type="Shader" id=10]
[ext_resource path="res://scenes/BackgroundScenes/Death_fall.gd" type="Script" id=11]
[sub_resource type="CanvasItemMaterial" id=1]
[sub_resource type="ShaderMaterial" id=2]
shader = ExtResource( 10 )
shader_param/tiling = Vector2( 1, 1 )
shader_param/offset = Vector2( 0, 0 )
[node name="Death_fall" type="Node2D"]
script = ExtResource( 11 )
[node name="Sprite" type="Sprite" parent="."]
texture = ExtResource( 1 )
centered = false
[node name="Sprite2" type="Sprite" parent="."]
texture = ExtResource( 3 )
centered = false
[node name="frames" type="Node2D" parent="."]
[node name="Sprite2_1" type="Sprite" parent="frames"]
visible = false
position = Vector2( -1076, -25 )
scale = Vector2( 1.33, 1.33 )
texture = ExtResource( 3 )
centered = false
[node name="Sprite2_2" type="Sprite" parent="frames"]
visible = false
position = Vector2( -3406, -33 )
scale = Vector2( 2.3, 2.3 )
texture = ExtResource( 3 )
centered = false
[node name="Sprite3" type="Sprite" parent="."]
visible = false
texture = ExtResource( 2 )
centered = false
[node name="Sprite4" type="Sprite" parent="."]
visible = false
texture = ExtResource( 5 )
centered = false
[node name="Sprite5" type="Sprite" parent="."]
texture = ExtResource( 4 )
centered = false
[node name="Tween" type="Tween" parent="."]
[node name="death" type="Node2D" parent="."]
visible = false
[node name="Light2D" type="Sprite" parent="death"]
self_modulate = Color( 1, 0, 0, 1 )
material = SubResource( 1 )
z_as_relative = false
texture = ExtResource( 9 )
centered = false
[node name="Tween" type="Tween" parent="death/Light2D"]
[node name="Polygon2D" type="Sprite" parent="death"]
material = SubResource( 2 )
position = Vector2( 1920, 1080 )
z_index = 5
texture = ExtResource( 6 )
[node name="End" type="Node2D" parent="."]
z_index = 3
z_as_relative = false
[node name="Tween" type="Tween" parent="End"]
[node name="ru" type="Sprite" parent="End"]
visible = false
light_mask = 4
position = Vector2( 835, -389 )
scale = Vector2( 0.4, 0.4 )
texture = ExtResource( 8 )
centered = false
[node name="eng" type="Sprite" parent="End"]
visible = false
position = Vector2( 835, -389 )
scale = Vector2( 0.4, 0.4 )
texture = ExtResource( 7 )
centered = false

View file

@ -0,0 +1,86 @@
[gd_scene load_steps=14 format=2]
[ext_resource path="res://resources/graphics/backgrounds/death_knife/IMG_4716.webp" type="Texture" id=1]
[ext_resource path="res://resources/graphics/backgrounds/death_knife/1111.webp" type="Texture" id=2]
[ext_resource path="res://resources/graphics/backgrounds/death_knife/IMG_4718.webp" type="Texture" id=3]
[ext_resource path="res://resources/graphics/backgrounds/death_knife/IMG_4719.webp" type="Texture" id=4]
[ext_resource path="res://resources/graphics/backgrounds/death_knife/IMG_4717.webp" type="Texture" id=5]
[ext_resource path="res://scripts/backround_scenes_scripts/Death_knife.gd" type="Script" id=6]
[ext_resource path="res://resources/graphics/backgrounds/scene12/zoom.webp" type="Texture" id=7]
[ext_resource path="res://resources/graphics/endtext/2_you_died.webp" type="Texture" id=8]
[ext_resource path="res://resources/graphics/endtext/2_vy_umerli.webp" type="Texture" id=9]
[ext_resource path="res://resources/graphics/backgrounds/scene12/Blood_02.webp" type="Texture" id=10]
[ext_resource path="res://zoom_in_shader.tres" type="Shader" id=11]
[sub_resource type="CanvasItemMaterial" id=1]
[sub_resource type="ShaderMaterial" id=2]
shader = ExtResource( 11 )
shader_param/tiling = Vector2( 1, 1 )
shader_param/offset = Vector2( 0, 0 )
[node name="Death_knife" type="Node2D"]
script = ExtResource( 6 )
[node name="Sprite3" type="Sprite" parent="."]
texture = ExtResource( 3 )
centered = false
[node name="frame1" type="Sprite" parent="."]
texture = ExtResource( 1 )
centered = false
[node name="frame2" type="Sprite" parent="."]
visible = false
texture = ExtResource( 4 )
centered = false
[node name="frame3" type="Sprite" parent="."]
visible = false
texture = ExtResource( 2 )
centered = false
[node name="Sprite2" type="Sprite" parent="."]
texture = ExtResource( 5 )
centered = false
[node name="Tween" type="Tween" parent="."]
[node name="death" type="Node2D" parent="."]
visible = false
[node name="Light2D" type="Sprite" parent="death"]
self_modulate = Color( 1, 0, 0, 1 )
material = SubResource( 1 )
z_as_relative = false
texture = ExtResource( 10 )
centered = false
[node name="Tween" type="Tween" parent="death/Light2D"]
[node name="Polygon2D" type="Sprite" parent="death"]
material = SubResource( 2 )
position = Vector2( 1920, 1080 )
z_index = 5
texture = ExtResource( 7 )
[node name="End" type="Node2D" parent="."]
z_index = 3
z_as_relative = false
[node name="Tween" type="Tween" parent="End"]
[node name="ru" type="Sprite" parent="End"]
visible = false
light_mask = 4
position = Vector2( 1439.11, -341.328 )
scale = Vector2( 0.8, 0.8 )
texture = ExtResource( 9 )
centered = false
[node name="eng" type="Sprite" parent="End"]
visible = false
position = Vector2( 1225.09, -341.328 )
scale = Vector2( 0.8, 0.8 )
texture = ExtResource( 8 )
centered = false

View file

@ -0,0 +1,15 @@
[gd_scene load_steps=3 format=2]
[ext_resource path="res://resources/graphics/backgrounds/death_shot_triptih/death_shot.webp" type="Texture" id=1]
[ext_resource path="res://scripts/backround_scenes_scripts/Death_shot_triptih.gd" type="Script" id=2]
[node name="Death_shot" type="Node2D"]
script = ExtResource( 2 )
[node name="Sprite" type="Sprite" parent="."]
texture = ExtResource( 1 )
centered = false
[node name="Timer" type="Timer" parent="."]
[node name="Tween" type="Tween" parent="."]

View file

@ -0,0 +1,75 @@
[gd_scene load_steps=12 format=2]
[ext_resource path="res://resources/graphics/backgrounds/death_shot_epilogue/убит трава.webp" type="Texture" id=1]
[ext_resource path="res://resources/graphics/backgrounds/death_shot_epilogue/убит фон.webp" type="Texture" id=2]
[ext_resource path="res://resources/graphics/backgrounds/death_shot_epilogue/убит кровь2.webp" type="Texture" id=3]
[ext_resource path="res://resources/graphics/backgrounds/death_shot_epilogue/убит кровь1.webp" type="Texture" id=4]
[ext_resource path="res://resources/graphics/backgrounds/death_shot_epilogue/убит брызги.webp" type="Texture" id=5]
[ext_resource path="res://resources/graphics/backgrounds/death_shot_epilogue/убит гг.webp" type="Texture" id=6]
[ext_resource path="res://resources/graphics/backgrounds/death_shot_epilogue/убит разводы.webp" type="Texture" id=7]
[ext_resource path="res://resources/graphics/backgrounds/drop1.webp" type="Texture" id=8]
[ext_resource path="res://resources/graphics/backgrounds/death_shot_epilogue/убит дождь.webp" type="Texture" id=9]
[ext_resource path="res://scripts/backround_scenes_scripts/Death_shot_epilogue.gd" type="Script" id=10]
[sub_resource type="ParticlesMaterial" id=1]
lifetime_randomness = 0.1
trail_divisor = 2
emission_shape = 2
emission_box_extents = Vector3( 5000, 100, 1 )
flag_align_y = true
flag_disable_z = true
gravity = Vector3( 0, 98, 0 )
orbit_velocity = 0.0
orbit_velocity_random = 0.0
radial_accel = 92.6
scale = 2.0
scale_random = 0.4
[node name="Death_shot_epilogue" type="Node2D"]
script = ExtResource( 10 )
[node name="Sprite" type="Sprite" parent="."]
texture = ExtResource( 2 )
centered = false
[node name="blood1" type="Sprite" parent="."]
texture = ExtResource( 3 )
centered = false
[node name="blood2" type="Sprite" parent="."]
texture = ExtResource( 4 )
centered = false
[node name="Sprite2" type="Sprite" parent="."]
texture = ExtResource( 6 )
centered = false
[node name="Sprite7" type="Sprite" parent="."]
texture = ExtResource( 5 )
centered = false
[node name="Sprite6" type="Sprite" parent="."]
texture = ExtResource( 1 )
centered = false
[node name="Sprite5" type="Sprite" parent="."]
texture = ExtResource( 7 )
centered = false
[node name="RainSprite" type="Sprite" parent="."]
texture = ExtResource( 9 )
centered = false
[node name="rain" type="Node2D" parent="."]
visible = false
z_index = 1
[node name="Particles2D" type="Particles2D" parent="rain"]
position = Vector2( 5000, -200 )
amount = 1600
lifetime = 7.0
preprocess = 10.0
speed_scale = 6.0
visibility_rect = Rect2( -3000, 300, 200, 200 )
process_material = SubResource( 1 )
texture = ExtResource( 8 )

View file

@ -0,0 +1,18 @@
[gd_scene load_steps=4 format=2]
[ext_resource path="res://resources/graphics/backgrounds/death_shot/AmandaShoot4k.webp" type="Texture" id=1]
[ext_resource path="res://resources/graphics/backgrounds/death_shot/EmiliaShoot4k.webp" type="Texture" id=2]
[ext_resource path="res://scripts/backround_scenes_scripts/Death_shot_girl.gd" type="Script" id=3]
[node name="Death_shot_girl" type="Node2D"]
script = ExtResource( 3 )
[node name="Pink" type="Sprite" parent="."]
visible = false
texture = ExtResource( 1 )
centered = false
[node name="Blue" type="Sprite" parent="."]
visible = false
texture = ExtResource( 2 )
centered = false

View file

@ -0,0 +1,46 @@
[gd_scene load_steps=8 format=2]
[ext_resource path="res://resources/graphics/backgrounds/death_stairs_girl/blue_back.webp" type="Texture" id=1]
[ext_resource path="res://resources/graphics/backgrounds/death_stairs_girl/pink_back.webp" type="Texture" id=4]
[ext_resource path="res://resources/graphics/backgrounds/death_stairs_girl/center_back.webp" type="Texture" id=5]
[ext_resource path="res://scripts/backround_scenes_scripts/Death_stairs_girl.gd" type="Script" id=6]
[ext_resource path="res://resources/graphics/backgrounds/death_stairs_girl/purple.webp" type="Texture" id=7]
[ext_resource path="res://resources/graphics/backgrounds/death_stairs_girl/black.webp" type="Texture" id=8]
[ext_resource path="res://resources/graphics/backgrounds/death_stairs_girl/green.webp" type="Texture" id=9]
[node name="Death_stairs_girl" type="Node2D"]
script = ExtResource( 6 )
[node name="Green" type="Sprite" parent="."]
visible = false
texture = ExtResource( 9 )
centered = false
[node name="Black" type="Sprite" parent="."]
visible = false
texture = ExtResource( 8 )
centered = false
[node name="Purple" type="Sprite" parent="."]
visible = false
texture = ExtResource( 7 )
centered = false
[node name="Triptih" type="Node2D" parent="."]
[node name="center" type="Sprite" parent="Triptih"]
visible = false
texture = ExtResource( 5 )
centered = false
[node name="right" type="Sprite" parent="Triptih"]
visible = false
texture = ExtResource( 1 )
centered = false
[node name="left" type="Sprite" parent="Triptih"]
visible = false
texture = ExtResource( 4 )
centered = false
[node name="Tween" type="Tween" parent="."]

View file

@ -0,0 +1,155 @@
[gd_scene load_steps=18 format=2]
[ext_resource path="res://resources/graphics/backgrounds/drop1.webp" type="Texture" id=1]
[ext_resource path="res://resources/effects/Kamin.gdshader" type="Shader" id=2]
[ext_resource path="res://resources/graphics/backgrounds/domikvnutri/OpenedTrapdoor.webp" type="Texture" id=3]
[ext_resource path="res://resources/graphics/backgrounds/domikvnutri/ClosedTrapdoor.webp" type="Texture" id=4]
[ext_resource path="res://resources/graphics/backgrounds/domikvnutri/AbandonedWarehouseMain4K-3.webp" type="Texture" id=5]
[ext_resource path="res://resources/graphics/backgrounds/podval/window_podval.webp" type="Texture" id=6]
[ext_resource path="res://resources/graphics/backgrounds/domikvnutri/particles/3.webp" type="Texture" id=7]
[ext_resource path="res://resources/graphics/backgrounds/domikvnutri/particles/2.webp" type="Texture" id=8]
[ext_resource path="res://scripts/backround_scenes_scripts/DomikVnutri.gd" type="Script" id=27]
[sub_resource type="ParticlesMaterial" id=14]
lifetime_randomness = 0.1
trail_divisor = 2
emission_shape = 2
emission_box_extents = Vector3( 3000, 50, 1 )
flag_align_y = true
flag_disable_z = true
gravity = Vector3( 0, 98, 0 )
orbit_velocity = 0.0
orbit_velocity_random = 0.0
radial_accel = 49.05
scale = 0.6
[sub_resource type="Gradient" id=10]
[sub_resource type="GradientTexture" id=16]
gradient = SubResource( 10 )
[sub_resource type="OpenSimplexNoise" id=11]
seed = 4
octaves = 8
lacunarity = 1.74
[sub_resource type="NoiseTexture" id=17]
width = 3000
height = 2000
noise = SubResource( 11 )
[sub_resource type="ShaderMaterial" id=12]
shader = ExtResource( 2 )
shader_param/brighter_color = Color( 0.945098, 0.945098, 0.945098, 1 )
shader_param/middle_color = Color( 0.654902, 0.654902, 0.654902, 1 )
shader_param/darker_color = Color( 0.223529, 0.223529, 0.223529, 1 )
shader_param/spread = 0.78
shader_param/transparency = 0.4
shader_param/speed = 0.25
shader_param/noise_tex = SubResource( 17 )
shader_param/gradient_tex = SubResource( 16 )
[sub_resource type="ImageTexture" id=13]
flags = 0
flags = 0
size = Vector2( 3840, 2160 )
[sub_resource type="ParticlesMaterial" id=15]
lifetime_randomness = 0.91
emission_shape = 2
emission_box_extents = Vector3( 2500, 100, 1 )
flag_disable_z = true
direction = Vector3( -1, 0, 0 )
spread = 72.43
gravity = Vector3( 0, -900, 0 )
initial_velocity = 183.83
initial_velocity_random = 1.0
angular_velocity = 21.18
angular_velocity_random = 1.0
orbit_velocity = -0.05
orbit_velocity_random = 1.0
angle = 42.4
angle_random = 1.0
[node name="DomikVnutri" type="Node2D"]
script = ExtResource( 27 )
[node name="ForScale" type="Node2D" parent="."]
[node name="Polygon2D" type="Sprite" parent="ForScale"]
modulate = Color( 0.0901961, 0.0901961, 0.0901961, 1 )
position = Vector2( 579, -117 )
scale = Vector2( 4.14751, 1.04014 )
texture = ExtResource( 6 )
centered = false
[node name="Rain" type="Particles2D" parent="ForScale"]
position = Vector2( 3157, -121 )
amount = 2000
lifetime = 8.0
preprocess = 10.0
speed_scale = 5.0
visibility_rect = Rect2( -3000, 300, 200, 200 )
process_material = SubResource( 14 )
texture = ExtResource( 1 )
[node name="Sprite" type="Sprite" parent="."]
texture = ExtResource( 5 )
centered = false
[node name="ClosedTrapdoor" type="Sprite" parent="."]
visible = false
modulate = Color( 1, 1, 1, 0 )
position = Vector2( 0, 398 )
scale = Vector2( 0.5, 0.5 )
texture = ExtResource( 4 )
centered = false
[node name="OpenedTrapdoor" type="Sprite" parent="."]
visible = false
modulate = Color( 1, 1, 1, 0 )
position = Vector2( 0, 428.5 )
scale = Vector2( 0.5, 0.5 )
texture = ExtResource( 3 )
centered = false
[node name="DeathTimer" type="Timer" parent="."]
wait_time = 90.0
one_shot = true
[node name="TrapdoorTween" type="Tween" parent="."]
[node name="Flame" type="Node2D" parent="."]
visible = false
z_index = 4096
[node name="flame" type="Sprite" parent="Flame"]
material = SubResource( 12 )
position = Vector2( -64, 710 )
scale = Vector2( 1.03, 1.5 )
texture = SubResource( 13 )
centered = false
[node name="Particles2D" type="Particles2D" parent="Flame/flame"]
position = Vector2( 1933.98, 693.333 )
scale = Vector2( 0.970874, 0.666667 )
amount = 40
lifetime = 4.0
speed_scale = 1.5
randomness = 1.0
visibility_rect = Rect2( -200, -200, 400, 400 )
process_material = SubResource( 15 )
texture = ExtResource( 7 )
[node name="Particles2D2" type="Particles2D" parent="Flame/flame"]
position = Vector2( 1933.98, 693.333 )
scale = Vector2( 0.970874, 0.666667 )
amount = 40
lifetime = 4.0
speed_scale = 1.5
randomness = 1.0
visibility_rect = Rect2( -200, -200, 400, 400 )
process_material = SubResource( 15 )
texture = ExtResource( 8 )
[connection signal="timeout" from="DeathTimer" to="." method="_on_DeathTimer_timeout"]

View file

@ -0,0 +1,88 @@
[gd_scene load_steps=2 format=2]
[ext_resource path="res://dlc/oneeleven18+/scripts/DLC18.gd" type="Script" id=1]
[node name="EmiliyaDLC" type="Node2D"]
script = ExtResource( 1 )
[node name="Sprite0" type="Sprite" parent="."]
visible = false
centered = false
[node name="Sprite1" type="Sprite" parent="."]
visible = false
centered = false
[node name="Sprite2" type="Sprite" parent="."]
visible = false
centered = false
[node name="Sprite3" type="Sprite" parent="."]
visible = false
centered = false
[node name="Sprite4" type="Sprite" parent="."]
visible = false
centered = false
[node name="Sprite5" type="Sprite" parent="."]
visible = false
centered = false
[node name="Sprite6" type="Sprite" parent="."]
visible = false
centered = false
[node name="Sprite7" type="Sprite" parent="."]
visible = false
centered = false
[node name="Sprite8" type="Sprite" parent="."]
visible = false
centered = false
[node name="Sprite9" type="Sprite" parent="."]
visible = false
centered = false
[node name="Sprite10" type="Sprite" parent="."]
visible = false
centered = false
[node name="Sprite11" type="Sprite" parent="."]
visible = false
centered = false
[node name="Sprite12" type="Sprite" parent="."]
visible = false
centered = false
[node name="Sprite13" type="Sprite" parent="."]
visible = false
centered = false
[node name="Sprite14" type="Sprite" parent="."]
visible = false
centered = false
[node name="Sprite15" type="Sprite" parent="."]
visible = false
centered = false
[node name="Sprite16" type="Sprite" parent="."]
visible = false
centered = false
[node name="Sprite17" type="Sprite" parent="."]
visible = false
centered = false
[node name="Sprite18" type="Sprite" parent="."]
visible = false
centered = false
[node name="Sprite19" type="Sprite" parent="."]
visible = false
centered = false
[node name="Tween" type="Tween" parent="."]

View file

@ -0,0 +1,17 @@
[gd_scene load_steps=3 format=2]
[ext_resource path="res://scripts/backround_scenes_scripts/Emiliya_Go_Away.gd" type="Script" id=1]
[sub_resource type="VideoStreamGDNative" id=1]
[node name="Emiliya_Go_Away" type="Node2D"]
scale = Vector2( 2, 2 )
script = ExtResource( 1 )
[node name="Video" type="Node2D" parent="."]
[node name="VideoPlayer" type="VideoPlayer" parent="Video"]
margin_right = 1920.0
margin_bottom = 1080.0
stream = SubResource( 1 )
buffering_msec = 1000

View file

@ -0,0 +1,48 @@
[gd_scene load_steps=8 format=2]
[ext_resource path="res://resources/graphics/backgrounds/emiliya_sex/1 11 (4) 1.webp" type="Texture" id=1]
[ext_resource path="res://resources/graphics/backgrounds/emiliya_sex/1 11 (4) 2.webp" type="Texture" id=2]
[ext_resource path="res://resources/graphics/backgrounds/emiliya_sex/1 11 (4) 3.webp" type="Texture" id=3]
[ext_resource path="res://scripts/backround_scenes_scripts/Emiliya_sex.gd" type="Script" id=4]
[ext_resource path="res://resources/graphics/backgrounds/emiliya_sex/underwear/ru.webp" type="Texture" id=5]
[ext_resource path="res://resources/graphics/backgrounds/emiliya_sex/underwear/handOver.webp" type="Texture" id=6]
[ext_resource path="res://resources/graphics/backgrounds/emiliya_sex/underwear/background.webp" type="Texture" id=7]
[node name="Emiliya_sex" type="Node2D"]
script = ExtResource( 4 )
[node name="Sprite3" type="Sprite" parent="."]
texture = ExtResource( 3 )
centered = false
[node name="Sprite2" type="Sprite" parent="."]
texture = ExtResource( 2 )
centered = false
[node name="Sprite1" type="Sprite" parent="."]
texture = ExtResource( 1 )
centered = false
[node name="Underwear" type="Node2D" parent="."]
position = Vector2( 1790, 786 )
[node name="Straps" type="Sprite" parent="Underwear"]
position = Vector2( 159, 0 )
scale = Vector2( 0.543, 0.543 )
texture = ExtResource( 7 )
centered = false
[node name="Text" type="Sprite" parent="Underwear"]
position = Vector2( 159, -1 )
scale = Vector2( 0.543, 0.543 )
texture = ExtResource( 5 )
centered = false
[node name="HandOver" type="Sprite" parent="Underwear"]
visible = false
position = Vector2( 158, 48 )
scale = Vector2( 0.543, 0.543 )
texture = ExtResource( 6 )
centered = false
[node name="Tween" type="Tween" parent="."]

View file

@ -0,0 +1,47 @@
[gd_scene load_steps=6 format=2]
[ext_resource path="res://scripts/backround_scenes_scripts/Final_Amanda.gd" type="Script" id=1]
[ext_resource path="res://resources/graphics/backgrounds/final_amanda/Amanda white.webp" type="Texture" id=2]
[ext_resource path="res://resources/graphics/backgrounds/final_amanda/Amanda red.webp" type="Texture" id=3]
[ext_resource path="res://resources/graphics/backgrounds/drop1.webp" type="Texture" id=4]
[sub_resource type="ParticlesMaterial" id=1]
lifetime_randomness = 0.1
trail_divisor = 2
emission_shape = 2
emission_box_extents = Vector3( 5000, 100, 1 )
flag_align_y = true
flag_disable_z = true
gravity = Vector3( 0, 98, 0 )
orbit_velocity = 0.0
orbit_velocity_random = 0.0
radial_accel = 33.26
scale = 1.5
[node name="Final_Amanda" type="Node2D"]
script = ExtResource( 1 )
[node name="white" type="Sprite" parent="."]
visible = false
texture = ExtResource( 2 )
centered = false
[node name="red" type="Sprite" parent="."]
visible = false
texture = ExtResource( 3 )
centered = false
[node name="For_Scale" type="Node2D" parent="."]
[node name="rain" type="Node2D" parent="For_Scale"]
z_index = 1
[node name="Particles2D" type="Particles2D" parent="For_Scale/rain"]
position = Vector2( 5000, -200 )
amount = 1600
lifetime = 7.0
preprocess = 10.0
speed_scale = 6.0
visibility_rect = Rect2( -3000, 300, 200, 200 )
process_material = SubResource( 1 )
texture = ExtResource( 4 )

View file

@ -0,0 +1,47 @@
[gd_scene load_steps=6 format=2]
[ext_resource path="res://scripts/backround_scenes_scripts/Final_Emiliya.gd" type="Script" id=1]
[ext_resource path="res://resources/graphics/backgrounds/final_emiliya/Emilia red.webp" type="Texture" id=2]
[ext_resource path="res://resources/graphics/backgrounds/final_emiliya/Emilia white.webp" type="Texture" id=3]
[ext_resource path="res://resources/graphics/backgrounds/drop1.webp" type="Texture" id=4]
[sub_resource type="ParticlesMaterial" id=1]
lifetime_randomness = 0.1
trail_divisor = 2
emission_shape = 2
emission_box_extents = Vector3( 5000, 100, 1 )
flag_align_y = true
flag_disable_z = true
gravity = Vector3( 0, 98, 0 )
orbit_velocity = 0.0
orbit_velocity_random = 0.0
radial_accel = 33.26
scale = 1.5
[node name="Final_Emiliya" type="Node2D"]
script = ExtResource( 1 )
[node name="white" type="Sprite" parent="."]
visible = false
texture = ExtResource( 3 )
centered = false
[node name="red" type="Sprite" parent="."]
visible = false
texture = ExtResource( 2 )
centered = false
[node name="For_Scale" type="Node2D" parent="."]
[node name="rain" type="Node2D" parent="For_Scale"]
z_index = 1
[node name="Particles2D" type="Particles2D" parent="For_Scale/rain"]
position = Vector2( 5000, -200 )
amount = 1600
lifetime = 7.0
preprocess = 10.0
speed_scale = 6.0
visibility_rect = Rect2( -3000, 300, 200, 200 )
process_material = SubResource( 1 )
texture = ExtResource( 4 )

View file

@ -0,0 +1,59 @@
[gd_scene load_steps=7 format=2]
[ext_resource path="res://resources/graphics/backgrounds/drop1.webp" type="Texture" id=1]
[ext_resource path="res://resources/AlternativeChoices/Before_Timeline_142_h/Yellow.webp" type="Texture" id=2]
[ext_resource path="res://resources/graphics/backgrounds/garaj/JeepSprite.webp" type="Texture" id=3]
[ext_resource path="res://resources/customControls/Cat.tscn" type="PackedScene" id=6]
[ext_resource path="res://scripts/backround_scenes_scripts/Garaj.gd" type="Script" id=7]
[sub_resource type="ParticlesMaterial" id=1]
lifetime_randomness = 0.1
trail_divisor = 2
emission_shape = 2
emission_box_extents = Vector3( 5000, 100, 1 )
flag_align_y = true
flag_disable_z = true
gravity = Vector3( 0, 98, 0 )
orbit_velocity = 0.0
orbit_velocity_random = 0.0
radial_accel = 49.05
scale = 1.5
[node name="Garaj" type="Node2D"]
script = ExtResource( 7 )
[node name="Garage" type="Sprite" parent="."]
centered = false
[node name="Car" type="Sprite" parent="."]
visible = false
texture = ExtResource( 3 )
centered = false
[node name="rain" type="Node2D" parent="."]
visible = false
z_index = 1
[node name="Particles2D" type="Particles2D" parent="rain"]
position = Vector2( 5000, -400 )
amount = 4000
lifetime = 8.0
preprocess = 10.0
speed_scale = 5.0
visibility_rect = Rect2( -3000, 300, 200, 200 )
process_material = SubResource( 1 )
texture = ExtResource( 1 )
[node name="Cat" parent="." instance=ExtResource( 6 )]
[node name="Tween" type="Tween" parent="."]
[node name="removable" type="Node2D" parent="."]
[node name="Yellow" type="Sprite" parent="removable"]
visible = false
position = Vector2( 2134, 720 )
scale = Vector2( 0.76, 0.76 )
texture = ExtResource( 2 )
centered = false
flip_h = true

View file

@ -0,0 +1,100 @@
[gd_scene load_steps=13 format=2]
[ext_resource path="res://resources/graphics/backgrounds/black_green_death_1/Stsena_smerti_chernaya_i_zelenaya_BEZ_SVETA__BEZ_DOZhDYa.webp" type="Texture" id=4]
[ext_resource path="res://resources/graphics/backgrounds/black_green_death_1/Stsena_smerti_chernaya_i_zelenaya_SVET__BEZ_DOZhDYa.webp" type="Texture" id=5]
[ext_resource path="res://resources/graphics/backgrounds/black_green_death_1/Stsena_smerti_zelenaya_PNG.webp" type="Texture" id=6]
[ext_resource path="res://darkening_shader.tres" type="Shader" id=8]
[ext_resource path="res://scripts/Green__Black_Death_1.gd" type="Script" id=9]
[ext_resource path="res://resources/graphics/darkening/darkening1.webp" type="Texture" id=10]
[ext_resource path="res://resources/graphics/backgrounds/drop_for_roman.webp" type="Texture" id=11]
[ext_resource path="res://resources/graphics/endtext/2_thx_for_playing.webp" type="Texture" id=12]
[ext_resource path="res://resources/graphics/endtext/2_konets_demo.webp" type="Texture" id=13]
[sub_resource type="ShaderMaterial" id=1]
shader = ExtResource( 8 )
shader_param/alphaChannel = 1.0
[sub_resource type="ParticlesMaterial" id=2]
lifetime_randomness = 0.1
trail_divisor = 2
emission_shape = 2
emission_box_extents = Vector3( 5000, 100, 1 )
flag_align_y = true
flag_disable_z = true
gravity = Vector3( 0, 98, 0 )
orbit_velocity = 0.0
orbit_velocity_random = 0.0
radial_accel = 22.18
scale = 0.8
color = Color( 1, 1, 1, 0.392157 )
[sub_resource type="ShaderMaterial" id=3]
shader = ExtResource( 8 )
shader_param/alphaChannel = 1.0
[node name="Green_Death_1" type="Node2D"]
material = SubResource( 1 )
scale = Vector2( 1.5, 1.5 )
script = ExtResource( 9 )
[node name="TurnOff" type="Node2D" parent="."]
[node name="Sprite" type="Sprite" parent="TurnOff"]
texture = ExtResource( 4 )
centered = false
[node name="TurnOn" type="Node2D" parent="."]
visible = false
[node name="Sprite5" type="Sprite" parent="TurnOn"]
texture = ExtResource( 5 )
centered = false
[node name="Node2D" type="Node2D" parent="TurnOn"]
[node name="Sprite6" type="Sprite" parent="TurnOn/Node2D"]
position = Vector2( 1335, 673 )
scale = Vector2( 0.55, 0.55 )
texture = ExtResource( 6 )
centered = false
[node name="Rain" type="Node2D" parent="."]
[node name="rain" type="Node2D" parent="Rain"]
scale = Vector2( 0.66, 0.66 )
[node name="Particles2D" type="Particles2D" parent="Rain/rain"]
position = Vector2( 5000, -400 )
amount = 2500
lifetime = 8.0
preprocess = 10.0
speed_scale = 5.0
visibility_rect = Rect2( -3000, 300, 200, 200 )
process_material = SubResource( 2 )
texture = ExtResource( 11 )
[node name="ToRemove" type="Sprite" parent="Rain"]
visible = false
material = SubResource( 3 )
scale = Vector2( 0.67, 0.67 )
texture = ExtResource( 10 )
centered = false
[node name="End" type="Node2D" parent="."]
[node name="Tween" type="Tween" parent="End"]
[node name="ru" type="Sprite" parent="End"]
visible = false
light_mask = 4
position = Vector2( 835, -389 )
scale = Vector2( 0.4, 0.4 )
texture = ExtResource( 13 )
centered = false
[node name="eng" type="Sprite" parent="End"]
visible = false
position = Vector2( 835, -389 )
scale = Vector2( 0.4, 0.4 )
texture = ExtResource( 12 )
centered = false

View file

@ -0,0 +1,73 @@
[gd_scene load_steps=10 format=2]
[ext_resource path="res://scripts/backround_scenes_scripts/Hospital.gd" type="Script" id=1]
[ext_resource path="res://resources/graphics/backgrounds/hospital/подложка.webp" type="Texture" id=2]
[ext_resource path="res://resources/graphics/backgrounds/hospital/oblaka_hospital_correct.webp" type="Texture" id=3]
[ext_resource path="res://resources/graphics/backgrounds/hospital/ворон/voron.webp" type="Texture" id=4]
[ext_resource path="res://resources/graphics/backgrounds/hospital/жалюзи открытые/light3.webp" type="Texture" id=8]
[ext_resource path="res://resources/effects/MovingBackground.gdshader" type="Shader" id=10]
[sub_resource type="ShaderMaterial" id=1]
shader = ExtResource( 10 )
shader_param/direction = Vector2( 1, 0 )
shader_param/speed_scale = 0.003
[sub_resource type="Shader" id=2]
code = "shader_type canvas_item;
uniform float lod: hint_range(0.0, 5) = 0.0;
void fragment(){
vec4 color = texture(SCREEN_TEXTURE, SCREEN_UV, lod);
COLOR = color;
}"
[sub_resource type="ShaderMaterial" id=3]
shader = SubResource( 2 )
shader_param/lod = 0.0
[node name="Hospital" type="Node2D"]
script = ExtResource( 1 )
[node name="Back" type="Sprite" parent="."]
texture = ExtResource( 2 )
centered = false
[node name="clouds" type="Node2D" parent="."]
[node name="Clouds" type="Sprite" parent="clouds"]
material = SubResource( 1 )
position = Vector2( 208, 590 )
texture = ExtResource( 3 )
centered = false
[node name="Voron" type="Sprite" parent="."]
texture = ExtResource( 4 )
centered = false
[node name="VoronEye" type="Sprite" parent="."]
centered = false
[node name="Window" type="Sprite" parent="."]
centered = false
[node name="WindowLight" type="Sprite" parent="."]
texture = ExtResource( 8 )
centered = false
[node name="Item" type="Sprite" parent="."]
centered = false
[node name="Flower" type="Sprite" parent="."]
centered = false
[node name="Tween" type="Tween" parent="."]
[node name="TweenBlur" type="Tween" parent="."]
[node name="ForScale" type="Node2D" parent="."]
[node name="Polygon2D" type="Polygon2D" parent="ForScale"]
material = SubResource( 3 )
color = Color( 0, 0, 0, 1 )
polygon = PoolVector2Array( 0, 0, 3840, 0, 3840, 2160, 0, 2160 )

View file

@ -0,0 +1,88 @@
[gd_scene load_steps=17 format=2]
[ext_resource path="res://resources/graphics/backgrounds/scene2_1/objects/candle_fire.webp" type="Texture" id=1]
[ext_resource path="res://resources/effects/Kamin.gdshader" type="Shader" id=2]
[ext_resource path="res://resources/graphics/backgrounds/kamin/камин_дверь.webp" type="Texture" id=3]
[ext_resource path="res://resources/graphics/backgrounds/kamin/камин_картина_5.webp" type="Texture" id=4]
[ext_resource path="res://resources/graphics/backgrounds/kamin/камин_картина_1.webp" type="Texture" id=5]
[ext_resource path="res://resources/graphics/backgrounds/kamin/камин1.webp" type="Texture" id=7]
[ext_resource path="res://resources/graphics/backgrounds/kamin/камин_картина_3.webp" type="Texture" id=8]
[ext_resource path="res://resources/graphics/backgrounds/kamin/камин_картина_2.webp" type="Texture" id=9]
[ext_resource path="res://resources/graphics/backgrounds/kamin/камин_картина_4.webp" type="Texture" id=10]
[ext_resource path="res://resources/customControls/Cat.tscn" type="PackedScene" id=11]
[ext_resource path="res://scripts/backround_scenes_scripts/Kamin.gd" type="Script" id=12]
[sub_resource type="Gradient" id=3]
[sub_resource type="GradientTexture" id=6]
gradient = SubResource( 3 )
[sub_resource type="OpenSimplexNoise" id=5]
seed = 4
octaves = 8
lacunarity = 1.74
[sub_resource type="NoiseTexture" id=7]
width = 540
height = 519
noise = SubResource( 5 )
[sub_resource type="ShaderMaterial" id=1]
shader = ExtResource( 2 )
shader_param/brighter_color = Color( 0.945098, 0.945098, 0.945098, 1 )
shader_param/middle_color = Color( 0.654902, 0.654902, 0.654902, 1 )
shader_param/darker_color = Color( 0.223529, 0.223529, 0.223529, 1 )
shader_param/spread = 0.634
shader_param/transparency = 0.59
shader_param/speed = 0.9
shader_param/noise_tex = SubResource( 7 )
shader_param/gradient_tex = SubResource( 6 )
[node name="Kamin" type="Node2D"]
script = ExtResource( 12 )
[node name="Sprite" type="Sprite" parent="."]
texture = ExtResource( 7 )
centered = false
[node name="Cat" parent="." instance=ExtResource( 11 )]
[node name="for_scale" type="Node2D" parent="."]
[node name="flame" type="Sprite" parent="for_scale"]
material = SubResource( 1 )
position = Vector2( 1370, 1113 )
rotation = -0.0565571
scale = Vector2( 2.3748, 1.03564 )
texture = ExtResource( 1 )
centered = false
[node name="dver" type="Sprite" parent="for_scale"]
position = Vector2( 2590, 391 )
texture = ExtResource( 3 )
centered = false
[node name="Sprite4" type="Sprite" parent="for_scale"]
position = Vector2( 502, 544 )
texture = ExtResource( 5 )
centered = false
[node name="Sprite5" type="Sprite" parent="for_scale"]
position = Vector2( 1290, 118 )
texture = ExtResource( 9 )
centered = false
[node name="Sprite6" type="Sprite" parent="for_scale"]
position = Vector2( 2220, 543 )
texture = ExtResource( 8 )
centered = false
[node name="Sprite7" type="Sprite" parent="for_scale"]
position = Vector2( 3282, 539 )
texture = ExtResource( 10 )
centered = false
[node name="Sprite8" type="Sprite" parent="for_scale"]
position = Vector2( 3502, 542 )
texture = ExtResource( 4 )
centered = false

View file

@ -0,0 +1,16 @@
[gd_scene load_steps=4 format=2]
[ext_resource path="res://resources/graphics/backgrounds/kofta/кофта.webp" type="Texture" id=1]
[ext_resource path="res://resources/graphics/backgrounds/kofta/кофта фон.webp" type="Texture" id=2]
[ext_resource path="res://scripts/backround_scenes_scripts/Kofta.gd" type="Script" id=3]
[node name="Kofta" type="Node2D"]
script = ExtResource( 3 )
[node name="back" type="Sprite" parent="."]
texture = ExtResource( 2 )
centered = false
[node name="kofta" type="Sprite" parent="."]
texture = ExtResource( 1 )
centered = false

View file

@ -0,0 +1,32 @@
[gd_scene load_steps=2 format=2]
[ext_resource path="res://dlc/oneeleven18+/scripts/DLC18.gd" type="Script" id=1]
[node name="LindaDLC" type="Node2D"]
script = ExtResource( 1 )
[node name="Sprite0" type="Sprite" parent="."]
visible = false
centered = false
[node name="Sprite1" type="Sprite" parent="."]
visible = false
centered = false
[node name="Sprite2" type="Sprite" parent="."]
visible = false
centered = false
[node name="Sprite3" type="Sprite" parent="."]
visible = false
centered = false
[node name="Sprite4" type="Sprite" parent="."]
visible = false
centered = false
[node name="Sprite5" type="Sprite" parent="."]
visible = false
centered = false
[node name="Tween" type="Tween" parent="."]

View file

@ -0,0 +1,18 @@
[gd_scene load_steps=4 format=2]
[ext_resource path="res://resources/graphics/backgrounds/linda_sex/1 11 (5) 1.webp" type="Texture" id=1]
[ext_resource path="res://resources/graphics/backgrounds/linda_sex/1 11 (5) 2.webp" type="Texture" id=2]
[ext_resource path="res://scripts/backround_scenes_scripts/Linda_sex.gd" type="Script" id=3]
[node name="Linda_sex" type="Node2D"]
script = ExtResource( 3 )
[node name="Sprite" type="Sprite" parent="."]
texture = ExtResource( 2 )
centered = false
[node name="Sprite1" type="Sprite" parent="."]
texture = ExtResource( 1 )
centered = false
[node name="Tween" type="Tween" parent="."]

View file

@ -0,0 +1,125 @@
[gd_scene load_steps=17 format=2]
[ext_resource path="res://resources/graphics/backgrounds/scene12/light/4 - дымка.webp" type="Texture" id=1]
[ext_resource path="res://resources/graphics/backgrounds/scene12/light/1 - фон.webp" type="Texture" id=2]
[ext_resource path="res://resources/graphics/backgrounds/mayak/mayak_den_2.webp" type="Texture" id=3]
[ext_resource path="res://resources/effects/MovingBackground.gdshader" type="Shader" id=4]
[ext_resource path="res://resources/graphics/backgrounds/mayak/mayak_noch_2.webp" type="Texture" id=5]
[ext_resource path="res://scripts/backround_scenes_scripts/Mayak.gd" type="Script" id=6]
[ext_resource path="res://resources/graphics/clouds/Cloud_2.webp" type="Texture" id=7]
[ext_resource path="res://resources/graphics/clouds/Cloud_12_n.webp" type="Texture" id=8]
[ext_resource path="res://resources/graphics/backgrounds/scene12/night/1 - фон.webp" type="Texture" id=9]
[ext_resource path="res://resources/graphics/backgrounds/drop1.webp" type="Texture" id=10]
[ext_resource path="res://resources/AlternativeChoices/Timeline_5_lighthouse/Majak_1.webp" type="Texture" id=11]
[ext_resource path="res://resources/customControls/Lightning.tscn" type="PackedScene" id=12]
[sub_resource type="ShaderMaterial" id=1]
shader = ExtResource( 4 )
shader_param/direction = Vector2( 1, 0 )
shader_param/speed_scale = 0.003
[sub_resource type="ParticlesMaterial" id=3]
lifetime_randomness = 0.1
trail_divisor = 2
emission_shape = 2
emission_box_extents = Vector3( 5000, 100, 1 )
flag_align_y = true
flag_disable_z = true
gravity = Vector3( 0, 98, 0 )
orbit_velocity = 0.0
orbit_velocity_random = 0.0
radial_accel = 33.26
scale = 1.5
[sub_resource type="ShaderMaterial" id=2]
shader = ExtResource( 4 )
shader_param/direction = Vector2( 1, 0 )
shader_param/speed_scale = 0.003
[sub_resource type="ParticlesMaterial" id=4]
lifetime_randomness = 0.1
trail_divisor = 2
emission_shape = 2
emission_box_extents = Vector3( 5000, 100, 1 )
flag_align_y = true
flag_disable_z = true
gravity = Vector3( 0, 98, 0 )
orbit_velocity = 0.0
orbit_velocity_random = 0.0
radial_accel = 49.05
scale = 1.5
[node name="Mayak" type="Node2D"]
script = ExtResource( 6 )
[node name="day" type="Node2D" parent="."]
visible = false
[node name="Sprite2" type="Sprite" parent="day"]
texture = ExtResource( 2 )
centered = false
[node name="Sprite3" type="Sprite" parent="day"]
material = SubResource( 1 )
scale = Vector2( 1, 1.36 )
texture = ExtResource( 7 )
centered = false
[node name="Sprite4" type="Sprite" parent="day"]
position = Vector2( -4, 57 )
scale = Vector2( 1, 1.3 )
texture = ExtResource( 1 )
centered = false
[node name="Sprite" type="Sprite" parent="day"]
texture = ExtResource( 3 )
centered = false
[node name="Sprite5" type="Sprite" parent="day"]
z_index = 1
texture = ExtResource( 11 )
centered = false
[node name="rain" type="Node2D" parent="day"]
visible = false
z_index = 1
[node name="Particles2D" type="Particles2D" parent="day/rain"]
position = Vector2( 5000, -200 )
amount = 1600
lifetime = 7.0
preprocess = 10.0
speed_scale = 6.0
visibility_rect = Rect2( -3000, 300, 200, 200 )
process_material = SubResource( 3 )
texture = ExtResource( 10 )
[node name="night" type="Node2D" parent="."]
[node name="Sprite8_night" type="Sprite" parent="night"]
texture = ExtResource( 9 )
centered = false
[node name="Sprite9_night" type="Sprite" parent="night"]
material = SubResource( 2 )
texture = ExtResource( 8 )
centered = false
[node name="Sprite" type="Sprite" parent="night"]
texture = ExtResource( 5 )
centered = false
[node name="Lightning" parent="night" instance=ExtResource( 12 )]
[node name="rain" type="Node2D" parent="night"]
z_index = 1
[node name="Particles2D" type="Particles2D" parent="night/rain"]
position = Vector2( 5000, -400 )
amount = 4000
lifetime = 8.0
preprocess = 10.0
speed_scale = 5.0
visibility_rect = Rect2( -3000, 300, 200, 200 )
process_material = SubResource( 4 )
texture = ExtResource( 10 )

View file

@ -0,0 +1,142 @@
[gd_scene load_steps=19 format=2]
[ext_resource path="res://resources/graphics/backgrounds/mayak_back/Day/2-clouds.webp" type="Texture" id=1]
[ext_resource path="res://resources/graphics/backgrounds/mayak_back/Day/3-hill.webp" type="Texture" id=2]
[ext_resource path="res://resources/graphics/backgrounds/mayak_back/Day/1-background.webp" type="Texture" id=3]
[ext_resource path="res://resources/graphics/backgrounds/mayak_back/Day/4-lighthouse.webp" type="Texture" id=4]
[ext_resource path="res://resources/graphics/backgrounds/mayak_back/Night/5-fence-bottle-paper.webp" type="Texture" id=5]
[ext_resource path="res://scripts/backround_scenes_scripts/Mayak_Back.gd" type="Script" id=6]
[ext_resource path="res://resources/graphics/backgrounds/mayak_back/Night/2-clouds.webp" type="Texture" id=7]
[ext_resource path="res://resources/graphics/backgrounds/mayak_back/Day/5-fence_bottle_paper.webp" type="Texture" id=8]
[ext_resource path="res://resources/graphics/backgrounds/mayak_back/Night/1-background.webp" type="Texture" id=9]
[ext_resource path="res://resources/graphics/backgrounds/drop1.webp" type="Texture" id=10]
[ext_resource path="res://resources/graphics/backgrounds/mayak_back/Night/4-lighthouse.webp" type="Texture" id=11]
[ext_resource path="res://resources/graphics/backgrounds/mayak_back/Night/3-hill.webp" type="Texture" id=12]
[ext_resource path="res://resources/effects/MovingBackground.gdshader" type="Shader" id=13]
[ext_resource path="res://resources/customControls/Lightning.tscn" type="PackedScene" id=14]
[sub_resource type="ShaderMaterial" id=5]
shader = ExtResource( 13 )
shader_param/direction = Vector2( 1, 0 )
shader_param/speed_scale = 0.003
[sub_resource type="ParticlesMaterial" id=3]
lifetime_randomness = 0.1
trail_divisor = 2
emission_shape = 2
emission_box_extents = Vector3( 5000, 100, 1 )
flag_align_y = true
flag_disable_z = true
gravity = Vector3( 0, 98, 0 )
orbit_velocity = 0.0
orbit_velocity_random = 0.0
radial_accel = 33.26
scale = 1.5
[sub_resource type="ShaderMaterial" id=6]
shader = ExtResource( 13 )
shader_param/direction = Vector2( 1, 0 )
shader_param/speed_scale = 0.003
[sub_resource type="ParticlesMaterial" id=4]
lifetime_randomness = 0.1
trail_divisor = 2
emission_shape = 2
emission_box_extents = Vector3( 5000, 100, 1 )
flag_align_y = true
flag_disable_z = true
gravity = Vector3( 0, 98, 0 )
orbit_velocity = 0.0
orbit_velocity_random = 0.0
radial_accel = 49.05
scale = 1.5
[node name="Mayak_Back" type="Node2D"]
script = ExtResource( 6 )
[node name="day" type="Node2D" parent="."]
[node name="Sprite1" type="Sprite" parent="day"]
texture = ExtResource( 3 )
centered = false
[node name="Sprite2" type="Sprite" parent="day"]
material = SubResource( 5 )
texture = ExtResource( 1 )
centered = false
[node name="Sprite3" type="Sprite" parent="day"]
position = Vector2( 0, 765 )
texture = ExtResource( 2 )
centered = false
[node name="Sprite4" type="Sprite" parent="day"]
position = Vector2( -13, 1 )
texture = ExtResource( 4 )
centered = false
[node name="Sprite5" type="Sprite" parent="day"]
position = Vector2( 844, 733 )
texture = ExtResource( 8 )
centered = false
[node name="rain" type="Node2D" parent="day"]
visible = false
z_index = 1
[node name="Particles2D" type="Particles2D" parent="day/rain"]
position = Vector2( 5000, -200 )
amount = 1600
lifetime = 7.0
preprocess = 10.0
speed_scale = 6.0
visibility_rect = Rect2( -3000, 300, 200, 200 )
process_material = SubResource( 3 )
texture = ExtResource( 10 )
[node name="night" type="Node2D" parent="."]
visible = false
[node name="Sprite1" type="Sprite" parent="night"]
texture = ExtResource( 9 )
centered = false
[node name="Sprite2" type="Sprite" parent="night"]
material = SubResource( 6 )
texture = ExtResource( 7 )
centered = false
[node name="Sprite3" type="Sprite" parent="night"]
position = Vector2( -13, 758 )
z_index = 1
texture = ExtResource( 12 )
centered = false
[node name="Sprite4" type="Sprite" parent="night"]
position = Vector2( -12, 2 )
z_index = 1
texture = ExtResource( 11 )
centered = false
[node name="Sprite5" type="Sprite" parent="night"]
position = Vector2( 845, 692 )
z_index = 1
texture = ExtResource( 5 )
centered = false
[node name="Lightning" parent="night" instance=ExtResource( 14 )]
[node name="rain" type="Node2D" parent="night"]
z_index = 1
[node name="Particles2D" type="Particles2D" parent="night/rain"]
position = Vector2( 5000, -400 )
amount = 4000
lifetime = 8.0
preprocess = 10.0
speed_scale = 5.0
visibility_rect = Rect2( -3000, 300, 200, 200 )
process_material = SubResource( 4 )
texture = ExtResource( 10 )
[node name="Tween" type="Tween" parent="."]

View file

@ -0,0 +1,204 @@
[gd_scene load_steps=22 format=2]
[ext_resource path="res://resources/graphics/backgrounds/panorama/Day/combined.webp" type="Texture" id=1]
[ext_resource path="res://scripts/backround_scenes_scripts/Panorama.gd" type="Script" id=2]
[ext_resource path="res://resources/graphics/backgrounds/panorama/blue_m.webp" type="Texture" id=3]
[ext_resource path="res://resources/graphics/backgrounds/panorama/gray.webp" type="Texture" id=4]
[ext_resource path="res://resources/graphics/backgrounds/panorama/white.webp" type="Texture" id=5]
[ext_resource path="res://resources/graphics/backgrounds/panorama/green.webp" type="Texture" id=6]
[ext_resource path="res://resources/graphics/backgrounds/panorama/pink.webp" type="Texture" id=7]
[ext_resource path="res://resources/graphics/backgrounds/panorama/black.webp" type="Texture" id=8]
[ext_resource path="res://resources/graphics/backgrounds/panorama/red.webp" type="Texture" id=9]
[ext_resource path="res://resources/graphics/backgrounds/panorama/purple.webp" type="Texture" id=10]
[ext_resource path="res://flame.gdshader" type="Shader" id=11]
[ext_resource path="res://resources/graphics/backgrounds/scene2_1/objects/candle_fire.webp" type="Texture" id=12]
[ext_resource path="res://resources/graphics/backgrounds/panorama/Day/candle light.webp" type="Texture" id=13]
[ext_resource path="res://resources/graphics/backgrounds/panorama/Night/candle light.webp" type="Texture" id=14]
[ext_resource path="res://resources/AlternativeChoices/Timeline_5/Arrow.webp" type="Texture" id=15]
[ext_resource path="res://resources/graphics/backgrounds/panorama/Night/candles.webp" type="Texture" id=16]
[ext_resource path="res://resources/audio/sfx/panorama-left-kamin.ogg" type="AudioStream" id=17]
[ext_resource path="res://resources/audio/sfx/panorama-right-rain.ogg" type="AudioStream" id=18]
[ext_resource path="res://resources/graphics/backgrounds/panorama/Night/clock 01-00.webp" type="Texture" id=19]
[ext_resource path="res://resources/graphics/backgrounds/panorama/Day/candles.webp" type="Texture" id=20]
[sub_resource type="ShaderMaterial" id=1]
shader = ExtResource( 11 )
shader_param/transparent = Color( 0, 0, 0, 0 )
shader_param/inner = Color( 0.698039, 0.698039, 0.698039, 1 )
shader_param/outer = Color( 0.784314, 0.784314, 0.784314, 1 )
shader_param/inner_threshold = 0.292
shader_param/outer_threshold = 0.049
shader_param/soft_edge = 0.076
shader_param/center = Vector2( 0.5, 0.8 )
shader_param/OCTAVES = 6
[node name="Panorama" type="Node2D"]
script = ExtResource( 2 )
[node name="Background" type="Sprite" parent="."]
texture = ExtResource( 1 )
centered = false
[node name="Candles" type="Node2D" parent="."]
visible = false
z_index = 1
[node name="Lights" type="Node2D" parent="Candles"]
z_index = 1
[node name="fire" type="Sprite" parent="Candles/Lights"]
modulate = Color( 1, 1, 1, 0.784314 )
material = SubResource( 1 )
position = Vector2( 2863, 1166 )
scale = Vector2( 0.15, 0.15 )
texture = ExtResource( 12 )
centered = false
[node name="fire2" type="Sprite" parent="Candles/Lights"]
modulate = Color( 1, 1, 1, 0.784314 )
material = SubResource( 1 )
position = Vector2( 4155, 1607 )
scale = Vector2( 0.2, 0.2 )
texture = ExtResource( 12 )
centered = false
[node name="fire3" type="Sprite" parent="Candles/Lights"]
modulate = Color( 1, 1, 1, 0.784314 )
material = SubResource( 1 )
position = Vector2( 4585, 912 )
scale = Vector2( 0.15, 0.15 )
texture = ExtResource( 12 )
centered = false
[node name="Day" type="Node2D" parent="Candles"]
visible = false
[node name="candle_lights" type="Sprite" parent="Candles/Day"]
position = Vector2( 2494, 623 )
texture = ExtResource( 13 )
centered = false
[node name="candles" type="Sprite" parent="Candles/Day"]
position = Vector2( 2686, 760 )
texture = ExtResource( 20 )
centered = false
[node name="Night" type="Node2D" parent="Candles"]
visible = false
[node name="candle_lights" type="Sprite" parent="Candles/Night"]
position = Vector2( 2430, 531 )
texture = ExtResource( 14 )
centered = false
[node name="candles" type="Sprite" parent="Candles/Night"]
position = Vector2( 2631, 642 )
texture = ExtResource( 16 )
centered = false
[node name="Clock" type="Node2D" parent="."]
[node name="Clock" type="Sprite" parent="Clock"]
visible = false
position = Vector2( 5090, 275 )
texture = ExtResource( 19 )
centered = false
[node name="removable" type="Node2D" parent="."]
[node name="white" type="Sprite" parent="removable"]
visible = false
position = Vector2( 4170, 637 )
texture = ExtResource( 5 )
centered = false
[node name="black" type="Sprite" parent="removable"]
visible = false
position = Vector2( 1117, 933 )
texture = ExtResource( 8 )
centered = false
[node name="blue_m" type="Sprite" parent="removable"]
visible = false
position = Vector2( 3953, 1194 )
texture = ExtResource( 3 )
centered = false
[node name="gray" type="Sprite" parent="removable"]
visible = false
position = Vector2( 260, 862 )
texture = ExtResource( 4 )
centered = false
[node name="green" type="Sprite" parent="removable"]
visible = false
position = Vector2( 2569, 907 )
texture = ExtResource( 6 )
centered = false
[node name="pink" type="Sprite" parent="removable"]
visible = false
position = Vector2( 3334, 1470 )
texture = ExtResource( 7 )
centered = false
[node name="purple" type="Sprite" parent="removable"]
visible = false
position = Vector2( 4754, 831 )
texture = ExtResource( 10 )
centered = false
[node name="red" type="Sprite" parent="removable"]
visible = false
position = Vector2( 2252, 382 )
texture = ExtResource( 9 )
centered = false
[node name="Tween" type="Tween" parent="."]
[node name="TweenOut" type="Tween" parent="."]
[node name="Timer" type="Timer" parent="."]
[node name="MovingControls" type="Node2D" parent="."]
visible = false
z_index = 400
[node name="LeftMove" type="TextureRect" parent="MovingControls"]
margin_right = 60.0
margin_bottom = 1080.0
[node name="Sprite" type="Sprite" parent="MovingControls/LeftMove"]
position = Vector2( 0, 495 )
scale = Vector2( 0.5, 0.5 )
texture = ExtResource( 15 )
centered = false
[node name="RightMove" type="TextureRect" parent="MovingControls"]
margin_left = 1860.0
margin_right = 1920.0
margin_bottom = 1080.0
flip_h = true
[node name="Sprite" type="Sprite" parent="MovingControls/RightMove"]
position = Vector2( 0, 495 )
scale = Vector2( 0.5, 0.5 )
texture = ExtResource( 15 )
centered = false
flip_h = true
[node name="LeftFireEffect" type="AudioStreamPlayer" parent="."]
stream = ExtResource( 17 )
volume_db = -19.0
autoplay = true
[node name="RightRainEffect" type="AudioStreamPlayer" parent="."]
stream = ExtResource( 18 )
volume_db = -27.0
autoplay = true
[connection signal="tween_completed" from="TweenOut" to="." method="_on_TweenOut_tween_completed"]
[connection signal="mouse_entered" from="MovingControls/LeftMove" to="." method="_on_LeftMove_mouse_entered"]
[connection signal="mouse_exited" from="MovingControls/LeftMove" to="." method="_on_LeftMove_mouse_exited"]
[connection signal="mouse_entered" from="MovingControls/RightMove" to="." method="_on_RightMove_mouse_entered"]
[connection signal="mouse_exited" from="MovingControls/RightMove" to="." method="_on_RightMove_mouse_exited"]

View file

@ -0,0 +1,127 @@
[gd_scene load_steps=22 format=2]
[ext_resource path="res://resources/graphics/backgrounds/pistol/blue.webp" type="Texture" id=1]
[ext_resource path="res://resources/graphics/backgrounds/pistol/red.webp" type="Texture" id=2]
[ext_resource path="res://resources/graphics/backgrounds/pistol/pink_beretta.webp" type="Texture" id=3]
[ext_resource path="res://resources/graphics/backgrounds/pistol/blue_beretta_smoke.webp" type="Texture" id=4]
[ext_resource path="res://resources/graphics/backgrounds/pistol/blue_glock.webp" type="Texture" id=5]
[ext_resource path="res://resources/graphics/backgrounds/pistol/blue_beretta.webp" type="Texture" id=6]
[ext_resource path="res://resources/graphics/backgrounds/pistol/blue_glock_smoke.webp" type="Texture" id=7]
[ext_resource path="res://resources/graphics/backgrounds/pistol/pink_beretta_smoke.webp" type="Texture" id=8]
[ext_resource path="res://resources/graphics/backgrounds/pistol/pink_glock.webp" type="Texture" id=9]
[ext_resource path="res://resources/graphics/backgrounds/pistol/white.webp" type="Texture" id=10]
[ext_resource path="res://resources/graphics/backgrounds/pistol/background.webp" type="Texture" id=11]
[ext_resource path="res://resources/graphics/backgrounds/pistol/pink_glock_smoke.webp" type="Texture" id=12]
[ext_resource path="res://resources/graphics/backgrounds/pistol/brown.webp" type="Texture" id=13]
[ext_resource path="res://resources/graphics/backgrounds/pistol/pink.webp" type="Texture" id=14]
[ext_resource path="res://scripts/backround_scenes_scripts/Pistol.gd" type="Script" id=15]
[ext_resource path="res://resources/graphics/backgrounds/drop1.webp" type="Texture" id=16]
[ext_resource path="res://resources/graphics/clouds/Cloud_2.webp" type="Texture" id=17]
[ext_resource path="res://resources/graphics/backgrounds/pistol/backColor.webp" type="Texture" id=18]
[ext_resource path="res://resources/effects/MovingBackground.gdshader" type="Shader" id=19]
[sub_resource type="ShaderMaterial" id=2]
shader = ExtResource( 19 )
shader_param/direction = Vector2( 1, 0 )
shader_param/speed_scale = 0.001
[sub_resource type="ParticlesMaterial" id=1]
lifetime_randomness = 0.1
trail_divisor = 2
emission_shape = 2
emission_box_extents = Vector3( 5000, 100, 1 )
flag_align_y = true
flag_disable_z = true
gravity = Vector3( 0, 98, 0 )
orbit_velocity = 0.0
orbit_velocity_random = 0.0
radial_accel = 33.26
scale = 1.5
[node name="Pistol" type="Node2D"]
script = ExtResource( 15 )
[node name="backColor" type="Sprite" parent="."]
texture = ExtResource( 18 )
centered = false
[node name="day_clouds" type="Sprite" parent="."]
material = SubResource( 2 )
texture = ExtResource( 17 )
centered = false
flip_h = true
[node name="background" type="Sprite" parent="."]
texture = ExtResource( 11 )
centered = false
[node name="pink" type="Sprite" parent="."]
visible = false
texture = ExtResource( 14 )
centered = false
[node name="beretta" type="Sprite" parent="pink"]
texture = ExtResource( 3 )
centered = false
[node name="smoke" type="Sprite" parent="pink/beretta"]
texture = ExtResource( 8 )
centered = false
[node name="glock" type="Sprite" parent="pink"]
visible = false
texture = ExtResource( 9 )
centered = false
[node name="smoke" type="Sprite" parent="pink/glock"]
texture = ExtResource( 12 )
centered = false
[node name="blue" type="Sprite" parent="."]
visible = false
texture = ExtResource( 1 )
centered = false
[node name="beretta" type="Sprite" parent="blue"]
visible = false
texture = ExtResource( 6 )
centered = false
[node name="smoke" type="Sprite" parent="blue/beretta"]
texture = ExtResource( 4 )
centered = false
[node name="glock" type="Sprite" parent="blue"]
texture = ExtResource( 5 )
centered = false
[node name="smoke" type="Sprite" parent="blue/glock"]
texture = ExtResource( 7 )
centered = false
[node name="red" type="Sprite" parent="."]
visible = false
texture = ExtResource( 2 )
centered = false
[node name="white" type="Sprite" parent="."]
visible = false
texture = ExtResource( 10 )
centered = false
[node name="brown" type="Sprite" parent="."]
texture = ExtResource( 13 )
centered = false
[node name="rain" type="Node2D" parent="."]
z_index = 1
[node name="Particles2D" type="Particles2D" parent="rain"]
position = Vector2( 5000, -200 )
amount = 1600
lifetime = 7.0
preprocess = 10.0
speed_scale = 6.0
visibility_rect = Rect2( -3000, 300, 200, 200 )
process_material = SubResource( 1 )
texture = ExtResource( 16 )

View file

@ -0,0 +1,64 @@
[gd_scene load_steps=8 format=2]
[ext_resource path="res://resources/graphics/backgrounds/podval/dark_water_closed.webp" type="Texture" id=1]
[ext_resource path="res://resources/graphics/backgrounds/podval/window_podval.webp" type="Texture" id=2]
[ext_resource path="res://resources/graphics/backgrounds/drop1.webp" type="Texture" id=3]
[ext_resource path="res://resources/AlternativeChoices/Before_Timeline_143/gray.webp" type="Texture" id=4]
[ext_resource path="res://scripts/backround_scenes_scripts/Podval.gd" type="Script" id=9]
[ext_resource path="res://resources/customControls/Cat.tscn" type="PackedScene" id=10]
[sub_resource type="ParticlesMaterial" id=1]
lifetime_randomness = 0.1
trail_divisor = 2
emission_shape = 2
emission_box_extents = Vector3( 3000, 50, 1 )
flag_align_y = true
flag_disable_z = true
gravity = Vector3( 0, 98, 0 )
orbit_velocity = 0.0
orbit_velocity_random = 0.0
radial_accel = 49.05
scale = 0.6
[node name="Podval" type="Node2D"]
script = ExtResource( 9 )
[node name="ForScale" type="Node2D" parent="."]
[node name="Polygon2D" type="Sprite" parent="ForScale"]
modulate = Color( 0.0901961, 0.0901961, 0.0901961, 1 )
position = Vector2( -50, 274 )
scale = Vector2( 1.24138, 1.04014 )
texture = ExtResource( 2 )
centered = false
[node name="Rain" type="Particles2D" parent="ForScale"]
position = Vector2( 1233, -50 )
scale = Vector2( 0.372414, 0.312042 )
amount = 2000
lifetime = 8.0
preprocess = 10.0
speed_scale = 5.0
visibility_rect = Rect2( -3000, 300, 200, 200 )
process_material = SubResource( 1 )
texture = ExtResource( 3 )
[node name="Sprite" type="Sprite" parent="."]
position = Vector2( -1, -1 )
texture = ExtResource( 1 )
centered = false
[node name="PowerPanel" type="Sprite" parent="Sprite"]
position = Vector2( 1332, 932 )
centered = false
[node name="Cat" parent="." instance=ExtResource( 10 )]
[node name="removable" type="Node2D" parent="."]
[node name="Gray" type="Sprite" parent="removable"]
visible = false
position = Vector2( 414, 842 )
scale = Vector2( 0.9, 0.9 )
texture = ExtResource( 4 )
centered = false

View file

@ -0,0 +1,255 @@
[gd_scene load_steps=39 format=2]
[ext_resource path="res://resources/graphics/backgrounds/police_station/policestation back.webp" type="Texture" id=1]
[ext_resource path="res://resources/AlternativeChoices/HoverAlternative.gdshader" type="Shader" id=2]
[ext_resource path="res://scenes/BackgroundScenes/police3d.tscn" type="PackedScene" id=3]
[ext_resource path="res://scripts/backround_scenes_scripts/PoliceStation.gd" type="Script" id=4]
[ext_resource path="res://resources/graphics/Investigations/EpilogMinigame/garage.webp" type="Texture" id=5]
[ext_resource path="res://resources/graphics/Investigations/EpilogMinigame/parking.webp" type="Texture" id=6]
[ext_resource path="res://resources/graphics/Investigations/EpilogMinigame/lighthouse.webp" type="Texture" id=7]
[ext_resource path="res://resources/graphics/Investigations/EpilogMinigame/pristan.webp" type="Texture" id=8]
[ext_resource path="res://resources/graphics/Investigations/EpilogMinigame/tropa.webp" type="Texture" id=9]
[ext_resource path="res://resources/graphics/Investigations/EpilogMinigame/smoking.webp" type="Texture" id=10]
[ext_resource path="res://resources/graphics/Investigations/EpilogMinigame/office.webp" type="Texture" id=11]
[ext_resource path="res://resources/graphics/Investigations/EpilogMinigame/kitchen.webp" type="Texture" id=12]
[ext_resource path="res://resources/graphics/Investigations/EpilogMinigame/prichal.webp" type="Texture" id=13]
[ext_resource path="res://resources/graphics/Investigations/EpilogMinigame/restaurant.webp" type="Texture" id=14]
[ext_resource path="res://resources/graphics/Investigations/EpilogMinigame/room.webp" type="Texture" id=15]
[ext_resource path="res://resources/graphics/Investigations/EpilogMinigame/kamin.webp" type="Texture" id=16]
[ext_resource path="res://resources/graphics/Investigations/EpilogMinigame/cliff.webp" type="Texture" id=17]
[ext_resource path="res://resources/graphics/Investigations/EpilogMinigame/stairs.webp" type="Texture" id=18]
[ext_resource path="res://resources/graphics/Investigations/EpilogMinigame/podval.webp" type="Texture" id=19]
[ext_resource path="res://resources/graphics/Investigations/EpilogMinigame/exit.webp" type="Texture" id=20]
[sub_resource type="ShaderMaterial" id=5]
shader = ExtResource( 2 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=6]
shader = ExtResource( 2 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=7]
shader = ExtResource( 2 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=8]
shader = ExtResource( 2 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=9]
shader = ExtResource( 2 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=10]
shader = ExtResource( 2 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=11]
shader = ExtResource( 2 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=12]
shader = ExtResource( 2 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=13]
shader = ExtResource( 2 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=14]
shader = ExtResource( 2 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=15]
shader = ExtResource( 2 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=16]
shader = ExtResource( 2 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=17]
shader = ExtResource( 2 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=18]
shader = ExtResource( 2 )
shader_param/mixing = 0.0
[sub_resource type="ShaderMaterial" id=19]
shader = ExtResource( 2 )
shader_param/mixing = 0.0
[sub_resource type="Shader" id=2]
code = "shader_type canvas_item;
uniform vec4 alpha_color : hint_color = vec4(1.0, 0.0, 1.0, 1.0);
void fragment() {
vec4 color = texture(TEXTURE, UV);
// if (color.r>0.9){
// color.a = 0.0;
// }
COLOR = color;
}
"
[sub_resource type="ShaderMaterial" id=3]
shader = SubResource( 2 )
shader_param/alpha_color = Color( 1, 0, 1, 1 )
[sub_resource type="ViewportTexture" id=4]
viewport_path = NodePath("Node2D/Viewport")
[node name="PoliceStation" type="Node2D"]
script = ExtResource( 4 )
[node name="Background" type="Sprite" parent="."]
texture = ExtResource( 1 )
centered = false
[node name="removables" type="Node2D" parent="."]
[node name="garage" type="Sprite" parent="removables"]
visible = false
material = SubResource( 5 )
position = Vector2( 1676, 1672 )
scale = Vector2( 0.542, 0.542 )
texture = ExtResource( 5 )
centered = false
[node name="office" type="Sprite" parent="removables"]
visible = false
material = SubResource( 6 )
position = Vector2( 2328, 1728 )
scale = Vector2( 0.542, 0.542 )
texture = ExtResource( 11 )
centered = false
[node name="kamin" type="Sprite" parent="removables"]
visible = false
material = SubResource( 7 )
position = Vector2( 2454, 1322 )
scale = Vector2( 0.542, 0.542 )
texture = ExtResource( 16 )
centered = false
[node name="room" type="Sprite" parent="removables"]
visible = false
material = SubResource( 8 )
position = Vector2( 2504, 712 )
scale = Vector2( 0.542, 0.542 )
texture = ExtResource( 15 )
centered = false
[node name="smoking" type="Sprite" parent="removables"]
visible = false
material = SubResource( 9 )
position = Vector2( 2004, 700 )
scale = Vector2( 0.542, 0.542 )
texture = ExtResource( 10 )
centered = false
[node name="kitchen" type="Sprite" parent="removables"]
visible = false
material = SubResource( 10 )
position = Vector2( 1478, 620 )
scale = Vector2( 0.542, 0.542 )
texture = ExtResource( 12 )
centered = false
[node name="stairs" type="Sprite" parent="removables"]
visible = false
material = SubResource( 11 )
position = Vector2( 2440, 1008 )
scale = Vector2( 0.542, 0.542 )
texture = ExtResource( 18 )
centered = false
[node name="lighthouse" type="Sprite" parent="removables"]
visible = false
material = SubResource( 12 )
position = Vector2( 1876, 1308 )
scale = Vector2( 0.542, 0.542 )
texture = ExtResource( 7 )
centered = false
[node name="cliff" type="Sprite" parent="removables"]
visible = false
material = SubResource( 13 )
position = Vector2( 1920, 961 )
scale = Vector2( 0.542, 0.542 )
texture = ExtResource( 17 )
centered = false
[node name="parking" type="Sprite" parent="removables"]
visible = false
material = SubResource( 14 )
position = Vector2( 1028, 1690 )
scale = Vector2( 0.542, 0.542 )
texture = ExtResource( 6 )
centered = false
[node name="pristan" type="Sprite" parent="removables"]
visible = false
material = SubResource( 15 )
position = Vector2( 1921, 960 )
scale = Vector2( 0.542, 0.542 )
texture = ExtResource( 8 )
centered = false
[node name="podval" type="Sprite" parent="removables"]
visible = false
material = SubResource( 16 )
position = Vector2( 1256, 1248 )
scale = Vector2( 0.542, 0.542 )
texture = ExtResource( 19 )
centered = false
[node name="prichal" type="Sprite" parent="removables"]
visible = false
material = SubResource( 17 )
position = Vector2( 2504, 712 )
scale = Vector2( 0.542, 0.542 )
texture = ExtResource( 13 )
centered = false
[node name="restaurant" type="Sprite" parent="removables"]
visible = false
material = SubResource( 18 )
position = Vector2( 2456, 1314 )
scale = Vector2( 0.542, 0.542 )
texture = ExtResource( 14 )
centered = false
[node name="tropa" type="Sprite" parent="removables"]
visible = false
material = SubResource( 19 )
position = Vector2( 1036, 1704 )
scale = Vector2( 0.542, 0.542 )
texture = ExtResource( 9 )
centered = false
[node name="exit" type="Sprite" parent="removables"]
material = SubResource( 13 )
position = Vector2( 1413, 921 )
scale = Vector2( 0.542, 0.542 )
texture = ExtResource( 20 )
centered = false
[node name="Screen" type="Sprite" parent="."]
material = SubResource( 3 )
z_index = 1
texture = SubResource( 4 )
centered = false
[node name="Node2D" type="Node2D" parent="."]
[node name="Viewport" type="Viewport" parent="Node2D"]
size = Vector2( 3840, 2160 )
transparent_bg = true
render_target_v_flip = true
[node name="police3d" parent="Node2D/Viewport" instance=ExtResource( 3 )]

View file

@ -0,0 +1,101 @@
[gd_scene load_steps=16 format=2]
[ext_resource path="res://resources/effects/MovingBackground.gdshader" type="Shader" id=1]
[ext_resource path="res://resources/graphics/backgrounds/pristan/pierDayCloud.webp" type="Texture" id=2]
[ext_resource path="res://scripts/backround_scenes_scripts/Pristan.gd" type="Script" id=3]
[ext_resource path="res://resources/customControls/Cat.tscn" type="PackedScene" id=4]
[ext_resource path="res://resources/graphics/backgrounds/pristan/pierNightCloud.webp" type="Texture" id=5]
[ext_resource path="res://resources/graphics/backgrounds/pristan/PierCommon.webp" type="Texture" id=6]
[ext_resource path="res://resources/graphics/backgrounds/pristan/PierFogHoriz.webp" type="Texture" id=7]
[ext_resource path="res://resources/customControls/Lightning.tscn" type="PackedScene" id=8]
[ext_resource path="res://resources/graphics/backgrounds/pristan/PierNight.webp" type="Texture" id=9]
[ext_resource path="res://resources/graphics/backgrounds/pristan/PierDay.webp" type="Texture" id=10]
[ext_resource path="res://resources/graphics/backgrounds/drop1.webp" type="Texture" id=11]
[ext_resource path="res://resources/graphics/backgrounds/pristan/FisherAndBucketRod.webp" type="Texture" id=113]
[sub_resource type="ShaderMaterial" id=1]
shader = ExtResource( 1 )
shader_param/direction = Vector2( -1, 0 )
shader_param/speed_scale = 0.003
[sub_resource type="ShaderMaterial" id=2]
shader = ExtResource( 1 )
shader_param/direction = Vector2( -1, 0 )
shader_param/speed_scale = 0.003
[sub_resource type="ParticlesMaterial" id=3]
lifetime_randomness = 0.1
trail_divisor = 2
emission_shape = 2
emission_box_extents = Vector3( 5000, 100, 1 )
flag_align_y = true
flag_disable_z = true
gravity = Vector3( 0, 98, 0 )
orbit_velocity = 0.0
orbit_velocity_random = 0.0
radial_accel = 49.05
scale = 1.5
[node name="Pristan" type="Node2D"]
script = ExtResource( 3 )
[node name="CommonBackground" type="Sprite" parent="."]
texture = ExtResource( 6 )
centered = false
[node name="Day" type="Node2D" parent="."]
[node name="DayClouds" type="Sprite" parent="Day"]
material = SubResource( 1 )
z_index = -1
texture = ExtResource( 2 )
centered = false
[node name="Day" type="Sprite" parent="Day"]
texture = ExtResource( 10 )
centered = false
[node name="Fog" type="Sprite" parent="Day"]
texture = ExtResource( 7 )
centered = false
[node name="Fisher" type="Sprite" parent="Day"]
visible = false
position = Vector2( 2463, 439 )
texture = ExtResource( 113 )
centered = false
flip_h = true
[node name="Night" type="Node2D" parent="."]
[node name="NightClouds" type="Sprite" parent="Night"]
material = SubResource( 2 )
z_index = -1
texture = ExtResource( 5 )
centered = false
[node name="Night" type="Sprite" parent="Night"]
texture = ExtResource( 9 )
centered = false
[node name="Cat" parent="." instance=ExtResource( 4 )]
visible = false
position = Vector2( 1455, 1702 )
[node name="Lightning" parent="." instance=ExtResource( 8 )]
[node name="Lightning2" parent="." instance=ExtResource( 8 )]
[node name="rain" type="Node2D" parent="."]
visible = false
z_index = 1
[node name="Particles2D" type="Particles2D" parent="rain"]
position = Vector2( 5000, -400 )
amount = 4000
lifetime = 8.0
preprocess = 10.0
speed_scale = 5.0
visibility_rect = Rect2( -3000, 300, 200, 200 )
process_material = SubResource( 3 )
texture = ExtResource( 11 )

View file

@ -0,0 +1,92 @@
[gd_scene load_steps=11 format=2]
[ext_resource path="res://resources/graphics/backgrounds/purple_death_1/Fioletovaya_stsena_smerti_PERSONAZh_PNG.webp" type="Texture" id=1]
[ext_resource path="res://resources/graphics/backgrounds/purple_death_1/Fioletovaya_stsena_smerti_FON__BEZ_DOZhDYa.webp" type="Texture" id=3]
[ext_resource path="res://resources/graphics/backgrounds/drop_for_roman.webp" type="Texture" id=4]
[ext_resource path="res://resources/graphics/darkening/darkening1.webp" type="Texture" id=5]
[ext_resource path="res://resources/graphics/endtext/2_thx_for_playing.webp" type="Texture" id=6]
[ext_resource path="res://resources/graphics/endtext/2_konets_demo.webp" type="Texture" id=7]
[ext_resource path="res://scripts/backround_scenes_scripts/Purple_Death_1.gd" type="Script" id=8]
[sub_resource type="ParticlesMaterial" id=3]
lifetime_randomness = 0.1
trail_divisor = 2
emission_shape = 2
emission_box_extents = Vector3( 5000, 100, 1 )
flag_align_y = true
flag_disable_z = true
gravity = Vector3( 0, 98, 0 )
orbit_velocity = 0.0
orbit_velocity_random = 0.0
radial_accel = 43.08
scale = 0.8
color = Color( 1, 1, 1, 0.596078 )
[sub_resource type="Shader" id=6]
code = "shader_type canvas_item;
uniform float alphaChannel=1;
void fragment() {
//vec4 pixelColor = texture(TEXTURE, UV);
COLOR = texture(TEXTURE, UV);
//float newAlpha=(alphaChannel);
//vec2 fromCenterVec=UV.xy-vec2(0.5,0.5);
//if (newAlpha>=0f){
// COLOR.a=30.64*newAlpha*length(fromCenterVec);
//} else COLOR.a=0f;
COLOR.a=alphaChannel;
}"
[sub_resource type="ShaderMaterial" id=5]
shader = SubResource( 6 )
shader_param/alphaChannel = 0.6
[node name="Purple_Death_1" type="Node2D"]
script = ExtResource( 8 )
[node name="Sprite2" type="Sprite" parent="."]
texture = ExtResource( 3 )
centered = false
[node name="Sprite3" type="Sprite" parent="."]
texture = ExtResource( 1 )
centered = false
[node name="rain" type="Node2D" parent="."]
z_index = 1
[node name="Particles2D" type="Particles2D" parent="rain"]
position = Vector2( 5000, -400 )
amount = 2500
lifetime = 8.0
preprocess = 10.0
speed_scale = 5.0
visibility_rect = Rect2( -3000, 300, 200, 200 )
process_material = SubResource( 3 )
texture = ExtResource( 4 )
[node name="darkening" type="Sprite" parent="."]
material = SubResource( 5 )
z_index = 1
texture = ExtResource( 5 )
centered = false
[node name="End" type="Node2D" parent="."]
[node name="Tween" type="Tween" parent="End"]
[node name="ru" type="Sprite" parent="End"]
visible = false
light_mask = 4
position = Vector2( 835, -389 )
scale = Vector2( 0.4, 0.4 )
texture = ExtResource( 7 )
centered = false
[node name="eng" type="Sprite" parent="End"]
visible = false
position = Vector2( 835, -389 )
scale = Vector2( 0.4, 0.4 )
texture = ExtResource( 6 )
centered = false

View file

@ -0,0 +1,40 @@
[gd_scene load_steps=2 format=2]
[ext_resource path="res://dlc/oneeleven18+/scripts/DLC18.gd" type="Script" id=1]
[node name="RenataDLC" type="Node2D"]
script = ExtResource( 1 )
[node name="Sprite0" type="Sprite" parent="."]
visible = false
centered = false
[node name="Sprite1" type="Sprite" parent="."]
visible = false
centered = false
[node name="Sprite2" type="Sprite" parent="."]
visible = false
centered = false
[node name="Sprite3" type="Sprite" parent="."]
visible = false
centered = false
[node name="Sprite4" type="Sprite" parent="."]
visible = false
centered = false
[node name="Sprite5" type="Sprite" parent="."]
visible = false
centered = false
[node name="Sprite6" type="Sprite" parent="."]
visible = false
centered = false
[node name="Sprite7" type="Sprite" parent="."]
visible = false
centered = false
[node name="Tween" type="Tween" parent="."]

View file

@ -0,0 +1,23 @@
[gd_scene load_steps=5 format=2]
[ext_resource path="res://resources/graphics/backgrounds/renata_sex/RENATA 0.webp" type="Texture" id=1]
[ext_resource path="res://resources/graphics/backgrounds/renata_sex/RENATA 2.webp" type="Texture" id=2]
[ext_resource path="res://resources/graphics/backgrounds/renata_sex/RENATA 1.webp" type="Texture" id=3]
[ext_resource path="res://scripts/backround_scenes_scripts/Renata_sex.gd" type="Script" id=4]
[node name="Renata_sex" type="Node2D"]
script = ExtResource( 4 )
[node name="Sprite3" type="Sprite" parent="."]
texture = ExtResource( 2 )
centered = false
[node name="Sprite2" type="Sprite" parent="."]
texture = ExtResource( 3 )
centered = false
[node name="Sprite1" type="Sprite" parent="."]
texture = ExtResource( 1 )
centered = false
[node name="Tween" type="Tween" parent="."]

View file

@ -0,0 +1,18 @@
[gd_scene load_steps=4 format=2]
[ext_resource path="res://resources/graphics/backgrounds/roman_orange/1.webp" type="Texture" id=1]
[ext_resource path="res://resources/graphics/backgrounds/roman_orange/2.webp" type="Texture" id=2]
[ext_resource path="res://scripts/backround_scenes_scripts/Roman_Orange.gd" type="Script" id=3]
[node name="Roman_Orange" type="Node2D"]
script = ExtResource( 3 )
[node name="Sprite2" type="Sprite" parent="."]
texture = ExtResource( 2 )
centered = false
[node name="Sprite1" type="Sprite" parent="."]
texture = ExtResource( 1 )
centered = false
[node name="Tween" type="Tween" parent="."]

View file

@ -0,0 +1,44 @@
[gd_scene load_steps=5 format=2]
[ext_resource path="res://resources/graphics/backgrounds/roman_black/Korichnevy_Chyornaya_fon.webp" type="Texture" id=1]
[ext_resource path="res://resources/graphics/backgrounds/kaplya.webp" type="Texture" id=3]
[ext_resource path="res://scripts/backround_scenes_scripts/Roman_black.gd" type="Script" id=4]
[sub_resource type="ParticlesMaterial" id=1]
lifetime_randomness = 0.1
emission_shape = 2
emission_box_extents = Vector3( 9000, 100, 1 )
flag_align_y = true
flag_disable_z = true
gravity = Vector3( 0, 98, 0 )
orbit_velocity = 0.0
orbit_velocity_random = 0.0
radial_accel = 33.26
[node name="Roman_black" type="Node2D"]
script = ExtResource( 4 )
[node name="Sprite" type="Sprite" parent="."]
texture = ExtResource( 1 )
centered = false
[node name="rain" type="Node2D" parent="."]
[node name="Rain" type="Node2D" parent="rain"]
scale = Vector2( 0.54, 0.54 )
[node name="Particles2D" type="Particles2D" parent="rain/Rain"]
position = Vector2( -2000, -800 )
amount = 600
lifetime = 10.0
preprocess = 10.0
speed_scale = 5.0
visibility_rect = Rect2( 2000, 800, 200, 200 )
process_material = SubResource( 1 )
texture = ExtResource( 3 )
[node name="EasterEggTimer" type="Timer" parent="."]
wait_time = 66.6
one_shot = true
[connection signal="timeout" from="EasterEggTimer" to="." method="_on_EasterEggTimer_timeout"]

View file

@ -0,0 +1,11 @@
[gd_scene load_steps=3 format=2]
[ext_resource path="res://resources/graphics/backgrounds/roman_blue/navel1_2.webp" type="Texture" id=1]
[ext_resource path="res://scripts/backround_scenes_scripts/Roman_blue.gd" type="Script" id=2]
[node name="Roman_blue" type="Node2D"]
script = ExtResource( 2 )
[node name="Sprite" type="Sprite" parent="."]
texture = ExtResource( 1 )
centered = false

View file

@ -0,0 +1,39 @@
[gd_scene load_steps=5 format=2]
[ext_resource path="res://scripts/backround_scenes_scripts/Roman_green.gd" type="Script" id=1]
[ext_resource path="res://resources/graphics/backgrounds/roman_green/Korichnevy_zelenaya_fon.webp" type="Texture" id=2]
[ext_resource path="res://resources/graphics/backgrounds/kaplya.webp" type="Texture" id=3]
[sub_resource type="ParticlesMaterial" id=1]
lifetime_randomness = 0.1
emission_shape = 2
emission_box_extents = Vector3( 9000, 100, 1 )
flag_align_y = true
flag_disable_z = true
gravity = Vector3( 0, 98, 0 )
orbit_velocity = 0.0
orbit_velocity_random = 0.0
radial_accel = 14.84
scale = 0.7
[node name="Roman_green" type="Node2D"]
script = ExtResource( 1 )
[node name="Sprite" type="Sprite" parent="."]
texture = ExtResource( 2 )
centered = false
[node name="rain" type="Node2D" parent="."]
[node name="Rain" type="Node2D" parent="rain"]
scale = Vector2( 0.54, 0.54 )
[node name="Particles2D" type="Particles2D" parent="rain/Rain"]
position = Vector2( -2000, -800 )
amount = 1800
lifetime = 10.0
preprocess = 10.0
speed_scale = 5.0
visibility_rect = Rect2( 5000, 800, 200, 200 )
process_material = SubResource( 1 )
texture = ExtResource( 3 )

View file

@ -0,0 +1,11 @@
[gd_scene load_steps=3 format=2]
[ext_resource path="res://resources/graphics/backgrounds/roman_pink/ROMAN_PINK.webp" type="Texture" id=1]
[ext_resource path="res://scripts/backround_scenes_scripts/Roman_pink.gd" type="Script" id=2]
[node name="Roman_pink" type="Node2D"]
script = ExtResource( 2 )
[node name="Sprite" type="Sprite" parent="."]
texture = ExtResource( 1 )
centered = false

View file

@ -0,0 +1,38 @@
[gd_scene load_steps=5 format=2]
[ext_resource path="res://resources/graphics/backgrounds/roman_violet/Коричневый Фиолетовая фон.webp" type="Texture" id=1]
[ext_resource path="res://scripts/backround_scenes_scripts/Roman_violet.gd" type="Script" id=2]
[ext_resource path="res://resources/graphics/backgrounds/kaplya.webp" type="Texture" id=3]
[sub_resource type="ParticlesMaterial" id=1]
lifetime_randomness = 0.1
emission_shape = 2
emission_box_extents = Vector3( 9000, 100, 1 )
flag_align_y = true
flag_disable_z = true
gravity = Vector3( 0, 98, 0 )
orbit_velocity = 0.0
orbit_velocity_random = 0.0
radial_accel = -27.26
[node name="Roman_violet" type="Node2D"]
script = ExtResource( 2 )
[node name="Sprite" type="Sprite" parent="."]
texture = ExtResource( 1 )
centered = false
[node name="rain" type="Node2D" parent="."]
[node name="Rain" type="Node2D" parent="rain"]
scale = Vector2( 0.54, 0.54 )
[node name="Particles2D" type="Particles2D" parent="rain/Rain"]
position = Vector2( 12100, -800 )
amount = 1000
lifetime = 11.0
preprocess = 10.0
speed_scale = 5.0
visibility_rect = Rect2( -8000, 800, 200, 200 )
process_material = SubResource( 1 )
texture = ExtResource( 3 )

View file

@ -0,0 +1,36 @@
[gd_scene load_steps=7 format=2]
[ext_resource path="res://resources/graphics/backgrounds/room/комната_1_зеркало.webp" type="Texture" id=1]
[ext_resource path="res://resources/graphics/backgrounds/room/комната_1.webp" type="Texture" id=2]
[ext_resource path="res://resources/graphics/backgrounds/room/комната_1_без света.webp" type="Texture" id=3]
[ext_resource path="res://resources/graphics/backgrounds/room/комната_1_без светаеркало.webp" type="Texture" id=4]
[ext_resource path="res://scripts/backround_scenes_scripts/Room_Agatha.gd" type="Script" id=5]
[ext_resource path="res://resources/customControls/Cat.tscn" type="PackedScene" id=6]
[node name="Room_Agatha" type="Node2D"]
script = ExtResource( 5 )
[node name="lights_on" type="Node2D" parent="."]
[node name="Sprite" type="Sprite" parent="lights_on"]
texture = ExtResource( 2 )
centered = false
[node name="Sprite2" type="Sprite" parent="lights_on"]
position = Vector2( 1582, 698 )
texture = ExtResource( 1 )
centered = false
[node name="lights_off" type="Node2D" parent="."]
visible = false
[node name="Sprite" type="Sprite" parent="lights_off"]
texture = ExtResource( 3 )
centered = false
[node name="Sprite2" type="Sprite" parent="lights_off"]
position = Vector2( 1568, 698 )
texture = ExtResource( 4 )
centered = false
[node name="Cat" parent="." instance=ExtResource( 6 )]

View file

@ -0,0 +1,33 @@
[gd_scene load_steps=6 format=2]
[ext_resource path="res://resources/graphics/backgrounds/room/комната_2_без светаеркало.webp" type="Texture" id=1]
[ext_resource path="res://resources/graphics/backgrounds/room/комната_2_зеркало.webp" type="Texture" id=2]
[ext_resource path="res://resources/graphics/backgrounds/room/комната_2_без света.webp" type="Texture" id=3]
[ext_resource path="res://resources/graphics/backgrounds/room/комната_2.webp" type="Texture" id=4]
[ext_resource path="res://scripts/backround_scenes_scripts/Room_Dana.gd" type="Script" id=5]
[node name="Room_Dana" type="Node2D"]
script = ExtResource( 5 )
[node name="lights_on" type="Node2D" parent="."]
[node name="Sprite" type="Sprite" parent="lights_on"]
texture = ExtResource( 4 )
centered = false
[node name="Sprite2" type="Sprite" parent="lights_on"]
position = Vector2( 2019, 698 )
texture = ExtResource( 2 )
centered = false
[node name="lights_off" type="Node2D" parent="."]
visible = false
[node name="Sprite" type="Sprite" parent="lights_off"]
texture = ExtResource( 3 )
centered = false
[node name="Sprite2" type="Sprite" parent="lights_off"]
position = Vector2( 2012, 698 )
texture = ExtResource( 1 )
centered = false

View file

@ -0,0 +1,41 @@
[gd_scene load_steps=7 format=2]
[ext_resource path="res://resources/graphics/backgrounds/room/комната_3_без света.webp" type="Texture" id=1]
[ext_resource path="res://resources/graphics/backgrounds/room/комната_3_без светаеркало.webp" type="Texture" id=2]
[ext_resource path="res://resources/graphics/backgrounds/room/комната_3_зеркало.webp" type="Texture" id=3]
[ext_resource path="res://resources/graphics/backgrounds/room/комната_3.webp" type="Texture" id=4]
[ext_resource path="res://scripts/backround_scenes_scripts/Room_Emiliya.gd" type="Script" id=5]
[ext_resource path="res://resources/graphics/backgrounds/room/3_morning.webp" type="Texture" id=6]
[node name="Room_Emiliya" type="Node2D"]
script = ExtResource( 5 )
[node name="lights_on" type="Node2D" parent="."]
[node name="Sprite" type="Sprite" parent="lights_on"]
texture = ExtResource( 4 )
centered = false
[node name="Sprite2" type="Sprite" parent="lights_on"]
position = Vector2( 3535, 614 )
texture = ExtResource( 3 )
centered = false
[node name="lights_off" type="Node2D" parent="."]
visible = false
[node name="Sprite" type="Sprite" parent="lights_off"]
texture = ExtResource( 1 )
centered = false
[node name="Sprite2" type="Sprite" parent="lights_off"]
position = Vector2( 3535, 614 )
texture = ExtResource( 2 )
centered = false
[node name="morning" type="Node2D" parent="."]
visible = false
[node name="Sprite" type="Sprite" parent="morning"]
texture = ExtResource( 6 )
centered = false

View file

@ -0,0 +1,33 @@
[gd_scene load_steps=6 format=2]
[ext_resource path="res://resources/graphics/backgrounds/room/комната_4.webp" type="Texture" id=1]
[ext_resource path="res://resources/graphics/backgrounds/room/комната_4_без светаеркало.webp" type="Texture" id=2]
[ext_resource path="res://resources/graphics/backgrounds/room/комната_4_без света.webp" type="Texture" id=3]
[ext_resource path="res://resources/graphics/backgrounds/room/комната_4_зеркало.webp" type="Texture" id=4]
[ext_resource path="res://scripts/backround_scenes_scripts/Room_Linda.gd" type="Script" id=5]
[node name="Room_Linda" type="Node2D"]
script = ExtResource( 5 )
[node name="lights_on" type="Node2D" parent="."]
[node name="Sprite" type="Sprite" parent="lights_on"]
texture = ExtResource( 1 )
centered = false
[node name="Sprite2" type="Sprite" parent="lights_on"]
position = Vector2( 0, 614 )
texture = ExtResource( 4 )
centered = false
[node name="lights_off" type="Node2D" parent="."]
visible = false
[node name="Sprite" type="Sprite" parent="lights_off"]
texture = ExtResource( 3 )
centered = false
[node name="Sprite2" type="Sprite" parent="lights_off"]
position = Vector2( 0, 614 )
texture = ExtResource( 2 )
centered = false

View file

@ -0,0 +1,33 @@
[gd_scene load_steps=6 format=2]
[ext_resource path="res://resources/graphics/backgrounds/room/комната_5_зеркало.webp" type="Texture" id=1]
[ext_resource path="res://resources/graphics/backgrounds/room/комната_5.webp" type="Texture" id=2]
[ext_resource path="res://resources/graphics/backgrounds/room/комната_5_без света.webp" type="Texture" id=3]
[ext_resource path="res://resources/graphics/backgrounds/room/комната_5_без светаеркало.webp" type="Texture" id=4]
[ext_resource path="res://scripts/backround_scenes_scripts/Room_Martin.gd" type="Script" id=5]
[node name="Room_Martin" type="Node2D"]
script = ExtResource( 5 )
[node name="lights_on" type="Node2D" parent="."]
[node name="Sprite" type="Sprite" parent="lights_on"]
texture = ExtResource( 2 )
centered = false
[node name="Sprite2" type="Sprite" parent="lights_on"]
position = Vector2( 3535, 615 )
texture = ExtResource( 1 )
centered = false
[node name="lights_off" type="Node2D" parent="."]
visible = false
[node name="Sprite" type="Sprite" parent="lights_off"]
texture = ExtResource( 3 )
centered = false
[node name="Sprite2" type="Sprite" parent="lights_off"]
position = Vector2( 3535, 614 )
texture = ExtResource( 4 )
centered = false

Some files were not shown because too many files have changed in this diff Show more