From 657a8ff65b0b8d44e81fdc1fed6b3773850dabe5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Batuhan=20=C5=9Eahin?= Date: Fri, 27 Feb 2026 18:56:15 +0300 Subject: [PATCH] Implemented Base BPS --- Config/DefaultEngine.ini | 30 +++++++++---------- Content/_Game/Blueprints/GM_FMV.uasset | 3 ++ Content/_Game/Blueprints/HUD_FMV.uasset | 3 ++ Content/_Game/Blueprints/PC_FMV.uasset | 3 ++ .../Blueprints/WBP_DialougeButton.uasset | 3 ++ Content/_Game/Blueprints/WBP_FMV.uasset | 3 ++ .../DataAssets/BP_DA_SelectableMovie.uasset | 3 ++ Content/_Game/DataAssets/DA_S1_M1.uasset | 3 ++ Content/_Game/Levels/L_Game.umap | 4 +-- Content/_Game/Media/NewLevelSequence1.uasset | 3 ++ FMVUnreal.uproject | 4 +++ 11 files changed, 45 insertions(+), 17 deletions(-) create mode 100644 Content/_Game/Blueprints/GM_FMV.uasset create mode 100644 Content/_Game/Blueprints/HUD_FMV.uasset create mode 100644 Content/_Game/Blueprints/PC_FMV.uasset create mode 100644 Content/_Game/Blueprints/WBP_DialougeButton.uasset create mode 100644 Content/_Game/Blueprints/WBP_FMV.uasset create mode 100644 Content/_Game/DataAssets/BP_DA_SelectableMovie.uasset create mode 100644 Content/_Game/DataAssets/DA_S1_M1.uasset create mode 100644 Content/_Game/Media/NewLevelSequence1.uasset diff --git a/Config/DefaultEngine.ini b/Config/DefaultEngine.ini index 42ece56..3d79142 100644 --- a/Config/DefaultEngine.ini +++ b/Config/DefaultEngine.ini @@ -1,11 +1,12 @@ [/Script/EngineSettings.GameMapsSettings] -GameDefaultMap=/Engine/Maps/Templates/OpenWorld +GameDefaultMap=/Game/_Game/Levels/L_Game.L_Game +EditorStartupMap=/Game/_Game/Levels/L_Game.L_Game [/Script/Engine.RendererSettings] r.Mobile.ShadingPath=1 -r.Mobile.AntiAliasing=2 +r.Mobile.AntiAliasing=0 r.Mobile.FloatPrecisionMode=0 r.Mobile.AllowDitheredLODTransition=False r.Mobile.VirtualTextures=False @@ -44,26 +45,26 @@ BlueChromaticityCoordinate=(X=0.150000,Y=0.060000) WhiteChromaticityCoordinate=(X=0.312700,Y=0.329000) r.LegacyLuminanceFactors=False r.ClearCoatNormal=False -r.DynamicGlobalIlluminationMethod=1 -r.ReflectionMethod=1 +r.DynamicGlobalIlluminationMethod=0 +r.ReflectionMethod=0 r.ReflectionCaptureResolution=128 r.ReflectionEnvironmentLightmapMixBasedOnRoughness=True -r.Lumen.HardwareRayTracing=True +r.Lumen.HardwareRayTracing=False r.Lumen.HardwareRayTracing.LightingMode=0 r.Lumen.TranslucencyReflections.FrontLayer.EnableForProject=False r.Lumen.TraceMeshSDFs=0 r.Lumen.ScreenTracingSource=0 -r.Lumen.Reflections.HardwareRayTracing.Translucent.Refraction.EnableForProject=True +r.Lumen.Reflections.HardwareRayTracing.Translucent.Refraction.EnableForProject=False r.MegaLights.EnableForProject=False r.RayTracing.Shadows=False -r.Shadow.Virtual.Enable=1 -r.RayTracing=True -r.RayTracing.RayTracingProxies.ProjectEnabled=True +r.Shadow.Virtual.Enable=0 +r.RayTracing=False +r.RayTracing.RayTracingProxies.ProjectEnabled=False r.RayTracing.UseTextureLod=False r.PathTracing=True r.GenerateMeshDistanceFields=True r.DistanceFields.DefaultVoxelDensity=0.200000 -r.Nanite.ProjectEnabled=True +r.Nanite.ProjectEnabled=False r.AllowStaticLighting=False r.NormalMapsForStaticLighting=False r.ForwardShading=False @@ -78,9 +79,9 @@ r.CustomDepth=1 r.CustomDepthTemporalAAJitter=True r.PostProcessing.PropagateAlpha=False r.Deferred.SupportPrimitiveAlphaHoldout=False -r.DefaultFeature.Bloom=True -r.DefaultFeature.AmbientOcclusion=True -r.DefaultFeature.AmbientOcclusionStaticFraction=True +r.DefaultFeature.Bloom=False +r.DefaultFeature.AmbientOcclusion=False +r.DefaultFeature.AmbientOcclusionStaticFraction=False r.DefaultFeature.AutoExposure=False r.DefaultFeature.AutoExposure.Method=0 r.DefaultFeature.AutoExposure.Bias=1.000000 @@ -192,8 +193,7 @@ VisualizeCalibrationCustomMaterialPath=None VisualizeCalibrationGrayscaleMaterialPath=/Engine/EngineMaterials/PPM_DefaultCalibrationGrayscale.PPM_DefaultCalibrationGrayscale [/Script/WindowsTargetPlatform.WindowsTargetSettings] -DefaultGraphicsRHI=DefaultGraphicsRHI_DX12 -DefaultGraphicsRHI=DefaultGraphicsRHI_DX12 +DefaultGraphicsRHI=DefaultGraphicsRHI_DX11 -D3D12TargetedShaderFormats=PCD3D_SM5 +D3D12TargetedShaderFormats=PCD3D_SM6 -D3D11TargetedShaderFormats=PCD3D_SM5 diff --git a/Content/_Game/Blueprints/GM_FMV.uasset b/Content/_Game/Blueprints/GM_FMV.uasset new file mode 100644 index 0000000..5199f6c --- /dev/null +++ b/Content/_Game/Blueprints/GM_FMV.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3982d3d3de28fa1710b96211a5f8394d20ef6fb64772ce17387891569cfeb7bc +size 21121 diff --git a/Content/_Game/Blueprints/HUD_FMV.uasset b/Content/_Game/Blueprints/HUD_FMV.uasset new file mode 100644 index 0000000..c018c46 --- /dev/null +++ b/Content/_Game/Blueprints/HUD_FMV.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a018e359cbef4aadba47f31aea789bd86f1835485f636d88c457fd782f37f33 +size 35001 diff --git a/Content/_Game/Blueprints/PC_FMV.uasset b/Content/_Game/Blueprints/PC_FMV.uasset new file mode 100644 index 0000000..ca5c8f7 --- /dev/null +++ b/Content/_Game/Blueprints/PC_FMV.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4c374f25c2c517c6ff96f010834d156b0c4bf2e3d5b86297306103b93aaf864 +size 32504 diff --git a/Content/_Game/Blueprints/WBP_DialougeButton.uasset b/Content/_Game/Blueprints/WBP_DialougeButton.uasset new file mode 100644 index 0000000..3eea874 --- /dev/null +++ b/Content/_Game/Blueprints/WBP_DialougeButton.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f961567b04a675a18f3b62d3e1b659a5a04127c16b5f32d8b5d3b9bb2f24a3de +size 44295 diff --git a/Content/_Game/Blueprints/WBP_FMV.uasset b/Content/_Game/Blueprints/WBP_FMV.uasset new file mode 100644 index 0000000..e00d063 --- /dev/null +++ b/Content/_Game/Blueprints/WBP_FMV.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57ddbd1f098df1b1a81a897442099cc4a1a41c0b5692b045f3aed45c32e470ed +size 93302 diff --git a/Content/_Game/DataAssets/BP_DA_SelectableMovie.uasset b/Content/_Game/DataAssets/BP_DA_SelectableMovie.uasset new file mode 100644 index 0000000..4f5850f --- /dev/null +++ b/Content/_Game/DataAssets/BP_DA_SelectableMovie.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4886c39232440b5a0ac0c6562e5717516a4a86c49a7174ebc77250e396ab7c22 +size 9709 diff --git a/Content/_Game/DataAssets/DA_S1_M1.uasset b/Content/_Game/DataAssets/DA_S1_M1.uasset new file mode 100644 index 0000000..c35563b --- /dev/null +++ b/Content/_Game/DataAssets/DA_S1_M1.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2cef91dd46a34a748ed1c58e7854205fdbed3c0b128b40241c6d4c54cd04a4b +size 2599 diff --git a/Content/_Game/Levels/L_Game.umap b/Content/_Game/Levels/L_Game.umap index 0fe4b69..4734a29 100644 --- a/Content/_Game/Levels/L_Game.umap +++ b/Content/_Game/Levels/L_Game.umap @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:76007321a1debd1f87b2b41599050a409f7548fcd2361fa7d59c62986a1665f0 -size 6644 +oid sha256:9ebf73182c9b724552eafe7690acf70b6acbf73574b35519bc4456c35fa475fe +size 8934 diff --git a/Content/_Game/Media/NewLevelSequence1.uasset b/Content/_Game/Media/NewLevelSequence1.uasset new file mode 100644 index 0000000..fa8731a --- /dev/null +++ b/Content/_Game/Media/NewLevelSequence1.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84d6e5241c81b3ca1105a6ac0485bf2ad6239180eaae05a5012ae5a834a37f3e +size 1409 diff --git a/FMVUnreal.uproject b/FMVUnreal.uproject index 0dff37f..d7f7928 100644 --- a/FMVUnreal.uproject +++ b/FMVUnreal.uproject @@ -10,6 +10,10 @@ "TargetAllowList": [ "Editor" ] + }, + { + "Name": "CommonUI", + "Enabled": true } ] } \ No newline at end of file