diff --git a/examples/unrealstatus/.gitignore b/examples/unrealstatus/.gitignore index 23f9ef9..e2936de 100644 --- a/examples/unrealstatus/.gitignore +++ b/examples/unrealstatus/.gitignore @@ -49,7 +49,7 @@ SourceArt/**/*.png SourceArt/**/*.tga # Binary Files -Binaries/* +Binaries/ # Builds Build/* @@ -69,7 +69,7 @@ Build/*/** Saved/* # Compiled source files for the engine to use -Intermediate/* +Intermediate/ # Cache files for the editor to use DerivedDataCache/* \ No newline at end of file diff --git a/examples/unrealstatus/Config/DefaultEngine.ini b/examples/unrealstatus/Config/DefaultEngine.ini index 244a1d1..797c758 100644 --- a/examples/unrealstatus/Config/DefaultEngine.ini +++ b/examples/unrealstatus/Config/DefaultEngine.ini @@ -6,4 +6,45 @@ AppliedTargetedHardwareClass=Desktop DefaultGraphicsPerformance=Maximum AppliedDefaultGraphicsPerformance=Maximum +[/Script/Engine.PhysicsSettings] +DefaultGravityZ=-980.000000 +DefaultTerminalVelocity=4000.000000 +DefaultFluidFriction=0.300000 +SimulateScratchMemorySize=262144 +RagdollAggregateThreshold=4 +TriangleMeshTriangleMinAreaThreshold=5.000000 +bEnableAsyncScene=False +bEnableShapeSharing=False +bEnablePCM=False +bEnableStabilization=False +bWarnMissingLocks=True +bEnable2DPhysics=False +LockedAxis=Invalid +DefaultDegreesOfFreedom=Full3D +BounceThresholdVelocity=200.000000 +FrictionCombineMode=Average +RestitutionCombineMode=Average +MaxAngularVelocity=3600.000000 +MaxDepenetrationVelocity=0.000000 +ContactOffsetMultiplier=0.010000 +MinContactOffset=0.000100 +MaxContactOffset=1.000000 +bSimulateSkeletalMeshOnDedicatedServer=True +DefaultShapeComplexity=CTF_UseSimpleAndComplex +bDefaultHasComplexCollision=True +bSuppressFaceRemapTable=False +bSupportUVFromHitResults=False +bDisableActiveActors=False +bDisableCCD=False +MaxPhysicsDeltaTime=0.033333 +bSubstepping=False +bSubsteppingAsync=False +MaxSubstepDeltaTime=0.016667 +MaxSubsteps=6 +SyncSceneSmoothingFactor=0.000000 +AsyncSceneSmoothingFactor=0.990000 +InitialAverageFrameRate=0.016667 + +[/Script/Engine.EndUserSettings] +bSendAnonymousUsageDataToEpic=False diff --git a/examples/unrealstatus/Config/DefaultGame.ini b/examples/unrealstatus/Config/DefaultGame.ini index 4f56954..7b5e2dc 100644 --- a/examples/unrealstatus/Config/DefaultGame.ini +++ b/examples/unrealstatus/Config/DefaultGame.ini @@ -1,2 +1,7 @@ [/Script/EngineSettings.GeneralProjectSettings] ProjectID=E5977A24492699DF20B8ADBF736AF6C6 +ProjectName=Discord RPC Example +CompanyName=Discord Inc. +Homepage="https://discordapp.com/" +CopyrightNotice= + diff --git a/examples/unrealstatus/Content/MainScreenBP.uasset b/examples/unrealstatus/Content/MainScreenBP.uasset new file mode 100644 index 0000000..9f0b288 Binary files /dev/null and b/examples/unrealstatus/Content/MainScreenBP.uasset differ diff --git a/examples/unrealstatus/Content/MouseGameModeBP.uasset b/examples/unrealstatus/Content/MouseGameModeBP.uasset new file mode 100644 index 0000000..410af19 Binary files /dev/null and b/examples/unrealstatus/Content/MouseGameModeBP.uasset differ diff --git a/examples/unrealstatus/Content/MousePlayerControllerBP.uasset b/examples/unrealstatus/Content/MousePlayerControllerBP.uasset new file mode 100644 index 0000000..c441f1f Binary files /dev/null and b/examples/unrealstatus/Content/MousePlayerControllerBP.uasset differ diff --git a/examples/unrealstatus/Content/ShowTheUILevel.umap b/examples/unrealstatus/Content/ShowTheUILevel.umap new file mode 100644 index 0000000..6be7fba Binary files /dev/null and b/examples/unrealstatus/Content/ShowTheUILevel.umap differ diff --git a/examples/unrealstatus/unrealstatus.uproject b/examples/unrealstatus/unrealstatus.uproject index 2244f68..34bf4ac 100644 --- a/examples/unrealstatus/unrealstatus.uproject +++ b/examples/unrealstatus/unrealstatus.uproject @@ -9,5 +9,11 @@ "Type": "Runtime", "LoadingPhase": "Default" } + ], + "TargetPlatforms": [ + "LinuxNoEditor", + "MacNoEditor", + "WindowsNoEditor", + "AllDesktop" ] } \ No newline at end of file