commit 68ec2c24eae6f2fd575d97eebd4148f6d9a9d430 Author: Remor Date: Sun Jun 22 19:47:48 2025 +0300 create diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9f777eb --- /dev/null +++ b/.gitignore @@ -0,0 +1,31 @@ +# Системные файлы +*.sln +*.suo +*.xcodeproj +*.xcworkspace +*.idea/ +*.vs/ + +# Папки и файлы UE4 +/Binaries/* +/DerivedDataCache/* +/Intermediate/* +/Saved/* +/Build/* +/Config/DefaultEditor.ini +/Config/DefaultGame.ini +/Config/DefaultInput.ini + +# Логи и временные файлы +*.log +*.tmp + +# Сторонние библиотеки +/ThirdParty/* +/Plugins/*/Binaries/* +/Plugins/*/Intermediate/* + +# Прочее +*.user +*.userprefs +*.autosave \ No newline at end of file diff --git a/Config/DefaultEngine.ini b/Config/DefaultEngine.ini new file mode 100644 index 0000000..81c36ea --- /dev/null +++ b/Config/DefaultEngine.ini @@ -0,0 +1,30 @@ + + +[/Script/EngineSettings.GameMapsSettings] +GameDefaultMap=/Game/Levels/Startup1.Startup1 +EditorStartupMap=/Game/Levels/Startup1.Startup1 + +[/Script/HardwareTargeting.HardwareTargetingSettings] +TargetedHardwareClass=Desktop +AppliedTargetedHardwareClass=Desktop +DefaultGraphicsPerformance=Maximum +AppliedDefaultGraphicsPerformance=Maximum + +[/Script/Engine.Engine] ++ActiveGameNameRedirects=(OldGameName="TP_BlankBP",NewGameName="/Script/HidedGrassGame") ++ActiveGameNameRedirects=(OldGameName="/Script/TP_BlankBP",NewGameName="/Script/HidedGrassGame") + +[/Script/AndroidFileServerEditor.AndroidFileServerRuntimeSettings] +bEnablePlugin=True +bAllowNetworkConnection=True +SecurityToken=339EEA5C44303EBCFF729EA39236925A +bIncludeInShipping=False +bAllowExternalStartInShipping=False +bCompileAFSProject=False +bUseCompression=False +bLogFiles=False +bReportStats=False +ConnectionType=USBOnly +bUseManualIPAddress=False +ManualIPAddress= + diff --git a/Content/Headbob/Idle.uasset b/Content/Headbob/Idle.uasset new file mode 100644 index 0000000..0ff0ccf Binary files /dev/null and b/Content/Headbob/Idle.uasset differ diff --git a/Content/Headbob/Sprint.uasset b/Content/Headbob/Sprint.uasset new file mode 100644 index 0000000..5975f74 Binary files /dev/null and b/Content/Headbob/Sprint.uasset differ diff --git a/Content/Headbob/Walk.uasset b/Content/Headbob/Walk.uasset new file mode 100644 index 0000000..21ee6ef Binary files /dev/null and b/Content/Headbob/Walk.uasset differ diff --git a/Content/Interact/Scripts/BP_BaseDoor.uasset b/Content/Interact/Scripts/BP_BaseDoor.uasset new file mode 100644 index 0000000..472b837 Binary files /dev/null and b/Content/Interact/Scripts/BP_BaseDoor.uasset differ diff --git a/Content/Interact/Scripts/BaseInteractObject.uasset b/Content/Interact/Scripts/BaseInteractObject.uasset new file mode 100644 index 0000000..0b56767 Binary files /dev/null and b/Content/Interact/Scripts/BaseInteractObject.uasset differ diff --git a/Content/Interact/Scripts/Interact_BP.uasset b/Content/Interact/Scripts/Interact_BP.uasset new file mode 100644 index 0000000..582ea34 Binary files /dev/null and b/Content/Interact/Scripts/Interact_BP.uasset differ diff --git a/Content/Levels/Startup1.umap b/Content/Levels/Startup1.umap new file mode 100644 index 0000000..719e434 Binary files /dev/null and b/Content/Levels/Startup1.umap differ diff --git a/Content/Levels/Startup1_BuiltData.uasset b/Content/Levels/Startup1_BuiltData.uasset new file mode 100644 index 0000000..3af7ed0 Binary files /dev/null and b/Content/Levels/Startup1_BuiltData.uasset differ diff --git a/Content/Meshs/Material.uasset b/Content/Meshs/Material.uasset new file mode 100644 index 0000000..eefc087 Binary files /dev/null and b/Content/Meshs/Material.uasset differ diff --git a/Content/Meshs/ModularBuild_Floor.uasset b/Content/Meshs/ModularBuild_Floor.uasset new file mode 100644 index 0000000..12490f1 Binary files /dev/null and b/Content/Meshs/ModularBuild_Floor.uasset differ diff --git a/Content/Meshs/ModularBuild_Step.uasset b/Content/Meshs/ModularBuild_Step.uasset new file mode 100644 index 0000000..ed1c739 Binary files /dev/null and b/Content/Meshs/ModularBuild_Step.uasset differ diff --git a/Content/Meshs/ModularBuild_Wall1.uasset b/Content/Meshs/ModularBuild_Wall1.uasset new file mode 100644 index 0000000..211f5f5 Binary files /dev/null and b/Content/Meshs/ModularBuild_Wall1.uasset differ diff --git a/Content/Meshs/ModularBuild_Wall1_door.uasset b/Content/Meshs/ModularBuild_Wall1_door.uasset new file mode 100644 index 0000000..d824382 Binary files /dev/null and b/Content/Meshs/ModularBuild_Wall1_door.uasset differ diff --git a/Content/Meshs/ModularBuild_Wall1_window.uasset b/Content/Meshs/ModularBuild_Wall1_window.uasset new file mode 100644 index 0000000..586189d Binary files /dev/null and b/Content/Meshs/ModularBuild_Wall1_window.uasset differ diff --git a/Content/Meshs/ModularBuild_Wall_angle.uasset b/Content/Meshs/ModularBuild_Wall_angle.uasset new file mode 100644 index 0000000..eca8ed9 Binary files /dev/null and b/Content/Meshs/ModularBuild_Wall_angle.uasset differ diff --git a/Content/Model/01_01_0.uasset b/Content/Model/01_01_0.uasset new file mode 100644 index 0000000..30d243a Binary files /dev/null and b/Content/Model/01_01_0.uasset differ diff --git a/Content/Model/02_02_0.uasset b/Content/Model/02_02_0.uasset new file mode 100644 index 0000000..beb7eba Binary files /dev/null and b/Content/Model/02_02_0.uasset differ diff --git a/Content/Model/03_03_0.uasset b/Content/Model/03_03_0.uasset new file mode 100644 index 0000000..335f745 Binary files /dev/null and b/Content/Model/03_03_0.uasset differ diff --git a/Content/Model/04_04_0.uasset b/Content/Model/04_04_0.uasset new file mode 100644 index 0000000..e45208b Binary files /dev/null and b/Content/Model/04_04_0.uasset differ diff --git a/Content/Model/05_05_0.uasset b/Content/Model/05_05_0.uasset new file mode 100644 index 0000000..56f6afd Binary files /dev/null and b/Content/Model/05_05_0.uasset differ diff --git a/Content/Model/06_06_0.uasset b/Content/Model/06_06_0.uasset new file mode 100644 index 0000000..e10ce68 Binary files /dev/null and b/Content/Model/06_06_0.uasset differ diff --git a/Content/Model/Box.uasset b/Content/Model/Box.uasset new file mode 100644 index 0000000..90abf8e Binary files /dev/null and b/Content/Model/Box.uasset differ diff --git a/Content/Model/DefaultMaterial_Base_color.uasset b/Content/Model/DefaultMaterial_Base_color.uasset new file mode 100644 index 0000000..f31d16a Binary files /dev/null and b/Content/Model/DefaultMaterial_Base_color.uasset differ diff --git a/Content/Model/DefaultMaterial_Normal_OpenGL.uasset b/Content/Model/DefaultMaterial_Normal_OpenGL.uasset new file mode 100644 index 0000000..648d331 Binary files /dev/null and b/Content/Model/DefaultMaterial_Normal_OpenGL.uasset differ diff --git a/Content/Model/DefaultMaterial_Roughness.uasset b/Content/Model/DefaultMaterial_Roughness.uasset new file mode 100644 index 0000000..3cba9e5 Binary files /dev/null and b/Content/Model/DefaultMaterial_Roughness.uasset differ diff --git a/Content/Model/LOCKER_FINAL.uasset b/Content/Model/LOCKER_FINAL.uasset new file mode 100644 index 0000000..308affb Binary files /dev/null and b/Content/Model/LOCKER_FINAL.uasset differ diff --git a/Content/Model/Material_001.uasset b/Content/Model/Material_001.uasset new file mode 100644 index 0000000..40ce5c5 Binary files /dev/null and b/Content/Model/Material_001.uasset differ diff --git a/Content/Model/Mug.uasset b/Content/Model/Mug.uasset new file mode 100644 index 0000000..173c731 Binary files /dev/null and b/Content/Model/Mug.uasset differ diff --git a/Content/Model/box_m.uasset b/Content/Model/box_m.uasset new file mode 100644 index 0000000..689663a Binary files /dev/null and b/Content/Model/box_m.uasset differ diff --git a/Content/Model/childrens_wardrobe_photogrammetry.uasset b/Content/Model/childrens_wardrobe_photogrammetry.uasset new file mode 100644 index 0000000..3100d20 Binary files /dev/null and b/Content/Model/childrens_wardrobe_photogrammetry.uasset differ diff --git a/Content/Model/childrens_wardrobe_photogrammetry_texture_0.uasset b/Content/Model/childrens_wardrobe_photogrammetry_texture_0.uasset new file mode 100644 index 0000000..fba2123 Binary files /dev/null and b/Content/Model/childrens_wardrobe_photogrammetry_texture_0.uasset differ diff --git a/Content/Model/childrens_wardrobe_photogrammetry_texture_1.uasset b/Content/Model/childrens_wardrobe_photogrammetry_texture_1.uasset new file mode 100644 index 0000000..d1059b7 Binary files /dev/null and b/Content/Model/childrens_wardrobe_photogrammetry_texture_1.uasset differ diff --git a/Content/Model/childrens_wardrobe_photogrammetry_texture_2.uasset b/Content/Model/childrens_wardrobe_photogrammetry_texture_2.uasset new file mode 100644 index 0000000..264d82b Binary files /dev/null and b/Content/Model/childrens_wardrobe_photogrammetry_texture_2.uasset differ diff --git a/Content/Model/classic_plastic_chairs_texture_0.uasset b/Content/Model/classic_plastic_chairs_texture_0.uasset new file mode 100644 index 0000000..cf1cc17 Binary files /dev/null and b/Content/Model/classic_plastic_chairs_texture_0.uasset differ diff --git a/Content/Model/classic_plastic_chairs_texture_1.uasset b/Content/Model/classic_plastic_chairs_texture_1.uasset new file mode 100644 index 0000000..463e51b Binary files /dev/null and b/Content/Model/classic_plastic_chairs_texture_1.uasset differ diff --git a/Content/Model/classic_plastic_chairs_texture_2.uasset b/Content/Model/classic_plastic_chairs_texture_2.uasset new file mode 100644 index 0000000..0194563 Binary files /dev/null and b/Content/Model/classic_plastic_chairs_texture_2.uasset differ diff --git a/Content/Model/classic_plastic_chairs_texture_3.uasset b/Content/Model/classic_plastic_chairs_texture_3.uasset new file mode 100644 index 0000000..20f9185 Binary files /dev/null and b/Content/Model/classic_plastic_chairs_texture_3.uasset differ diff --git a/Content/Model/classic_plastic_chairs_texture_4.uasset b/Content/Model/classic_plastic_chairs_texture_4.uasset new file mode 100644 index 0000000..dfce099 Binary files /dev/null and b/Content/Model/classic_plastic_chairs_texture_4.uasset differ diff --git a/Content/Model/classic_plastic_chairs_texture_5.uasset b/Content/Model/classic_plastic_chairs_texture_5.uasset new file mode 100644 index 0000000..4f47a49 Binary files /dev/null and b/Content/Model/classic_plastic_chairs_texture_5.uasset differ diff --git a/Content/Model/default.uasset b/Content/Model/default.uasset new file mode 100644 index 0000000..af7f11b Binary files /dev/null and b/Content/Model/default.uasset differ diff --git a/Content/Model/dummy_material_0.uasset b/Content/Model/dummy_material_0.uasset new file mode 100644 index 0000000..2a01275 Binary files /dev/null and b/Content/Model/dummy_material_0.uasset differ diff --git a/Content/Model/fbx_table.uasset b/Content/Model/fbx_table.uasset new file mode 100644 index 0000000..80f4915 Binary files /dev/null and b/Content/Model/fbx_table.uasset differ diff --git a/Content/Model/lambert1.uasset b/Content/Model/lambert1.uasset new file mode 100644 index 0000000..492e111 Binary files /dev/null and b/Content/Model/lambert1.uasset differ diff --git a/Content/Model/lamp_m.uasset b/Content/Model/lamp_m.uasset new file mode 100644 index 0000000..ff3d3a5 Binary files /dev/null and b/Content/Model/lamp_m.uasset differ diff --git a/Content/Model/locations/01_-_Default.uasset b/Content/Model/locations/01_-_Default.uasset new file mode 100644 index 0000000..289daeb Binary files /dev/null and b/Content/Model/locations/01_-_Default.uasset differ diff --git a/Content/Model/locations/154_2.uasset b/Content/Model/locations/154_2.uasset new file mode 100644 index 0000000..ba5b777 Binary files /dev/null and b/Content/Model/locations/154_2.uasset differ diff --git a/Content/Model/locations/Black_Iron.uasset b/Content/Model/locations/Black_Iron.uasset new file mode 100644 index 0000000..d0fa5ce Binary files /dev/null and b/Content/Model/locations/Black_Iron.uasset differ diff --git a/Content/Model/locations/DogBed.uasset b/Content/Model/locations/DogBed.uasset new file mode 100644 index 0000000..03d02ca Binary files /dev/null and b/Content/Model/locations/DogBed.uasset differ diff --git a/Content/Model/locations/Dog_bed.uasset b/Content/Model/locations/Dog_bed.uasset new file mode 100644 index 0000000..19633e6 Binary files /dev/null and b/Content/Model/locations/Dog_bed.uasset differ diff --git a/Content/Model/locations/Hole.uasset b/Content/Model/locations/Hole.uasset new file mode 100644 index 0000000..aede1dd Binary files /dev/null and b/Content/Model/locations/Hole.uasset differ diff --git a/Content/Model/locations/LR_Final001.uasset b/Content/Model/locations/LR_Final001.uasset new file mode 100644 index 0000000..9a4cde3 Binary files /dev/null and b/Content/Model/locations/LR_Final001.uasset differ diff --git a/Content/Model/locations/LR_Final001_Blue.uasset b/Content/Model/locations/LR_Final001_Blue.uasset new file mode 100644 index 0000000..51a1a2b Binary files /dev/null and b/Content/Model/locations/LR_Final001_Blue.uasset differ diff --git a/Content/Model/locations/LR_Final001_Red.uasset b/Content/Model/locations/LR_Final001_Red.uasset new file mode 100644 index 0000000..540bb47 Binary files /dev/null and b/Content/Model/locations/LR_Final001_Red.uasset differ diff --git a/Content/Model/locations/LR_Final001_White.uasset b/Content/Model/locations/LR_Final001_White.uasset new file mode 100644 index 0000000..0161f16 Binary files /dev/null and b/Content/Model/locations/LR_Final001_White.uasset differ diff --git a/Content/Model/locations/Material_001.uasset b/Content/Model/locations/Material_001.uasset new file mode 100644 index 0000000..be16589 Binary files /dev/null and b/Content/Model/locations/Material_001.uasset differ diff --git a/Content/Model/locations/Material_002.uasset b/Content/Model/locations/Material_002.uasset new file mode 100644 index 0000000..9282b35 Binary files /dev/null and b/Content/Model/locations/Material_002.uasset differ diff --git a/Content/Model/locations/Material_003.uasset b/Content/Model/locations/Material_003.uasset new file mode 100644 index 0000000..4c4931c Binary files /dev/null and b/Content/Model/locations/Material_003.uasset differ diff --git a/Content/Model/locations/Material_004.uasset b/Content/Model/locations/Material_004.uasset new file mode 100644 index 0000000..71907b3 Binary files /dev/null and b/Content/Model/locations/Material_004.uasset differ diff --git a/Content/Model/locations/Material_005.uasset b/Content/Model/locations/Material_005.uasset new file mode 100644 index 0000000..a6285db Binary files /dev/null and b/Content/Model/locations/Material_005.uasset differ diff --git a/Content/Model/locations/Material_006.uasset b/Content/Model/locations/Material_006.uasset new file mode 100644 index 0000000..d8a71fe Binary files /dev/null and b/Content/Model/locations/Material_006.uasset differ diff --git a/Content/Model/locations/Material_007.uasset b/Content/Model/locations/Material_007.uasset new file mode 100644 index 0000000..176b0f7 Binary files /dev/null and b/Content/Model/locations/Material_007.uasset differ diff --git a/Content/Model/locations/Material_008.uasset b/Content/Model/locations/Material_008.uasset new file mode 100644 index 0000000..ea6b83b Binary files /dev/null and b/Content/Model/locations/Material_008.uasset differ diff --git a/Content/Model/locations/Material__218.uasset b/Content/Model/locations/Material__218.uasset new file mode 100644 index 0000000..d851404 Binary files /dev/null and b/Content/Model/locations/Material__218.uasset differ diff --git a/Content/Model/locations/Object_2.uasset b/Content/Model/locations/Object_2.uasset new file mode 100644 index 0000000..3c88d94 Binary files /dev/null and b/Content/Model/locations/Object_2.uasset differ diff --git a/Content/Model/locations/Object_3.uasset b/Content/Model/locations/Object_3.uasset new file mode 100644 index 0000000..874d56e Binary files /dev/null and b/Content/Model/locations/Object_3.uasset differ diff --git a/Content/Model/locations/PBR.uasset b/Content/Model/locations/PBR.uasset new file mode 100644 index 0000000..ac435ca Binary files /dev/null and b/Content/Model/locations/PBR.uasset differ diff --git a/Content/Model/locations/Piano_Base_Color.uasset b/Content/Model/locations/Piano_Base_Color.uasset new file mode 100644 index 0000000..1217b6a Binary files /dev/null and b/Content/Model/locations/Piano_Base_Color.uasset differ diff --git a/Content/Model/locations/Piano_FinalMesh1.uasset b/Content/Model/locations/Piano_FinalMesh1.uasset new file mode 100644 index 0000000..e4f40bf Binary files /dev/null and b/Content/Model/locations/Piano_FinalMesh1.uasset differ diff --git a/Content/Model/locations/Piano_UberFinall_AO-surfaceShader1SG-polySurface4.uasset b/Content/Model/locations/Piano_UberFinall_AO-surfaceShader1SG-polySurface4.uasset new file mode 100644 index 0000000..1bb6ec2 Binary files /dev/null and b/Content/Model/locations/Piano_UberFinall_AO-surfaceShader1SG-polySurface4.uasset differ diff --git a/Content/Model/locations/Plant.uasset b/Content/Model/locations/Plant.uasset new file mode 100644 index 0000000..3525461 Binary files /dev/null and b/Content/Model/locations/Plant.uasset differ diff --git a/Content/Model/locations/Plant_Pot_1_Plant_1.uasset b/Content/Model/locations/Plant_Pot_1_Plant_1.uasset new file mode 100644 index 0000000..98bc6de Binary files /dev/null and b/Content/Model/locations/Plant_Pot_1_Plant_1.uasset differ diff --git a/Content/Model/locations/Plant_Pot_1_Plant_BaseColor.uasset b/Content/Model/locations/Plant_Pot_1_Plant_BaseColor.uasset new file mode 100644 index 0000000..c425044 Binary files /dev/null and b/Content/Model/locations/Plant_Pot_1_Plant_BaseColor.uasset differ diff --git a/Content/Model/locations/Plant_Pot_1_Plant_Pot_1.uasset b/Content/Model/locations/Plant_Pot_1_Plant_Pot_1.uasset new file mode 100644 index 0000000..5af2c92 Binary files /dev/null and b/Content/Model/locations/Plant_Pot_1_Plant_Pot_1.uasset differ diff --git a/Content/Model/locations/PlayTubeMat.uasset b/Content/Model/locations/PlayTubeMat.uasset new file mode 100644 index 0000000..7b307e4 Binary files /dev/null and b/Content/Model/locations/PlayTubeMat.uasset differ diff --git a/Content/Model/locations/PlayTube_DefaultMaterial_BaseColor.uasset b/Content/Model/locations/PlayTube_DefaultMaterial_BaseColor.uasset new file mode 100644 index 0000000..e4149da Binary files /dev/null and b/Content/Model/locations/PlayTube_DefaultMaterial_BaseColor.uasset differ diff --git a/Content/Model/locations/PlayTube_DefaultMaterial_Normal.uasset b/Content/Model/locations/PlayTube_DefaultMaterial_Normal.uasset new file mode 100644 index 0000000..1f73d6c Binary files /dev/null and b/Content/Model/locations/PlayTube_DefaultMaterial_Normal.uasset differ diff --git a/Content/Model/locations/PlayTube_DefaultMaterial_Roughness.uasset b/Content/Model/locations/PlayTube_DefaultMaterial_Roughness.uasset new file mode 100644 index 0000000..8cc0dec Binary files /dev/null and b/Content/Model/locations/PlayTube_DefaultMaterial_Roughness.uasset differ diff --git a/Content/Model/locations/RGB_a9e7288669544941b7b87ad9caeee191_Hay_ALB.uasset b/Content/Model/locations/RGB_a9e7288669544941b7b87ad9caeee191_Hay_ALB.uasset new file mode 100644 index 0000000..6f8bad9 Binary files /dev/null and b/Content/Model/locations/RGB_a9e7288669544941b7b87ad9caeee191_Hay_ALB.uasset differ diff --git a/Content/Model/locations/R_d05d7164880b4facb8842e88e67ac3c7_Hay_AO.uasset b/Content/Model/locations/R_d05d7164880b4facb8842e88e67ac3c7_Hay_AO.uasset new file mode 100644 index 0000000..ca657f1 Binary files /dev/null and b/Content/Model/locations/R_d05d7164880b4facb8842e88e67ac3c7_Hay_AO.uasset differ diff --git a/Content/Model/locations/ShuttersWire_Mod01_Text.uasset b/Content/Model/locations/ShuttersWire_Mod01_Text.uasset new file mode 100644 index 0000000..84ab4ef Binary files /dev/null and b/Content/Model/locations/ShuttersWire_Mod01_Text.uasset differ diff --git a/Content/Model/locations/ShuttersWire_Mod01_Text_Albedo.uasset b/Content/Model/locations/ShuttersWire_Mod01_Text_Albedo.uasset new file mode 100644 index 0000000..9328247 Binary files /dev/null and b/Content/Model/locations/ShuttersWire_Mod01_Text_Albedo.uasset differ diff --git a/Content/Model/locations/ShuttersWire_Mod_01_SW_Model_01.uasset b/Content/Model/locations/ShuttersWire_Mod_01_SW_Model_01.uasset new file mode 100644 index 0000000..c62d59f Binary files /dev/null and b/Content/Model/locations/ShuttersWire_Mod_01_SW_Model_01.uasset differ diff --git a/Content/Model/locations/ShuttersWire_Mod_01_Wire.uasset b/Content/Model/locations/ShuttersWire_Mod_01_Wire.uasset new file mode 100644 index 0000000..f61db6b Binary files /dev/null and b/Content/Model/locations/ShuttersWire_Mod_01_Wire.uasset differ diff --git a/Content/Model/locations/Steel.uasset b/Content/Model/locations/Steel.uasset new file mode 100644 index 0000000..05a2059 Binary files /dev/null and b/Content/Model/locations/Steel.uasset differ diff --git a/Content/Model/locations/Waiting_Bench.uasset b/Content/Model/locations/Waiting_Bench.uasset new file mode 100644 index 0000000..3d88752 Binary files /dev/null and b/Content/Model/locations/Waiting_Bench.uasset differ diff --git a/Content/Model/locations/Waiting_Chair.uasset b/Content/Model/locations/Waiting_Chair.uasset new file mode 100644 index 0000000..779f6eb Binary files /dev/null and b/Content/Model/locations/Waiting_Chair.uasset differ diff --git a/Content/Model/locations/Waiting_Char_Waiting_Bench_BaseColor.uasset b/Content/Model/locations/Waiting_Char_Waiting_Bench_BaseColor.uasset new file mode 100644 index 0000000..a4c00a9 Binary files /dev/null and b/Content/Model/locations/Waiting_Char_Waiting_Bench_BaseColor.uasset differ diff --git a/Content/Model/locations/Waiting_Char_Waiting_Bench_Roughness.uasset b/Content/Model/locations/Waiting_Char_Waiting_Bench_Roughness.uasset new file mode 100644 index 0000000..09db280 Binary files /dev/null and b/Content/Model/locations/Waiting_Char_Waiting_Bench_Roughness.uasset differ diff --git a/Content/Model/locations/Washing_machine_AO_surfaceShader1SG_polySurface85SG.uasset b/Content/Model/locations/Washing_machine_AO_surfaceShader1SG_polySurface85SG.uasset new file mode 100644 index 0000000..fcaaa0e Binary files /dev/null and b/Content/Model/locations/Washing_machine_AO_surfaceShader1SG_polySurface85SG.uasset differ diff --git a/Content/Model/locations/ashtray_grp_mat.uasset b/Content/Model/locations/ashtray_grp_mat.uasset new file mode 100644 index 0000000..70013fd Binary files /dev/null and b/Content/Model/locations/ashtray_grp_mat.uasset differ diff --git a/Content/Model/locations/barrel.uasset b/Content/Model/locations/barrel.uasset new file mode 100644 index 0000000..8aadab1 Binary files /dev/null and b/Content/Model/locations/barrel.uasset differ diff --git a/Content/Model/locations/barrel_Base_Color.uasset b/Content/Model/locations/barrel_Base_Color.uasset new file mode 100644 index 0000000..d8a3455 Binary files /dev/null and b/Content/Model/locations/barrel_Base_Color.uasset differ diff --git a/Content/Model/locations/barrel_f_Object.uasset b/Content/Model/locations/barrel_f_Object.uasset new file mode 100644 index 0000000..d8c2812 Binary files /dev/null and b/Content/Model/locations/barrel_f_Object.uasset differ diff --git a/Content/Model/locations/barrel_f_lp005.uasset b/Content/Model/locations/barrel_f_lp005.uasset new file mode 100644 index 0000000..45fe85b Binary files /dev/null and b/Content/Model/locations/barrel_f_lp005.uasset differ diff --git a/Content/Model/locations/black.uasset b/Content/Model/locations/black.uasset new file mode 100644 index 0000000..5c9c77b Binary files /dev/null and b/Content/Model/locations/black.uasset differ diff --git a/Content/Model/locations/cigar_ashtray_used.uasset b/Content/Model/locations/cigar_ashtray_used.uasset new file mode 100644 index 0000000..a2042c6 Binary files /dev/null and b/Content/Model/locations/cigar_ashtray_used.uasset differ diff --git a/Content/Model/locations/cigar_ashtray_used_texture_0.uasset b/Content/Model/locations/cigar_ashtray_used_texture_0.uasset new file mode 100644 index 0000000..a753edd Binary files /dev/null and b/Content/Model/locations/cigar_ashtray_used_texture_0.uasset differ diff --git a/Content/Model/locations/cigar_ashtray_used_texture_1.uasset b/Content/Model/locations/cigar_ashtray_used_texture_1.uasset new file mode 100644 index 0000000..afc4d30 Binary files /dev/null and b/Content/Model/locations/cigar_ashtray_used_texture_1.uasset differ diff --git a/Content/Model/locations/cigar_ashtray_used_texture_2.uasset b/Content/Model/locations/cigar_ashtray_used_texture_2.uasset new file mode 100644 index 0000000..e75be95 Binary files /dev/null and b/Content/Model/locations/cigar_ashtray_used_texture_2.uasset differ diff --git a/Content/Model/locations/classic_plastic_chairs_texture_0.uasset b/Content/Model/locations/classic_plastic_chairs_texture_0.uasset new file mode 100644 index 0000000..43ef6c5 Binary files /dev/null and b/Content/Model/locations/classic_plastic_chairs_texture_0.uasset differ diff --git a/Content/Model/locations/classic_plastic_chairs_texture_1.uasset b/Content/Model/locations/classic_plastic_chairs_texture_1.uasset new file mode 100644 index 0000000..3f074a6 Binary files /dev/null and b/Content/Model/locations/classic_plastic_chairs_texture_1.uasset differ diff --git a/Content/Model/locations/classic_plastic_chairs_texture_2.uasset b/Content/Model/locations/classic_plastic_chairs_texture_2.uasset new file mode 100644 index 0000000..e2b9e39 Binary files /dev/null and b/Content/Model/locations/classic_plastic_chairs_texture_2.uasset differ diff --git a/Content/Model/locations/classic_plastic_chairs_texture_3.uasset b/Content/Model/locations/classic_plastic_chairs_texture_3.uasset new file mode 100644 index 0000000..188070a Binary files /dev/null and b/Content/Model/locations/classic_plastic_chairs_texture_3.uasset differ diff --git a/Content/Model/locations/classic_plastic_chairs_texture_4.uasset b/Content/Model/locations/classic_plastic_chairs_texture_4.uasset new file mode 100644 index 0000000..f5ddd6e Binary files /dev/null and b/Content/Model/locations/classic_plastic_chairs_texture_4.uasset differ diff --git a/Content/Model/locations/classic_plastic_chairs_texture_5.uasset b/Content/Model/locations/classic_plastic_chairs_texture_5.uasset new file mode 100644 index 0000000..401857f Binary files /dev/null and b/Content/Model/locations/classic_plastic_chairs_texture_5.uasset differ diff --git a/Content/Model/locations/default.uasset b/Content/Model/locations/default.uasset new file mode 100644 index 0000000..c9ceb53 Binary files /dev/null and b/Content/Model/locations/default.uasset differ diff --git a/Content/Model/locations/gold_hotel_luggage_trolley_fallout_miami.uasset b/Content/Model/locations/gold_hotel_luggage_trolley_fallout_miami.uasset new file mode 100644 index 0000000..3b1f25d Binary files /dev/null and b/Content/Model/locations/gold_hotel_luggage_trolley_fallout_miami.uasset differ diff --git a/Content/Model/locations/gold_hotel_luggage_trolley_fallout_miami_texture_0.uasset b/Content/Model/locations/gold_hotel_luggage_trolley_fallout_miami_texture_0.uasset new file mode 100644 index 0000000..a82de79 Binary files /dev/null and b/Content/Model/locations/gold_hotel_luggage_trolley_fallout_miami_texture_0.uasset differ diff --git a/Content/Model/locations/gold_hotel_luggage_trolley_fallout_miami_texture_1.uasset b/Content/Model/locations/gold_hotel_luggage_trolley_fallout_miami_texture_1.uasset new file mode 100644 index 0000000..f60f071 Binary files /dev/null and b/Content/Model/locations/gold_hotel_luggage_trolley_fallout_miami_texture_1.uasset differ diff --git a/Content/Model/locations/gold_hotel_luggage_trolley_fallout_miami_texture_2.uasset b/Content/Model/locations/gold_hotel_luggage_trolley_fallout_miami_texture_2.uasset new file mode 100644 index 0000000..5f223f6 Binary files /dev/null and b/Content/Model/locations/gold_hotel_luggage_trolley_fallout_miami_texture_2.uasset differ diff --git a/Content/Model/locations/initialShadingGroup.uasset b/Content/Model/locations/initialShadingGroup.uasset new file mode 100644 index 0000000..7463b61 Binary files /dev/null and b/Content/Model/locations/initialShadingGroup.uasset differ diff --git a/Content/Model/locations/internal_ground_ao_texture.uasset b/Content/Model/locations/internal_ground_ao_texture.uasset new file mode 100644 index 0000000..b34e4ee Binary files /dev/null and b/Content/Model/locations/internal_ground_ao_texture.uasset differ diff --git a/Content/Model/locations/lambert7.uasset b/Content/Model/locations/lambert7.uasset new file mode 100644 index 0000000..08a054f Binary files /dev/null and b/Content/Model/locations/lambert7.uasset differ diff --git a/Content/Model/locations/material.uasset b/Content/Model/locations/material.uasset new file mode 100644 index 0000000..ebdb355 Binary files /dev/null and b/Content/Model/locations/material.uasset differ diff --git a/Content/Model/locations/metal_door_of_the_sewer.uasset b/Content/Model/locations/metal_door_of_the_sewer.uasset new file mode 100644 index 0000000..94495b5 Binary files /dev/null and b/Content/Model/locations/metal_door_of_the_sewer.uasset differ diff --git a/Content/Model/locations/object_0.uasset b/Content/Model/locations/object_0.uasset new file mode 100644 index 0000000..dfbd120 Binary files /dev/null and b/Content/Model/locations/object_0.uasset differ diff --git a/Content/Model/locations/pallet.uasset b/Content/Model/locations/pallet.uasset new file mode 100644 index 0000000..f1c639d Binary files /dev/null and b/Content/Model/locations/pallet.uasset differ diff --git a/Content/Model/locations/pallet1.uasset b/Content/Model/locations/pallet1.uasset new file mode 100644 index 0000000..e005fd9 Binary files /dev/null and b/Content/Model/locations/pallet1.uasset differ diff --git a/Content/Model/locations/pallet_Albedo.uasset b/Content/Model/locations/pallet_Albedo.uasset new file mode 100644 index 0000000..bbdd90f Binary files /dev/null and b/Content/Model/locations/pallet_Albedo.uasset differ diff --git a/Content/Model/locations/pati.uasset b/Content/Model/locations/pati.uasset new file mode 100644 index 0000000..0851eb2 Binary files /dev/null and b/Content/Model/locations/pati.uasset differ diff --git a/Content/Model/locations/pet-bowl_Metal_0.uasset b/Content/Model/locations/pet-bowl_Metal_0.uasset new file mode 100644 index 0000000..d5e18fa Binary files /dev/null and b/Content/Model/locations/pet-bowl_Metal_0.uasset differ diff --git a/Content/Model/locations/pet-bowl_black_0.uasset b/Content/Model/locations/pet-bowl_black_0.uasset new file mode 100644 index 0000000..cd1564b Binary files /dev/null and b/Content/Model/locations/pet-bowl_black_0.uasset differ diff --git a/Content/Model/locations/pet_bowl_texture_0.uasset b/Content/Model/locations/pet_bowl_texture_0.uasset new file mode 100644 index 0000000..f691c56 Binary files /dev/null and b/Content/Model/locations/pet_bowl_texture_0.uasset differ diff --git a/Content/Model/locations/pet_bowl_texture_1.uasset b/Content/Model/locations/pet_bowl_texture_1.uasset new file mode 100644 index 0000000..9625f86 Binary files /dev/null and b/Content/Model/locations/pet_bowl_texture_1.uasset differ diff --git a/Content/Model/locations/pet_bowl_texture_2.uasset b/Content/Model/locations/pet_bowl_texture_2.uasset new file mode 100644 index 0000000..581c9db Binary files /dev/null and b/Content/Model/locations/pet_bowl_texture_2.uasset differ diff --git a/Content/Model/locations/pet_bowl_texture_3.uasset b/Content/Model/locations/pet_bowl_texture_3.uasset new file mode 100644 index 0000000..6e881f9 Binary files /dev/null and b/Content/Model/locations/pet_bowl_texture_3.uasset differ diff --git a/Content/Model/locations/pet_bowl_texture_4.uasset b/Content/Model/locations/pet_bowl_texture_4.uasset new file mode 100644 index 0000000..a9cde5f Binary files /dev/null and b/Content/Model/locations/pet_bowl_texture_4.uasset differ diff --git a/Content/Model/locations/plastic.uasset b/Content/Model/locations/plastic.uasset new file mode 100644 index 0000000..0bd42fc Binary files /dev/null and b/Content/Model/locations/plastic.uasset differ diff --git a/Content/Model/locations/toy_ball.uasset b/Content/Model/locations/toy_ball.uasset new file mode 100644 index 0000000..bb099d6 Binary files /dev/null and b/Content/Model/locations/toy_ball.uasset differ diff --git a/Content/Model/locations/toy_ball1.uasset b/Content/Model/locations/toy_ball1.uasset new file mode 100644 index 0000000..7b0342a Binary files /dev/null and b/Content/Model/locations/toy_ball1.uasset differ diff --git a/Content/Model/locations/trampoline_2_Texture.uasset b/Content/Model/locations/trampoline_2_Texture.uasset new file mode 100644 index 0000000..ab7983b Binary files /dev/null and b/Content/Model/locations/trampoline_2_Texture.uasset differ diff --git a/Content/Model/locations/washing_machine_texture_0.uasset b/Content/Model/locations/washing_machine_texture_0.uasset new file mode 100644 index 0000000..27cc68e Binary files /dev/null and b/Content/Model/locations/washing_machine_texture_0.uasset differ diff --git a/Content/Model/locations/washing_machine_texture_1.uasset b/Content/Model/locations/washing_machine_texture_1.uasset new file mode 100644 index 0000000..da4cbf7 Binary files /dev/null and b/Content/Model/locations/washing_machine_texture_1.uasset differ diff --git a/Content/Model/locations/washing_machine_texture_2.uasset b/Content/Model/locations/washing_machine_texture_2.uasset new file mode 100644 index 0000000..c52e1de Binary files /dev/null and b/Content/Model/locations/washing_machine_texture_2.uasset differ diff --git a/Content/Model/locations/washing_machine_texture_3.uasset b/Content/Model/locations/washing_machine_texture_3.uasset new file mode 100644 index 0000000..ebdba19 Binary files /dev/null and b/Content/Model/locations/washing_machine_texture_3.uasset differ diff --git a/Content/Model/locations/washing_machine_texture_4.uasset b/Content/Model/locations/washing_machine_texture_4.uasset new file mode 100644 index 0000000..f6f3b85 Binary files /dev/null and b/Content/Model/locations/washing_machine_texture_4.uasset differ diff --git a/Content/Model/locations/washing_machine_texture_5.uasset b/Content/Model/locations/washing_machine_texture_5.uasset new file mode 100644 index 0000000..e827094 Binary files /dev/null and b/Content/Model/locations/washing_machine_texture_5.uasset differ diff --git a/Content/Model/locations/water-inflatable_albedo.uasset b/Content/Model/locations/water-inflatable_albedo.uasset new file mode 100644 index 0000000..108980f Binary files /dev/null and b/Content/Model/locations/water-inflatable_albedo.uasset differ diff --git a/Content/Model/locations/барабан/Drum_Set.uasset b/Content/Model/locations/барабан/Drum_Set.uasset new file mode 100644 index 0000000..a6b898b Binary files /dev/null and b/Content/Model/locations/барабан/Drum_Set.uasset differ diff --git a/Content/Model/locations/барабан/Drum_Set_M_DrumKit_MainParts_BaseColor.uasset b/Content/Model/locations/барабан/Drum_Set_M_DrumKit_MainParts_BaseColor.uasset new file mode 100644 index 0000000..522afea Binary files /dev/null and b/Content/Model/locations/барабан/Drum_Set_M_DrumKit_MainParts_BaseColor.uasset differ diff --git a/Content/Model/locations/барабан/Drum_Set_M_DrumKit_MainParts_Normal.uasset b/Content/Model/locations/барабан/Drum_Set_M_DrumKit_MainParts_Normal.uasset new file mode 100644 index 0000000..622cfb4 Binary files /dev/null and b/Content/Model/locations/барабан/Drum_Set_M_DrumKit_MainParts_Normal.uasset differ diff --git a/Content/Model/locations/барабан/Drum_Set_M_DrumKit_MainParts_Roughness.uasset b/Content/Model/locations/барабан/Drum_Set_M_DrumKit_MainParts_Roughness.uasset new file mode 100644 index 0000000..09b8951 Binary files /dev/null and b/Content/Model/locations/барабан/Drum_Set_M_DrumKit_MainParts_Roughness.uasset differ diff --git a/Content/Model/locations/барабан/Drum_Set_M_DrumKit_MetalBits_BaseColor.uasset b/Content/Model/locations/барабан/Drum_Set_M_DrumKit_MetalBits_BaseColor.uasset new file mode 100644 index 0000000..5ef3f0c Binary files /dev/null and b/Content/Model/locations/барабан/Drum_Set_M_DrumKit_MetalBits_BaseColor.uasset differ diff --git a/Content/Model/locations/барабан/Drum_Set_M_DrumKit_MetalBits_Normal.uasset b/Content/Model/locations/барабан/Drum_Set_M_DrumKit_MetalBits_Normal.uasset new file mode 100644 index 0000000..9aced11 Binary files /dev/null and b/Content/Model/locations/барабан/Drum_Set_M_DrumKit_MetalBits_Normal.uasset differ diff --git a/Content/Model/locations/барабан/Drum_Set_M_DrumKit_MetalBits_Roughness.uasset b/Content/Model/locations/барабан/Drum_Set_M_DrumKit_MetalBits_Roughness.uasset new file mode 100644 index 0000000..9178af2 Binary files /dev/null and b/Content/Model/locations/барабан/Drum_Set_M_DrumKit_MetalBits_Roughness.uasset differ diff --git a/Content/Model/locations/барабан/M_DrumKit_MainParts_001.uasset b/Content/Model/locations/барабан/M_DrumKit_MainParts_001.uasset new file mode 100644 index 0000000..f5fede0 Binary files /dev/null and b/Content/Model/locations/барабан/M_DrumKit_MainParts_001.uasset differ diff --git a/Content/Model/locations/барабан/M_DrumKit_MetalBits_001.uasset b/Content/Model/locations/барабан/M_DrumKit_MetalBits_001.uasset new file mode 100644 index 0000000..a9be894 Binary files /dev/null and b/Content/Model/locations/барабан/M_DrumKit_MetalBits_001.uasset differ diff --git a/Content/Model/locations/батут.uasset b/Content/Model/locations/батут.uasset new file mode 100644 index 0000000..1858092 Binary files /dev/null and b/Content/Model/locations/батут.uasset differ diff --git a/Content/Model/locations/планшет.uasset b/Content/Model/locations/планшет.uasset new file mode 100644 index 0000000..629b452 Binary files /dev/null and b/Content/Model/locations/планшет.uasset differ diff --git a/Content/Model/locations/сено.uasset b/Content/Model/locations/сено.uasset new file mode 100644 index 0000000..c83e7d9 Binary files /dev/null and b/Content/Model/locations/сено.uasset differ diff --git a/Content/Model/locations/струба.uasset b/Content/Model/locations/струба.uasset new file mode 100644 index 0000000..331c462 Binary files /dev/null and b/Content/Model/locations/струба.uasset differ diff --git a/Content/Model/locations/труба.uasset b/Content/Model/locations/труба.uasset new file mode 100644 index 0000000..292eaaf Binary files /dev/null and b/Content/Model/locations/труба.uasset differ diff --git a/Content/Model/material.uasset b/Content/Model/material.uasset new file mode 100644 index 0000000..1e3bc8d Binary files /dev/null and b/Content/Model/material.uasset differ diff --git a/Content/Model/material_1.uasset b/Content/Model/material_1.uasset new file mode 100644 index 0000000..0b15e79 Binary files /dev/null and b/Content/Model/material_1.uasset differ diff --git a/Content/Model/material_2.uasset b/Content/Model/material_2.uasset new file mode 100644 index 0000000..f0a1e5c Binary files /dev/null and b/Content/Model/material_2.uasset differ diff --git a/Content/Model/material_3.uasset b/Content/Model/material_3.uasset new file mode 100644 index 0000000..476e5d5 Binary files /dev/null and b/Content/Model/material_3.uasset differ diff --git a/Content/Model/material_4.uasset b/Content/Model/material_4.uasset new file mode 100644 index 0000000..8496940 Binary files /dev/null and b/Content/Model/material_4.uasset differ diff --git a/Content/Model/material_5.uasset b/Content/Model/material_5.uasset new file mode 100644 index 0000000..c0b8643 Binary files /dev/null and b/Content/Model/material_5.uasset differ diff --git a/Content/Model/sofa_m.uasset b/Content/Model/sofa_m.uasset new file mode 100644 index 0000000..eb5f661 Binary files /dev/null and b/Content/Model/sofa_m.uasset differ diff --git a/Content/Model/table_m.uasset b/Content/Model/table_m.uasset new file mode 100644 index 0000000..dd46a4f Binary files /dev/null and b/Content/Model/table_m.uasset differ diff --git a/Content/Model/tv.uasset b/Content/Model/tv.uasset new file mode 100644 index 0000000..cc5159f Binary files /dev/null and b/Content/Model/tv.uasset differ diff --git a/Content/Model/tv_display_off.uasset b/Content/Model/tv_display_off.uasset new file mode 100644 index 0000000..0a98a77 Binary files /dev/null and b/Content/Model/tv_display_off.uasset differ diff --git a/Content/Model/tv_m.uasset b/Content/Model/tv_m.uasset new file mode 100644 index 0000000..768127c Binary files /dev/null and b/Content/Model/tv_m.uasset differ diff --git a/Content/Model/untitled45.uasset b/Content/Model/untitled45.uasset new file mode 100644 index 0000000..169efd3 Binary files /dev/null and b/Content/Model/untitled45.uasset differ diff --git a/Content/Model/wall_ready_for_construction_texture_0.uasset b/Content/Model/wall_ready_for_construction_texture_0.uasset new file mode 100644 index 0000000..1da5af5 Binary files /dev/null and b/Content/Model/wall_ready_for_construction_texture_0.uasset differ diff --git a/Content/Model/wall_ready_for_construction_texture_1.uasset b/Content/Model/wall_ready_for_construction_texture_1.uasset new file mode 100644 index 0000000..a252ddd Binary files /dev/null and b/Content/Model/wall_ready_for_construction_texture_1.uasset differ diff --git a/Content/Model/wall_ready_for_construction_texture_10.uasset b/Content/Model/wall_ready_for_construction_texture_10.uasset new file mode 100644 index 0000000..41bcf18 Binary files /dev/null and b/Content/Model/wall_ready_for_construction_texture_10.uasset differ diff --git a/Content/Model/wall_ready_for_construction_texture_11.uasset b/Content/Model/wall_ready_for_construction_texture_11.uasset new file mode 100644 index 0000000..34602ca Binary files /dev/null and b/Content/Model/wall_ready_for_construction_texture_11.uasset differ diff --git a/Content/Model/wall_ready_for_construction_texture_12.uasset b/Content/Model/wall_ready_for_construction_texture_12.uasset new file mode 100644 index 0000000..270c9a1 Binary files /dev/null and b/Content/Model/wall_ready_for_construction_texture_12.uasset differ diff --git a/Content/Model/wall_ready_for_construction_texture_13.uasset b/Content/Model/wall_ready_for_construction_texture_13.uasset new file mode 100644 index 0000000..39af500 Binary files /dev/null and b/Content/Model/wall_ready_for_construction_texture_13.uasset differ diff --git a/Content/Model/wall_ready_for_construction_texture_14.uasset b/Content/Model/wall_ready_for_construction_texture_14.uasset new file mode 100644 index 0000000..e4d2bf7 Binary files /dev/null and b/Content/Model/wall_ready_for_construction_texture_14.uasset differ diff --git a/Content/Model/wall_ready_for_construction_texture_15.uasset b/Content/Model/wall_ready_for_construction_texture_15.uasset new file mode 100644 index 0000000..67c938e Binary files /dev/null and b/Content/Model/wall_ready_for_construction_texture_15.uasset differ diff --git a/Content/Model/wall_ready_for_construction_texture_16.uasset b/Content/Model/wall_ready_for_construction_texture_16.uasset new file mode 100644 index 0000000..82efe52 Binary files /dev/null and b/Content/Model/wall_ready_for_construction_texture_16.uasset differ diff --git a/Content/Model/wall_ready_for_construction_texture_17.uasset b/Content/Model/wall_ready_for_construction_texture_17.uasset new file mode 100644 index 0000000..0ba9402 Binary files /dev/null and b/Content/Model/wall_ready_for_construction_texture_17.uasset differ diff --git a/Content/Model/wall_ready_for_construction_texture_2.uasset b/Content/Model/wall_ready_for_construction_texture_2.uasset new file mode 100644 index 0000000..136e520 Binary files /dev/null and b/Content/Model/wall_ready_for_construction_texture_2.uasset differ diff --git a/Content/Model/wall_ready_for_construction_texture_3.uasset b/Content/Model/wall_ready_for_construction_texture_3.uasset new file mode 100644 index 0000000..d362a87 Binary files /dev/null and b/Content/Model/wall_ready_for_construction_texture_3.uasset differ diff --git a/Content/Model/wall_ready_for_construction_texture_4.uasset b/Content/Model/wall_ready_for_construction_texture_4.uasset new file mode 100644 index 0000000..ec26a4a Binary files /dev/null and b/Content/Model/wall_ready_for_construction_texture_4.uasset differ diff --git a/Content/Model/wall_ready_for_construction_texture_5.uasset b/Content/Model/wall_ready_for_construction_texture_5.uasset new file mode 100644 index 0000000..fd1d1ab Binary files /dev/null and b/Content/Model/wall_ready_for_construction_texture_5.uasset differ diff --git a/Content/Model/wall_ready_for_construction_texture_6.uasset b/Content/Model/wall_ready_for_construction_texture_6.uasset new file mode 100644 index 0000000..3be1c45 Binary files /dev/null and b/Content/Model/wall_ready_for_construction_texture_6.uasset differ diff --git a/Content/Model/wall_ready_for_construction_texture_7.uasset b/Content/Model/wall_ready_for_construction_texture_7.uasset new file mode 100644 index 0000000..702600f Binary files /dev/null and b/Content/Model/wall_ready_for_construction_texture_7.uasset differ diff --git a/Content/Model/wall_ready_for_construction_texture_8.uasset b/Content/Model/wall_ready_for_construction_texture_8.uasset new file mode 100644 index 0000000..1c971ca Binary files /dev/null and b/Content/Model/wall_ready_for_construction_texture_8.uasset differ diff --git a/Content/Model/wall_ready_for_construction_texture_9.uasset b/Content/Model/wall_ready_for_construction_texture_9.uasset new file mode 100644 index 0000000..cf82596 Binary files /dev/null and b/Content/Model/wall_ready_for_construction_texture_9.uasset differ diff --git a/Content/Model/wet_floor_sign.uasset b/Content/Model/wet_floor_sign.uasset new file mode 100644 index 0000000..5a28a0e Binary files /dev/null and b/Content/Model/wet_floor_sign.uasset differ diff --git a/Content/Model/wet_floor_sign_1001_BaseColor.uasset b/Content/Model/wet_floor_sign_1001_BaseColor.uasset new file mode 100644 index 0000000..f27f8f5 Binary files /dev/null and b/Content/Model/wet_floor_sign_1001_BaseColor.uasset differ diff --git a/Content/Model/диван.uasset b/Content/Model/диван.uasset new file mode 100644 index 0000000..b171e35 Binary files /dev/null and b/Content/Model/диван.uasset differ diff --git a/Content/PNG_images/PNG_Crack1.uasset b/Content/PNG_images/PNG_Crack1.uasset new file mode 100644 index 0000000..1ee130c Binary files /dev/null and b/Content/PNG_images/PNG_Crack1.uasset differ diff --git a/Content/PNG_images/png_crack.uasset b/Content/PNG_images/png_crack.uasset new file mode 100644 index 0000000..3f08168 Binary files /dev/null and b/Content/PNG_images/png_crack.uasset differ diff --git a/Content/PlayerData/Dust/Dust.uasset b/Content/PlayerData/Dust/Dust.uasset new file mode 100644 index 0000000..d8945f5 Binary files /dev/null and b/Content/PlayerData/Dust/Dust.uasset differ diff --git a/Content/PlayerData/Dust/Dust_.uasset b/Content/PlayerData/Dust/Dust_.uasset new file mode 100644 index 0000000..aeed490 Binary files /dev/null and b/Content/PlayerData/Dust/Dust_.uasset differ diff --git a/Content/PlayerData/Dust/Dust_Material.uasset b/Content/PlayerData/Dust/Dust_Material.uasset new file mode 100644 index 0000000..b47b617 Binary files /dev/null and b/Content/PlayerData/Dust/Dust_Material.uasset differ diff --git a/Content/PlayerData/Scripts/InteractMesh.uasset b/Content/PlayerData/Scripts/InteractMesh.uasset new file mode 100644 index 0000000..fe54847 Binary files /dev/null and b/Content/PlayerData/Scripts/InteractMesh.uasset differ diff --git a/Content/PlayerData/Scripts/Steps/шаги.uasset b/Content/PlayerData/Scripts/Steps/шаги.uasset new file mode 100644 index 0000000..3a0f9ad Binary files /dev/null and b/Content/PlayerData/Scripts/Steps/шаги.uasset differ diff --git a/Content/PlayerData/Scripts/Steps/шаги_1.uasset b/Content/PlayerData/Scripts/Steps/шаги_1.uasset new file mode 100644 index 0000000..3b49861 Binary files /dev/null and b/Content/PlayerData/Scripts/Steps/шаги_1.uasset differ diff --git a/Content/PlayerData/Scripts/Valera_BP.uasset b/Content/PlayerData/Scripts/Valera_BP.uasset new file mode 100644 index 0000000..b8c3f2e Binary files /dev/null and b/Content/PlayerData/Scripts/Valera_BP.uasset differ diff --git a/Content/PlayerData/Scripts/Valera_Controller.uasset b/Content/PlayerData/Scripts/Valera_Controller.uasset new file mode 100644 index 0000000..2d1d616 Binary files /dev/null and b/Content/PlayerData/Scripts/Valera_Controller.uasset differ diff --git a/Content/PlayerData/Scripts/Valera_GM.uasset b/Content/PlayerData/Scripts/Valera_GM.uasset new file mode 100644 index 0000000..908ac89 Binary files /dev/null and b/Content/PlayerData/Scripts/Valera_GM.uasset differ diff --git a/Content/PlayerData/Scripts/Valve/Material_001.uasset b/Content/PlayerData/Scripts/Valve/Material_001.uasset new file mode 100644 index 0000000..3d008ec Binary files /dev/null and b/Content/PlayerData/Scripts/Valve/Material_001.uasset differ diff --git a/Content/PlayerData/Scripts/Valve/OpenGate.uasset b/Content/PlayerData/Scripts/Valve/OpenGate.uasset new file mode 100644 index 0000000..0a7275b Binary files /dev/null and b/Content/PlayerData/Scripts/Valve/OpenGate.uasset differ diff --git a/Content/PlayerData/Scripts/Valve/Valve.uasset b/Content/PlayerData/Scripts/Valve/Valve.uasset new file mode 100644 index 0000000..3ec5925 Binary files /dev/null and b/Content/PlayerData/Scripts/Valve/Valve.uasset differ diff --git a/Content/PlayerData/Scripts/Valve/ValveOpen.uasset b/Content/PlayerData/Scripts/Valve/ValveOpen.uasset new file mode 100644 index 0000000..81343dc Binary files /dev/null and b/Content/PlayerData/Scripts/Valve/ValveOpen.uasset differ diff --git a/Content/PlayerData/Scripts/Valve/ValveReciveFunction.uasset b/Content/PlayerData/Scripts/Valve/ValveReciveFunction.uasset new file mode 100644 index 0000000..38c9db1 Binary files /dev/null and b/Content/PlayerData/Scripts/Valve/ValveReciveFunction.uasset differ diff --git a/Content/PlayerData/Scripts/flash/3D_model_flash/DefaultMaterial.uasset b/Content/PlayerData/Scripts/flash/3D_model_flash/DefaultMaterial.uasset new file mode 100644 index 0000000..b01f3ec Binary files /dev/null and b/Content/PlayerData/Scripts/flash/3D_model_flash/DefaultMaterial.uasset differ diff --git a/Content/PlayerData/Scripts/flash/3D_model_flash/Flash_light.uasset b/Content/PlayerData/Scripts/flash/3D_model_flash/Flash_light.uasset new file mode 100644 index 0000000..7c45bb4 Binary files /dev/null and b/Content/PlayerData/Scripts/flash/3D_model_flash/Flash_light.uasset differ diff --git a/Content/PlayerData/Scripts/flash/3D_model_flash/defaultMaterial1.uasset b/Content/PlayerData/Scripts/flash/3D_model_flash/defaultMaterial1.uasset new file mode 100644 index 0000000..1b4c0cb Binary files /dev/null and b/Content/PlayerData/Scripts/flash/3D_model_flash/defaultMaterial1.uasset differ diff --git a/Content/PlayerData/Scripts/flash/3D_model_flash/defaultMaterial12.uasset b/Content/PlayerData/Scripts/flash/3D_model_flash/defaultMaterial12.uasset new file mode 100644 index 0000000..f5e63b2 Binary files /dev/null and b/Content/PlayerData/Scripts/flash/3D_model_flash/defaultMaterial12.uasset differ diff --git a/Content/PlayerData/Scripts/flash/3D_model_flash/horror_game_flashlight_download_game-ready_texture_0.uasset b/Content/PlayerData/Scripts/flash/3D_model_flash/horror_game_flashlight_download_game-ready_texture_0.uasset new file mode 100644 index 0000000..0c04645 Binary files /dev/null and b/Content/PlayerData/Scripts/flash/3D_model_flash/horror_game_flashlight_download_game-ready_texture_0.uasset differ diff --git a/Content/PlayerData/Scripts/flash/3D_model_flash/horror_game_flashlight_download_game-ready_texture_1.uasset b/Content/PlayerData/Scripts/flash/3D_model_flash/horror_game_flashlight_download_game-ready_texture_1.uasset new file mode 100644 index 0000000..9b4f4e0 Binary files /dev/null and b/Content/PlayerData/Scripts/flash/3D_model_flash/horror_game_flashlight_download_game-ready_texture_1.uasset differ diff --git a/Content/PlayerData/Scripts/flash/3D_model_flash/horror_game_flashlight_download_game-ready_texture_2.uasset b/Content/PlayerData/Scripts/flash/3D_model_flash/horror_game_flashlight_download_game-ready_texture_2.uasset new file mode 100644 index 0000000..f5d4c06 Binary files /dev/null and b/Content/PlayerData/Scripts/flash/3D_model_flash/horror_game_flashlight_download_game-ready_texture_2.uasset differ diff --git a/Content/PlayerData/Scripts/flash/3D_model_flash/horror_game_flashlight_download_game-ready_texture_3.uasset b/Content/PlayerData/Scripts/flash/3D_model_flash/horror_game_flashlight_download_game-ready_texture_3.uasset new file mode 100644 index 0000000..8c140cb Binary files /dev/null and b/Content/PlayerData/Scripts/flash/3D_model_flash/horror_game_flashlight_download_game-ready_texture_3.uasset differ diff --git a/Content/PlayerData/Scripts/flash/Sound_flash/flashlight-off.uasset b/Content/PlayerData/Scripts/flash/Sound_flash/flashlight-off.uasset new file mode 100644 index 0000000..ae0b2db Binary files /dev/null and b/Content/PlayerData/Scripts/flash/Sound_flash/flashlight-off.uasset differ diff --git a/Content/PlayerData/Scripts/flash/Sound_flash/flashlight-on.uasset b/Content/PlayerData/Scripts/flash/Sound_flash/flashlight-on.uasset new file mode 100644 index 0000000..879134b Binary files /dev/null and b/Content/PlayerData/Scripts/flash/Sound_flash/flashlight-on.uasset differ diff --git a/Content/PlayerData/Scripts/flash/Sound_flash/Взяли_фонарик.uasset b/Content/PlayerData/Scripts/flash/Sound_flash/Взяли_фонарик.uasset new file mode 100644 index 0000000..b39b7c6 Binary files /dev/null and b/Content/PlayerData/Scripts/flash/Sound_flash/Взяли_фонарик.uasset differ diff --git a/Content/PlayerData/Scripts/flash/textures_Flash/flash_light_textures.uasset b/Content/PlayerData/Scripts/flash/textures_Flash/flash_light_textures.uasset new file mode 100644 index 0000000..79f61c5 Binary files /dev/null and b/Content/PlayerData/Scripts/flash/textures_Flash/flash_light_textures.uasset differ diff --git a/Content/PlayerData/Scripts/flash/textures_Flash/flash_light_textures_Mat_2.uasset b/Content/PlayerData/Scripts/flash/textures_Flash/flash_light_textures_Mat_2.uasset new file mode 100644 index 0000000..efa656d Binary files /dev/null and b/Content/PlayerData/Scripts/flash/textures_Flash/flash_light_textures_Mat_2.uasset differ diff --git a/Content/PlayerData/Scripts/ladder/AO.uasset b/Content/PlayerData/Scripts/ladder/AO.uasset new file mode 100644 index 0000000..761f16b Binary files /dev/null and b/Content/PlayerData/Scripts/ladder/AO.uasset differ diff --git a/Content/PlayerData/Scripts/ladder/Ladder.uasset b/Content/PlayerData/Scripts/ladder/Ladder.uasset new file mode 100644 index 0000000..1575cff Binary files /dev/null and b/Content/PlayerData/Scripts/ladder/Ladder.uasset differ diff --git a/Content/PlayerData/Scripts/ladder/LadderULayout.uasset b/Content/PlayerData/Scripts/ladder/LadderULayout.uasset new file mode 100644 index 0000000..b152b2e Binary files /dev/null and b/Content/PlayerData/Scripts/ladder/LadderULayout.uasset differ diff --git a/Content/PlayerData/Scripts/ladder/Material_001.uasset b/Content/PlayerData/Scripts/ladder/Material_001.uasset new file mode 100644 index 0000000..0b17b6f Binary files /dev/null and b/Content/PlayerData/Scripts/ladder/Material_001.uasset differ diff --git a/Content/PlayerData/Scripts/ladder/NormalMap.uasset b/Content/PlayerData/Scripts/ladder/NormalMap.uasset new file mode 100644 index 0000000..76c2ff9 Binary files /dev/null and b/Content/PlayerData/Scripts/ladder/NormalMap.uasset differ diff --git a/Content/PlayerData/Scripts/ladder/hEIGHTmAP.uasset b/Content/PlayerData/Scripts/ladder/hEIGHTmAP.uasset new file mode 100644 index 0000000..eb696b4 Binary files /dev/null and b/Content/PlayerData/Scripts/ladder/hEIGHTmAP.uasset differ diff --git a/Content/PlayerData/Scripts/ladder/ladder_BP.uasset b/Content/PlayerData/Scripts/ladder/ladder_BP.uasset new file mode 100644 index 0000000..1957371 Binary files /dev/null and b/Content/PlayerData/Scripts/ladder/ladder_BP.uasset differ diff --git a/Content/PlayerData/Scripts/lever/Doors_BP.uasset b/Content/PlayerData/Scripts/lever/Doors_BP.uasset new file mode 100644 index 0000000..44eda45 Binary files /dev/null and b/Content/PlayerData/Scripts/lever/Doors_BP.uasset differ diff --git a/Content/PlayerData/Scripts/lever/lever_Bp.uasset b/Content/PlayerData/Scripts/lever/lever_Bp.uasset new file mode 100644 index 0000000..3dc855c Binary files /dev/null and b/Content/PlayerData/Scripts/lever/lever_Bp.uasset differ diff --git a/Content/PlayerData/Scripts/lever/lever_Lever.uasset b/Content/PlayerData/Scripts/lever/lever_Lever.uasset new file mode 100644 index 0000000..b49c834 Binary files /dev/null and b/Content/PlayerData/Scripts/lever/lever_Lever.uasset differ diff --git a/Content/PlayerData/Scripts/lever/lever_Lever_001.uasset b/Content/PlayerData/Scripts/lever/lever_Lever_001.uasset new file mode 100644 index 0000000..8e2ebb7 Binary files /dev/null and b/Content/PlayerData/Scripts/lever/lever_Lever_001.uasset differ diff --git a/Content/PlayerData/Scripts/steps_/material_0.uasset b/Content/PlayerData/Scripts/steps_/material_0.uasset new file mode 100644 index 0000000..0027fd5 Binary files /dev/null and b/Content/PlayerData/Scripts/steps_/material_0.uasset differ diff --git a/Content/PlayerData/Scripts/steps_/steps_untextured.uasset b/Content/PlayerData/Scripts/steps_/steps_untextured.uasset new file mode 100644 index 0000000..daff2fe Binary files /dev/null and b/Content/PlayerData/Scripts/steps_/steps_untextured.uasset differ diff --git a/Content/PlayerData/Scripts/toilet/Default.uasset b/Content/PlayerData/Scripts/toilet/Default.uasset new file mode 100644 index 0000000..b611922 Binary files /dev/null and b/Content/PlayerData/Scripts/toilet/Default.uasset differ diff --git a/Content/PlayerData/Scripts/toilet/M_Toilet.uasset b/Content/PlayerData/Scripts/toilet/M_Toilet.uasset new file mode 100644 index 0000000..82192c8 Binary files /dev/null and b/Content/PlayerData/Scripts/toilet/M_Toilet.uasset differ diff --git a/Content/PlayerData/Scripts/toilet/Toilet.uasset b/Content/PlayerData/Scripts/toilet/Toilet.uasset new file mode 100644 index 0000000..dee8962 Binary files /dev/null and b/Content/PlayerData/Scripts/toilet/Toilet.uasset differ diff --git a/Content/PlayerData/Scripts/toilet/Toilet_2.uasset b/Content/PlayerData/Scripts/toilet/Toilet_2.uasset new file mode 100644 index 0000000..799b2a8 Binary files /dev/null and b/Content/PlayerData/Scripts/toilet/Toilet_2.uasset differ diff --git a/Content/PlayerData/Scripts/toilet/dirty_toilet_texture_0.uasset b/Content/PlayerData/Scripts/toilet/dirty_toilet_texture_0.uasset new file mode 100644 index 0000000..0654612 Binary files /dev/null and b/Content/PlayerData/Scripts/toilet/dirty_toilet_texture_0.uasset differ diff --git a/Content/PlayerData/Scripts/toilet/dirty_toilet_texture_1.uasset b/Content/PlayerData/Scripts/toilet/dirty_toilet_texture_1.uasset new file mode 100644 index 0000000..3062ff2 Binary files /dev/null and b/Content/PlayerData/Scripts/toilet/dirty_toilet_texture_1.uasset differ diff --git a/Content/PlayerData/Scripts/toilet/dirty_toilet_texture_2.uasset b/Content/PlayerData/Scripts/toilet/dirty_toilet_texture_2.uasset new file mode 100644 index 0000000..9e6c980 Binary files /dev/null and b/Content/PlayerData/Scripts/toilet/dirty_toilet_texture_2.uasset differ diff --git a/Content/PlayerData/Scripts/toilet/flushing_the_toilet.uasset b/Content/PlayerData/Scripts/toilet/flushing_the_toilet.uasset new file mode 100644 index 0000000..e2d56bb Binary files /dev/null and b/Content/PlayerData/Scripts/toilet/flushing_the_toilet.uasset differ diff --git a/Content/PlayerData/Scripts/toilet/game_ready_-_dirty_old_toilet_texture_0.uasset b/Content/PlayerData/Scripts/toilet/game_ready_-_dirty_old_toilet_texture_0.uasset new file mode 100644 index 0000000..6c96113 Binary files /dev/null and b/Content/PlayerData/Scripts/toilet/game_ready_-_dirty_old_toilet_texture_0.uasset differ diff --git a/Content/PlayerData/Scripts/toilet/game_ready_-_dirty_old_toilet_texture_1.uasset b/Content/PlayerData/Scripts/toilet/game_ready_-_dirty_old_toilet_texture_1.uasset new file mode 100644 index 0000000..5e8fa8d Binary files /dev/null and b/Content/PlayerData/Scripts/toilet/game_ready_-_dirty_old_toilet_texture_1.uasset differ diff --git a/Content/PlayerData/Scripts/toilet/game_ready_-_dirty_old_toilet_texture_2.uasset b/Content/PlayerData/Scripts/toilet/game_ready_-_dirty_old_toilet_texture_2.uasset new file mode 100644 index 0000000..be26873 Binary files /dev/null and b/Content/PlayerData/Scripts/toilet/game_ready_-_dirty_old_toilet_texture_2.uasset differ diff --git a/Content/PlayerData/Scripts/trampoline/trampoline.uasset b/Content/PlayerData/Scripts/trampoline/trampoline.uasset new file mode 100644 index 0000000..e103e16 Binary files /dev/null and b/Content/PlayerData/Scripts/trampoline/trampoline.uasset differ diff --git a/Content/PointLight_Blueprint.uasset b/Content/PointLight_Blueprint.uasset new file mode 100644 index 0000000..5836684 Binary files /dev/null and b/Content/PointLight_Blueprint.uasset differ diff --git a/Content/PressurePlate/BP_Door.uasset b/Content/PressurePlate/BP_Door.uasset new file mode 100644 index 0000000..eadbeed Binary files /dev/null and b/Content/PressurePlate/BP_Door.uasset differ diff --git a/Content/PressurePlate/BP_PressurePlate.uasset b/Content/PressurePlate/BP_PressurePlate.uasset new file mode 100644 index 0000000..54bfb70 Binary files /dev/null and b/Content/PressurePlate/BP_PressurePlate.uasset differ diff --git a/Content/Screen.uasset b/Content/Screen.uasset new file mode 100644 index 0000000..15ac102 Binary files /dev/null and b/Content/Screen.uasset differ diff --git a/Content/Startup1.umap b/Content/Startup1.umap new file mode 100644 index 0000000..288917e Binary files /dev/null and b/Content/Startup1.umap differ diff --git a/Content/Tv.uasset b/Content/Tv.uasset new file mode 100644 index 0000000..67557d5 Binary files /dev/null and b/Content/Tv.uasset differ diff --git a/Content/UI/Widget/Images/Dot_Interact.uasset b/Content/UI/Widget/Images/Dot_Interact.uasset new file mode 100644 index 0000000..d5e2565 Binary files /dev/null and b/Content/UI/Widget/Images/Dot_Interact.uasset differ diff --git a/Content/UI/Widget/Images/Dot_Static.uasset b/Content/UI/Widget/Images/Dot_Static.uasset new file mode 100644 index 0000000..592d613 Binary files /dev/null and b/Content/UI/Widget/Images/Dot_Static.uasset differ diff --git a/Content/UI/Widget/WBP_Crosshair.uasset b/Content/UI/Widget/WBP_Crosshair.uasset new file mode 100644 index 0000000..99324bc Binary files /dev/null and b/Content/UI/Widget/WBP_Crosshair.uasset differ diff --git a/Content/activable.uasset b/Content/activable.uasset new file mode 100644 index 0000000..259a21c Binary files /dev/null and b/Content/activable.uasset differ diff --git a/Content/ПеретаскиваемыйАктор.uasset b/Content/ПеретаскиваемыйАктор.uasset new file mode 100644 index 0000000..d08c83c Binary files /dev/null and b/Content/ПеретаскиваемыйАктор.uasset differ diff --git a/HidedGrassGame.uproject b/HidedGrassGame.uproject new file mode 100644 index 0000000..dac84ba --- /dev/null +++ b/HidedGrassGame.uproject @@ -0,0 +1,15 @@ +{ + "FileVersion": 3, + "EngineAssociation": "5.4", + "Category": "", + "Description": "", + "Plugins": [ + { + "Name": "ModelingToolsEditorMode", + "Enabled": true + } + ], + "TargetPlatforms": [ + "WindowsNoEditor" + ] +} \ No newline at end of file