diff --git a/Build/Windows/Application.ico b/Build/Windows/Application.ico new file mode 100644 index 0000000..f805e29 Binary files /dev/null and b/Build/Windows/Application.ico differ diff --git a/COD.uproject b/COD.uproject index fdfae51..6885d68 100644 --- a/COD.uproject +++ b/COD.uproject @@ -2,5 +2,159 @@ "FileVersion": 3, "EngineAssociation": "4.22", "Category": "", - "Description": "" + "Description": "", + "Plugins": [ + { + "Name": "SteamVR", + "Enabled": false + }, + { + "Name": "OculusVR", + "Enabled": false + }, + { + "Name": "PerforceSourceControl", + "Enabled": false + }, + { + "Name": "SubversionSourceControl", + "Enabled": false + }, + { + "Name": "PhysXVehicles", + "Enabled": false + }, + { + "Name": "OnlineSubsystemGooglePlay", + "Enabled": false, + "SupportedTargetPlatforms": [ + "Android" + ] + }, + { + "Name": "OnlineSubsystemIOS", + "Enabled": false, + "SupportedTargetPlatforms": [ + "IOS", + "TVOS" + ] + }, + { + "Name": "GoogleCloudMessaging", + "Enabled": false + }, + { + "Name": "NUTUnrealEngine4", + "Enabled": false + }, + { + "Name": "NetcodeUnitTest", + "Enabled": false + }, + { + "Name": "AndroidMoviePlayer", + "Enabled": false + }, + { + "Name": "AppleMoviePlayer", + "Enabled": false + }, + { + "Name": "WebMMoviePlayer", + "Enabled": false + }, + { + "Name": "HTML5Networking", + "Enabled": false + }, + { + "Name": "MacGraphicsSwitching", + "Enabled": false + }, + { + "Name": "MobileLauncherProfileWizard", + "Enabled": false + }, + { + "Name": "TcpMessaging", + "Enabled": false + }, + { + "Name": "UdpMessaging", + "Enabled": false + }, + { + "Name": "AndroidMedia", + "Enabled": false + }, + { + "Name": "AvfMedia", + "Enabled": false + }, + { + "Name": "MagicLeapMedia", + "Enabled": false, + "SupportedTargetPlatforms": [ + "Lumin" + ] + }, + { + "Name": "CharacterAI", + "Enabled": false + }, + { + "Name": "ArchVisCharacter", + "Enabled": false + }, + { + "Name": "AppleVision", + "Enabled": false + }, + { + "Name": "AppleImageUtils", + "Enabled": false + }, + { + "Name": "IOSDeviceProfileSelector", + "Enabled": false + }, + { + "Name": "LinuxDeviceProfileSelector", + "Enabled": false + }, + { + "Name": "AndroidDeviceProfileSelector", + "Enabled": false + }, + { + "Name": "MagicLeap", + "Enabled": false, + "SupportedTargetPlatforms": [ + "Lumin" + ] + }, + { + "Name": "AudioCapture", + "Enabled": false + }, + { + "Name": "AndroidPermission", + "Enabled": false + }, + { + "Name": "AISupport", + "Enabled": false + }, + { + "Name": "Paper2D", + "Enabled": false + }, + { + "Name": "DatasmithContent", + "Enabled": false + } + ], + "TargetPlatforms": [ + "WindowsNoEditor" + ] } \ No newline at end of file diff --git a/Config/DefaultEngine.ini b/Config/DefaultEngine.ini index 73aed09..86e83ec 100644 --- a/Config/DefaultEngine.ini +++ b/Config/DefaultEngine.ini @@ -1,6 +1,9 @@ [URL] [/Script/Engine.RendererSettings] r.DefaultFeature.AutoExposure.ExtendDefaultLuminanceRange=True +r.DefaultFeature.LensFlare=True +r.TemporalAA.Upsampling=False +r.EarlyZPass=0 [/Script/HardwareTargeting.HardwareTargetingSettings] TargetedHardwareClass=Desktop @@ -9,8 +12,28 @@ DefaultGraphicsPerformance=Maximum AppliedDefaultGraphicsPerformance=Maximum [/Script/EngineSettings.GameMapsSettings] -EditorStartupMap=/Game/Levels/Container_04A.Container_04A -GameDefaultMap=/Game/Levels/Container_04A.Container_04A +EditorStartupMap=/Game/Levels/0Index.0Index +GameDefaultMap=/Game/Levels/0Index.0Index +bUseSplitscreen=False +GameInstanceClass=/Game/Blueprints/Player/GI.GI_C +GlobalDefaultGameMode=/Game/Blueprints/Player/GM.GM_C + +[/Script/WindowsTargetPlatform.WindowsTargetSettings] +Compiler=VisualStudio2017 +-TargetedRHIs=PCD3D_SM5 +-TargetedRHIs=PCD3D_SM4 ++TargetedRHIs=PCD3D_SM5 +DefaultGraphicsRHI=DefaultGraphicsRHI_DX12 +MinimumOSVersion=MSOS_Vista +AudioDevice= +AudioSampleRate=48000 +AudioCallbackBufferFrameSize=1024 +AudioNumBuffersToEnqueue=1 +AudioMaxChannels=0 +AudioNumSourceWorkers=4 +SpatializationPlugin= +ReverbPlugin= +OcclusionPlugin= [/Script/Engine.PhysicsSettings] DefaultGravityZ=-980.000000 @@ -54,3 +77,5 @@ SyncSceneSmoothingFactor=0.000000 InitialAverageFrameRate=0.016667 PhysXTreeRebuildRate=10 DefaultBroadphaseSettings=(bUseMBPOnClient=False,bUseMBPOnServer=False,MBPBounds=(Min=(X=0.000000,Y=0.000000,Z=0.000000),Max=(X=0.000000,Y=0.000000,Z=0.000000),IsValid=0),MBPNumSubdivs=2) + + diff --git a/Config/DefaultGame.ini b/Config/DefaultGame.ini index 1b9e88a..0c1854e 100644 Binary files a/Config/DefaultGame.ini and b/Config/DefaultGame.ini differ diff --git a/Config/DefaultInput.ini b/Config/DefaultInput.ini new file mode 100644 index 0000000..4578001 --- /dev/null +++ b/Config/DefaultInput.ini @@ -0,0 +1,8 @@ + + +[/Script/Engine.InputSettings] +bCaptureMouseOnLaunch=False +DefaultViewportMouseCaptureMode=NoCapture +bUseMouseForTouch=True +DefaultTouchInterface=None + diff --git a/Content/Blueprints/Player/CM.uasset b/Content/Blueprints/Player/CM.uasset new file mode 100644 index 0000000..83da3df Binary files /dev/null and b/Content/Blueprints/Player/CM.uasset differ diff --git a/Content/Blueprints/Player/GI.uasset b/Content/Blueprints/Player/GI.uasset new file mode 100644 index 0000000..9628474 Binary files /dev/null and b/Content/Blueprints/Player/GI.uasset differ diff --git a/Content/Blueprints/Player/GM.uasset b/Content/Blueprints/Player/GM.uasset new file mode 100644 index 0000000..d76fc71 Binary files /dev/null and b/Content/Blueprints/Player/GM.uasset differ diff --git a/Content/Blueprints/Player/GetSome.uasset b/Content/Blueprints/Player/GetSome.uasset new file mode 100644 index 0000000..ef59c32 Binary files /dev/null and b/Content/Blueprints/Player/GetSome.uasset differ diff --git a/Content/Blueprints/Player/MyPawn.uasset b/Content/Blueprints/Player/MyPawn.uasset new file mode 100644 index 0000000..b3f1d7d Binary files /dev/null and b/Content/Blueprints/Player/MyPawn.uasset differ diff --git a/Content/Blueprints/Player/PC.uasset b/Content/Blueprints/Player/PC.uasset new file mode 100644 index 0000000..f3622ed Binary files /dev/null and b/Content/Blueprints/Player/PC.uasset differ diff --git a/Content/Blueprints/Player/infoHud.uasset b/Content/Blueprints/Player/infoHud.uasset new file mode 100644 index 0000000..afb46b6 Binary files /dev/null and b/Content/Blueprints/Player/infoHud.uasset differ diff --git a/Content/Blueprints/UI/Wbps/MainUI.uasset b/Content/Blueprints/UI/Wbps/MainUI.uasset new file mode 100644 index 0000000..5bd06c6 Binary files /dev/null and b/Content/Blueprints/UI/Wbps/MainUI.uasset differ diff --git a/Content/Blueprints/UI/Wbps/RightSteck.uasset b/Content/Blueprints/UI/Wbps/RightSteck.uasset new file mode 100644 index 0000000..7d735d2 Binary files /dev/null and b/Content/Blueprints/UI/Wbps/RightSteck.uasset differ diff --git a/Content/Levels/0Index.umap b/Content/Levels/0Index.umap new file mode 100644 index 0000000..48e04ef Binary files /dev/null and b/Content/Levels/0Index.umap differ diff --git a/Content/Levels/Container_03.umap b/Content/Levels/Container_03.umap index ba2fe2d..c964318 100644 Binary files a/Content/Levels/Container_03.umap and b/Content/Levels/Container_03.umap differ diff --git a/Content/Splash/EdSplash.png b/Content/Splash/EdSplash.png new file mode 100644 index 0000000..35b821b Binary files /dev/null and b/Content/Splash/EdSplash.png differ diff --git a/Content/Splash/EdSplash.uasset b/Content/Splash/EdSplash.uasset new file mode 100644 index 0000000..0638976 Binary files /dev/null and b/Content/Splash/EdSplash.uasset differ diff --git a/Content/Splash/Splash.png b/Content/Splash/Splash.png new file mode 100644 index 0000000..35b821b Binary files /dev/null and b/Content/Splash/Splash.png differ diff --git a/Content/Splash/Splash.uasset b/Content/Splash/Splash.uasset new file mode 100644 index 0000000..084cdd4 Binary files /dev/null and b/Content/Splash/Splash.uasset differ diff --git a/Content/Splash/favicon.ico b/Content/Splash/favicon.ico new file mode 100644 index 0000000..f805e29 Binary files /dev/null and b/Content/Splash/favicon.ico differ