Add Login, Logout, Register In-Game
This commit is contained in:
parent
6263975fdb
commit
19150f7fdd
8
CorruptedMemory 5.1/.gitattributes
vendored
8
CorruptedMemory 5.1/.gitattributes
vendored
@ -1,8 +0,0 @@
|
|||||||
# To keep the template organised, all unreal engine specific lfs stuff is stored in this file.
|
|
||||||
# This also means your unreal project must be in the same directory or subdirectory of this file.
|
|
||||||
|
|
||||||
# From what I know, all .uasset files are serialized binary data from computer memory.
|
|
||||||
# If a .uasset file is corrupt, you can't save it. Your only option is to revert to a
|
|
||||||
# previous commit before the corruption - assuming you have a commit history on the corrupt file.
|
|
||||||
*.uasset filter=lfs diff=lfs merge=lfs -text
|
|
||||||
*.umap filter=lfs diff=lfs merge=lfs -text
|
|
109
CorruptedMemory 5.1/.gitignore
vendored
109
CorruptedMemory 5.1/.gitignore
vendored
@ -1,109 +0,0 @@
|
|||||||
# This .gitignore goes back to the original Unreal Engine template we had in the GA from 2018-2022.
|
|
||||||
# It was made using toptal.com. The file is still accurate, so it hasn't been touched.
|
|
||||||
|
|
||||||
# If you are tempted to add the Platforms folder to the .gitignore, I wouldn't bother.
|
|
||||||
# It's a config folder that doesn't matter for most GA students and can be deleted usually.
|
|
||||||
# In UE 5.3 or 5.4 this will be fixed and unreal engine wont generate it unless you actually
|
|
||||||
# need the config files for your project.
|
|
||||||
|
|
||||||
# If someone adds Platforms to .gitignore it will be forgotten and someone in the future is going to
|
|
||||||
# have issues with their project because the config file wasn't committed to version control.
|
|
||||||
# This is why it's better to leave that folder out of .gitignore
|
|
||||||
|
|
||||||
# Created by https://www.toptal.com/developers/gitignore/api/unrealengine
|
|
||||||
# Edit at https://www.toptal.com/developers/gitignore?templates=unrealengine
|
|
||||||
|
|
||||||
### UnrealEngine ###
|
|
||||||
# Visual Studio 2015 user specific files
|
|
||||||
.vs/
|
|
||||||
|
|
||||||
# Compiled Object files
|
|
||||||
*.slo
|
|
||||||
*.lo
|
|
||||||
*.o
|
|
||||||
*.obj
|
|
||||||
|
|
||||||
# Precompiled Headers
|
|
||||||
*.gch
|
|
||||||
*.pch
|
|
||||||
|
|
||||||
# Compiled Dynamic libraries
|
|
||||||
*.so
|
|
||||||
*.dylib
|
|
||||||
*.dll
|
|
||||||
|
|
||||||
# Fortran module files
|
|
||||||
*.mod
|
|
||||||
|
|
||||||
# Compiled Static libraries
|
|
||||||
*.lai
|
|
||||||
*.la
|
|
||||||
*.a
|
|
||||||
*.lib
|
|
||||||
|
|
||||||
# Executables
|
|
||||||
*.exe
|
|
||||||
*.out
|
|
||||||
*.app
|
|
||||||
*.ipa
|
|
||||||
|
|
||||||
# These project files can be generated by the engine
|
|
||||||
*.xcodeproj
|
|
||||||
*.xcworkspace
|
|
||||||
*.sln
|
|
||||||
*.suo
|
|
||||||
*.opensdf
|
|
||||||
*.sdf
|
|
||||||
*.VC.db
|
|
||||||
*.VC.opendb
|
|
||||||
.vsconfig
|
|
||||||
|
|
||||||
# Precompiled Assets
|
|
||||||
SourceArt/**/*.png
|
|
||||||
SourceArt/**/*.tga
|
|
||||||
|
|
||||||
# Binary Files
|
|
||||||
Binaries/*
|
|
||||||
Plugins/*/Binaries/*
|
|
||||||
|
|
||||||
# Builds
|
|
||||||
Build/*
|
|
||||||
|
|
||||||
# Whitelist PakBlacklist-<BuildConfiguration>.txt files
|
|
||||||
!Build/*/
|
|
||||||
Build/*/**
|
|
||||||
!Build/*/PakBlacklist*.txt
|
|
||||||
|
|
||||||
# Don't ignore icon files in Build
|
|
||||||
!Build/**/*.ico
|
|
||||||
|
|
||||||
# Built data for maps
|
|
||||||
*_BuiltData.uasset
|
|
||||||
|
|
||||||
# Configuration files generated by the Editor
|
|
||||||
Saved/*
|
|
||||||
|
|
||||||
# Compiled source files for the engine to use
|
|
||||||
Intermediate/*
|
|
||||||
Plugins/*/Intermediate/*
|
|
||||||
|
|
||||||
# Cache files for the editor to use
|
|
||||||
DerivedDataCache/*
|
|
||||||
|
|
||||||
### UnrealEngine Patch ###
|
|
||||||
# Don't ignore icon and splash images for mobile app
|
|
||||||
!Build/IOS/Resources/
|
|
||||||
Build/IOS/Resources/*
|
|
||||||
!Build/IOS/Resources/Graphics/
|
|
||||||
Build/IOS/Resources/Graphics/*
|
|
||||||
!Build/IOS/Resources/Graphics/*.png
|
|
||||||
!Build/Android/res/
|
|
||||||
Build/Android/res/*
|
|
||||||
!Build/Android/res/*/
|
|
||||||
Build/Android/res/*/*
|
|
||||||
!Build/Android/res/*/*.png
|
|
||||||
|
|
||||||
# End of https://www.toptal.com/developers/gitignore/api/unrealengine
|
|
||||||
|
|
||||||
### MacOS ###
|
|
||||||
.DS_Store
|
|
@ -1,13 +0,0 @@
|
|||||||
# Default ignored files
|
|
||||||
/shelf/
|
|
||||||
/workspace.xml
|
|
||||||
# Rider ignored files
|
|
||||||
/contentModel.xml
|
|
||||||
/projectSettingsUpdater.xml
|
|
||||||
/.idea.CorruptedMemory.iml
|
|
||||||
/modules.xml
|
|
||||||
# Editor-based HTTP Client requests
|
|
||||||
/httpRequests/
|
|
||||||
# Datasource local storage ignored files
|
|
||||||
/dataSources/
|
|
||||||
/dataSources.local.xml
|
|
@ -1,4 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project version="4">
|
|
||||||
<component name="Encoding" addBOMForNewFiles="with BOM under Windows, with no BOM otherwise" />
|
|
||||||
</project>
|
|
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project version="4">
|
|
||||||
<component name="UserContentModel">
|
|
||||||
<attachedFolders />
|
|
||||||
<explicitIncludes />
|
|
||||||
<explicitExcludes />
|
|
||||||
</component>
|
|
||||||
</project>
|
|
@ -1,7 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project version="4">
|
|
||||||
<component name="DiscordProjectSettings">
|
|
||||||
<option name="show" value="ASK" />
|
|
||||||
<option name="description" value="" />
|
|
||||||
</component>
|
|
||||||
</project>
|
|
@ -1,6 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project version="4">
|
|
||||||
<component name="VcsDirectoryMappings">
|
|
||||||
<mapping directory="$PROJECT_DIR$/.." vcs="Git" />
|
|
||||||
</component>
|
|
||||||
</project>
|
|
@ -1,8 +0,0 @@
|
|||||||
[UnrealEd.SimpleMap]
|
|
||||||
SimpleMapName=/Game/FirstPerson/Maps/FirstPersonExampleMap
|
|
||||||
|
|
||||||
[EditoronlyBP]
|
|
||||||
bAllowClassAndBlueprintPinMatching=true
|
|
||||||
bReplaceBlueprintWithClass= true
|
|
||||||
bDontLoadBlueprintOutsideEditor= true
|
|
||||||
bBlueprintIsNotBlueprintType= true
|
|
@ -1,2 +0,0 @@
|
|||||||
[ContentBrowser]
|
|
||||||
ContentBrowserTab1.SelectedPaths=/Game/FirstPerson
|
|
@ -1,87 +0,0 @@
|
|||||||
[/Script/Engine.CollisionProfile]
|
|
||||||
+Profiles=(Name="Projectile",CollisionEnabled=QueryOnly,ObjectTypeName="Projectile",CustomResponses=,HelpMessage="Preset for projectiles",bCanModify=True)
|
|
||||||
+DefaultChannelResponses=(Channel=ECC_GameTraceChannel1,Name="Projectile",DefaultResponse=ECR_Block,bTraceType=False,bStaticObject=False)
|
|
||||||
+EditProfiles=(Name="Trigger",CustomResponses=((Channel=Projectile, Response=ECR_Ignore)))
|
|
||||||
|
|
||||||
[/Script/EngineSettings.GameMapsSettings]
|
|
||||||
EditorStartupMap=/Game/FirstPerson/Maps/FirstPersonMap.FirstPersonMap
|
|
||||||
LocalMapOptions=
|
|
||||||
TransitionMap=
|
|
||||||
bUseSplitscreen=True
|
|
||||||
TwoPlayerSplitscreenLayout=Horizontal
|
|
||||||
ThreePlayerSplitscreenLayout=FavorTop
|
|
||||||
GameInstanceClass=/Script/Engine.GameInstance
|
|
||||||
GameDefaultMap=/Game/FirstPerson/Maps/FirstPersonMap.FirstPersonMap
|
|
||||||
ServerDefaultMap=/Game/FirstPerson/Maps/FirstPersonMap.FirstPersonMap
|
|
||||||
GlobalDefaultGameMode=/Script/CorruptedMemory.CorruptedMemoryGameMode
|
|
||||||
GlobalDefaultServerGameMode=None
|
|
||||||
|
|
||||||
[/Script/Engine.RendererSettings]
|
|
||||||
r.ReflectionMethod=1
|
|
||||||
r.GenerateMeshDistanceFields=True
|
|
||||||
r.DynamicGlobalIlluminationMethod=1
|
|
||||||
r.Mobile.EnableNoPrecomputedLightingCSMShader=1
|
|
||||||
r.DefaultFeature.AutoExposure.ExtendDefaultLuminanceRange=True
|
|
||||||
r.DefaultFeature.AutoExposure.ExtendDefaultLuminanceRange=true
|
|
||||||
|
|
||||||
|
|
||||||
r.Shadow.Virtual.Enable=1
|
|
||||||
|
|
||||||
[/Script/WindowsTargetPlatform.WindowsTargetSettings]
|
|
||||||
DefaultGraphicsRHI=DefaultGraphicsRHI_DX12
|
|
||||||
-D3D12TargetedShaderFormats=PCD3D_SM5
|
|
||||||
+D3D12TargetedShaderFormats=PCD3D_SM6
|
|
||||||
-D3D11TargetedShaderFormats=PCD3D_SM5
|
|
||||||
+D3D11TargetedShaderFormats=PCD3D_SM5
|
|
||||||
Compiler=Default
|
|
||||||
AudioSampleRate=48000
|
|
||||||
AudioCallbackBufferFrameSize=1024
|
|
||||||
AudioNumBuffersToEnqueue=1
|
|
||||||
AudioMaxChannels=0
|
|
||||||
AudioNumSourceWorkers=4
|
|
||||||
SpatializationPlugin=
|
|
||||||
SourceDataOverridePlugin=
|
|
||||||
ReverbPlugin=
|
|
||||||
OcclusionPlugin=
|
|
||||||
CompressionOverrides=(bOverrideCompressionTimes=False,DurationThreshold=5.000000,MaxNumRandomBranches=0,SoundCueQualityIndex=0)
|
|
||||||
CacheSizeKB=65536
|
|
||||||
MaxChunkSizeOverrideKB=0
|
|
||||||
bResampleForDevice=False
|
|
||||||
MaxSampleRate=48000.000000
|
|
||||||
HighSampleRate=32000.000000
|
|
||||||
MedSampleRate=24000.000000
|
|
||||||
LowSampleRate=12000.000000
|
|
||||||
MinSampleRate=8000.000000
|
|
||||||
CompressionQualityModifier=1.000000
|
|
||||||
AutoStreamingThreshold=0.000000
|
|
||||||
SoundCueCookQualityIndex=-1
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[/Script/HardwareTargeting.HardwareTargetingSettings]
|
|
||||||
TargetedHardwareClass=Desktop
|
|
||||||
AppliedTargetedHardwareClass=Desktop
|
|
||||||
DefaultGraphicsPerformance=Maximum
|
|
||||||
AppliedDefaultGraphicsPerformance=Maximum
|
|
||||||
|
|
||||||
[/Script/Engine.Engine]
|
|
||||||
+ActiveGameNameRedirects=(OldGameName="TP_FirstPerson",NewGameName="/Script/CorruptedMemory")
|
|
||||||
+ActiveGameNameRedirects=(OldGameName="/Script/TP_FirstPerson",NewGameName="/Script/CorruptedMemory")
|
|
||||||
+ActiveClassRedirects=(OldClassName="TP_FirstPersonProjectile",NewClassName="CorruptedMemoryProjectile")
|
|
||||||
+ActiveClassRedirects=(OldClassName="TP_FirstPersonGameMode",NewClassName="CorruptedMemoryGameMode")
|
|
||||||
+ActiveClassRedirects=(OldClassName="TP_FirstPersonCharacter",NewClassName="CorruptedMemoryCharacter")
|
|
||||||
|
|
||||||
[/Script/AndroidFileServerEditor.AndroidFileServerRuntimeSettings]
|
|
||||||
bEnablePlugin=True
|
|
||||||
bAllowNetworkConnection=True
|
|
||||||
SecurityToken=F7775E4645EB450C665EBB944D895902
|
|
||||||
bIncludeInShipping=False
|
|
||||||
bAllowExternalStartInShipping=False
|
|
||||||
bCompileAFSProject=False
|
|
||||||
bUseCompression=False
|
|
||||||
bLogFiles=False
|
|
||||||
bReportStats=False
|
|
||||||
ConnectionType=USBOnly
|
|
||||||
bUseManualIPAddress=False
|
|
||||||
ManualIPAddress=
|
|
||||||
|
|
@ -1,10 +0,0 @@
|
|||||||
[ProjectSettings]
|
|
||||||
ProjectID=(A=1823396784,B=1298598689,C=1743498150,D=-2048051708)
|
|
||||||
ProjectName=First Person Template
|
|
||||||
|
|
||||||
[/Script/EngineSettings.GeneralProjectSettings]
|
|
||||||
ProjectID=95A49B374FC3C561C628B1B88EA4D30D
|
|
||||||
|
|
||||||
[StartupActions]
|
|
||||||
bAddPacks=True
|
|
||||||
InsertPack=(PackSource="StarterContent.upack",PackName="StarterContent")
|
|
@ -1,109 +0,0 @@
|
|||||||
[/Script/Engine.InputSettings]
|
|
||||||
-AxisConfig=(AxisKeyName="Gamepad_LeftX",AxisProperties=(DeadZone=0.25,Exponent=1.f,Sensitivity=1.f))
|
|
||||||
-AxisConfig=(AxisKeyName="Gamepad_LeftY",AxisProperties=(DeadZone=0.25,Exponent=1.f,Sensitivity=1.f))
|
|
||||||
-AxisConfig=(AxisKeyName="Gamepad_RightX",AxisProperties=(DeadZone=0.25,Exponent=1.f,Sensitivity=1.f))
|
|
||||||
-AxisConfig=(AxisKeyName="Gamepad_RightY",AxisProperties=(DeadZone=0.25,Exponent=1.f,Sensitivity=1.f))
|
|
||||||
-AxisConfig=(AxisKeyName="MouseX",AxisProperties=(DeadZone=0.f,Exponent=1.f,Sensitivity=0.07f))
|
|
||||||
-AxisConfig=(AxisKeyName="MouseY",AxisProperties=(DeadZone=0.f,Exponent=1.f,Sensitivity=0.07f))
|
|
||||||
-AxisConfig=(AxisKeyName="Mouse2D",AxisProperties=(DeadZone=0.f,Exponent=1.f,Sensitivity=0.07f))
|
|
||||||
+AxisConfig=(AxisKeyName="Mouse2D",AxisProperties=(DeadZone=0.000000,Sensitivity=0.070000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="Gamepad_LeftX",AxisProperties=(DeadZone=0.250000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="Gamepad_LeftY",AxisProperties=(DeadZone=0.250000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="Gamepad_RightX",AxisProperties=(DeadZone=0.250000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="Gamepad_RightY",AxisProperties=(DeadZone=0.250000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="MouseX",AxisProperties=(DeadZone=0.000000,Sensitivity=0.070000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="MouseY",AxisProperties=(DeadZone=0.000000,Sensitivity=0.070000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="MouseWheelAxis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="Gamepad_LeftTriggerAxis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="Gamepad_RightTriggerAxis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="Gamepad_Special_Left_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="Gamepad_Special_Left_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="Vive_Left_Trigger_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="Vive_Left_Trackpad_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="Vive_Left_Trackpad_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="Vive_Right_Trigger_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="Vive_Right_Trackpad_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="Vive_Right_Trackpad_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="MixedReality_Left_Trigger_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="MixedReality_Left_Thumbstick_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="MixedReality_Left_Thumbstick_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="MixedReality_Left_Trackpad_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="MixedReality_Left_Trackpad_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="MixedReality_Right_Trigger_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="MixedReality_Right_Thumbstick_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="MixedReality_Right_Thumbstick_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="MixedReality_Right_Trackpad_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="MixedReality_Right_Trackpad_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="OculusTouch_Left_Grip_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="OculusTouch_Left_Trigger_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="OculusTouch_Left_Thumbstick_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="OculusTouch_Left_Thumbstick_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="OculusTouch_Right_Grip_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="OculusTouch_Right_Trigger_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="OculusTouch_Right_Thumbstick_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="OculusTouch_Right_Thumbstick_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="ValveIndex_Left_Grip_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="ValveIndex_Left_Grip_Force",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="ValveIndex_Left_Trigger_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="ValveIndex_Left_Thumbstick_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="ValveIndex_Left_Thumbstick_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="ValveIndex_Left_Trackpad_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="ValveIndex_Left_Trackpad_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="ValveIndex_Left_Trackpad_Force",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="ValveIndex_Left_Trackpad_Touch",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="ValveIndex_Right_Grip_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="ValveIndex_Right_Grip_Force",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="ValveIndex_Right_Trigger_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="ValveIndex_Right_Thumbstick_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="ValveIndex_Right_Thumbstick_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="ValveIndex_Right_Trackpad_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="ValveIndex_Right_Trackpad_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="ValveIndex_Right_Trackpad_Force",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="OculusTouch_Left_Thumbstick",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="OculusTouch_Left_FaceButton1",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="OculusTouch_Left_Trigger",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="OculusTouch_Left_FaceButton2",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="OculusTouch_Left_IndexPointing",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="OculusTouch_Left_ThumbUp",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="OculusTouch_Left_ThumbRest",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="OculusTouch_Right_Thumbstick",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="OculusTouch_Right_FaceButton1",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="OculusTouch_Right_Trigger",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="OculusTouch_Right_FaceButton2",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="OculusTouch_Right_IndexPointing",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="OculusTouch_Right_ThumbUp",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="OculusTouch_Right_ThumbRest",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="OculusHand_Left_ThumbPinchStrength",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="OculusHand_Left_IndexPinchStrength",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="OculusHand_Left_MiddlePinchStrength",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="OculusHand_Left_RingPinchStrength",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="OculusHand_Left_PinkPinchStrength",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="OculusHand_Right_ThumbPinchStrength",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="OculusHand_Right_IndexPinchStrength",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="OculusHand_Right_MiddlePinchStrength",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="OculusHand_Right_RingPinchStrength",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
+AxisConfig=(AxisKeyName="OculusHand_Right_PinkPinchStrength",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
|
||||||
bAltEnterTogglesFullscreen=True
|
|
||||||
bF11TogglesFullscreen=True
|
|
||||||
bUseMouseForTouch=False
|
|
||||||
bEnableMouseSmoothing=True
|
|
||||||
bEnableFOVScaling=True
|
|
||||||
bCaptureMouseOnLaunch=True
|
|
||||||
bEnableLegacyInputScales=True
|
|
||||||
bEnableMotionControls=True
|
|
||||||
bFilterInputByPlatformUser=False
|
|
||||||
bShouldFlushPressedKeysOnViewportFocusLost=True
|
|
||||||
bAlwaysShowTouchInterface=False
|
|
||||||
bShowConsoleOnFourFingerTap=True
|
|
||||||
bEnableGestureRecognizer=False
|
|
||||||
bUseAutocorrect=False
|
|
||||||
DefaultViewportMouseCaptureMode=CapturePermanently_IncludingInitialMouseDown
|
|
||||||
DefaultViewportMouseLockMode=LockOnCapture
|
|
||||||
FOVScale=0.011110
|
|
||||||
DoubleClickTime=0.200000
|
|
||||||
DefaultPlayerInputClass=/Script/EnhancedInput.EnhancedPlayerInput
|
|
||||||
DefaultInputComponentClass=/Script/EnhancedInput.EnhancedInputComponent
|
|
||||||
DefaultTouchInterface=/Engine/MobileResources/HUD/DefaultVirtualJoysticks.DefaultVirtualJoysticks
|
|
||||||
-ConsoleKeys=Tilde
|
|
||||||
+ConsoleKeys=Tilde
|
|
||||||
|
|
BIN
CorruptedMemory 5.1/Content/FPWeapon/Audio/FirstPersonTemplateWeaponFire02.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/FPWeapon/Audio/FirstPersonTemplateWeaponFire02.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/FPWeapon/Materials/BaseMaterial.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/FPWeapon/Materials/BaseMaterial.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/FPWeapon/Materials/FirstPersonProjectileMaterial.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/FPWeapon/Materials/FirstPersonProjectileMaterial.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/FPWeapon/Materials/M_FPGun.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/FPWeapon/Materials/M_FPGun.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/FPWeapon/Materials/MaterialLayers/ML_GlossyBlack_Latex_UE4.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/FPWeapon/Materials/MaterialLayers/ML_GlossyBlack_Latex_UE4.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/FPWeapon/Materials/MaterialLayers/ML_Plastic_Shiny_Beige.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/FPWeapon/Materials/MaterialLayers/ML_Plastic_Shiny_Beige.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/FPWeapon/Materials/MaterialLayers/ML_Screen.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/FPWeapon/Materials/MaterialLayers/ML_Screen.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/FPWeapon/Materials/MaterialLayers/ML_SoftMetal_UE4.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/FPWeapon/Materials/MaterialLayers/ML_SoftMetal_UE4.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/FPWeapon/Materials/MaterialLayers/T_ML_Aluminum01.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/FPWeapon/Materials/MaterialLayers/T_ML_Aluminum01.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/FPWeapon/Materials/MaterialLayers/T_ML_Aluminum01_N.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/FPWeapon/Materials/MaterialLayers/T_ML_Aluminum01_N.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/FPWeapon/Materials/MaterialLayers/T_ML_FineRubber.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/FPWeapon/Materials/MaterialLayers/T_ML_FineRubber.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/FPWeapon/Materials/MaterialLayers/T_ML_Rubber_Blue_01_D.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/FPWeapon/Materials/MaterialLayers/T_ML_Rubber_Blue_01_D.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/FPWeapon/Materials/MaterialLayers/T_ML_Rubber_Blue_01_N.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/FPWeapon/Materials/MaterialLayers/T_ML_Rubber_Blue_01_N.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/FPWeapon/Mesh/FirstPersonProjectileMesh.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/FPWeapon/Mesh/FirstPersonProjectileMesh.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/FPWeapon/Mesh/SK_FPGun.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/FPWeapon/Mesh/SK_FPGun.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/FPWeapon/Mesh/SK_FPGun_Physics.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/FPWeapon/Mesh/SK_FPGun_Physics.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/FPWeapon/Mesh/SK_FPGun_PhysicsAsset.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/FPWeapon/Mesh/SK_FPGun_PhysicsAsset.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/FPWeapon/Mesh/SK_FPGun_Skeleton.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/FPWeapon/Mesh/SK_FPGun_Skeleton.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/FPWeapon/Textures/T_FPGun_M.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/FPWeapon/Textures/T_FPGun_M.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/FPWeapon/Textures/T_FPGun_N.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/FPWeapon/Textures/T_FPGun_N.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/FirstPerson/Blueprints/BP_FirstPersonCharacter.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/FirstPerson/Blueprints/BP_FirstPersonCharacter.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/FirstPerson/Blueprints/BP_FirstPersonProjectile.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/FirstPerson/Blueprints/BP_FirstPersonProjectile.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/FirstPerson/Blueprints/BP_PickUp_Rifle.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/FirstPerson/Blueprints/BP_PickUp_Rifle.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/FirstPerson/Input/Actions/IA_Jump.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/FirstPerson/Input/Actions/IA_Jump.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/FirstPerson/Input/Actions/IA_Look.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/FirstPerson/Input/Actions/IA_Look.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/FirstPerson/Input/Actions/IA_Move.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/FirstPerson/Input/Actions/IA_Move.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/FirstPerson/Input/Actions/IA_Shoot.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/FirstPerson/Input/Actions/IA_Shoot.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/FirstPerson/Input/IMC_Default.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/FirstPerson/Input/IMC_Default.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/FirstPerson/Input/IMC_Weapons.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/FirstPerson/Input/IMC_Weapons.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/FirstPerson/Maps/FirstPersonMap.umap
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/FirstPerson/Maps/FirstPersonMap.umap
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/FirstPersonArms/Animations/FP_Falling.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/FirstPersonArms/Animations/FP_Falling.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/FirstPersonArms/Animations/FP_Idle.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/FirstPersonArms/Animations/FP_Idle.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/FirstPersonArms/Animations/FP_Jump.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/FirstPersonArms/Animations/FP_Jump.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/FirstPersonArms/Animations/FP_Land.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/FirstPersonArms/Animations/FP_Land.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/FirstPersonArms/Animations/FP_Rifle_Falling.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/FirstPersonArms/Animations/FP_Rifle_Falling.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/FirstPersonArms/Animations/FP_Rifle_Fire.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/FirstPersonArms/Animations/FP_Rifle_Fire.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/FirstPersonArms/Animations/FP_Rifle_Idle.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/FirstPersonArms/Animations/FP_Rifle_Idle.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/FirstPersonArms/Animations/FP_Rifle_Jump.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/FirstPersonArms/Animations/FP_Rifle_Jump.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/FirstPersonArms/Animations/FP_Rifle_Land.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/FirstPersonArms/Animations/FP_Rifle_Land.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/FirstPersonArms/Animations/FP_Rifle_Run.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/FirstPersonArms/Animations/FP_Rifle_Run.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/FirstPersonArms/Animations/FP_Rifle_Shoot_Montage.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/FirstPersonArms/Animations/FP_Rifle_Shoot_Montage.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/FirstPersonArms/Animations/FP_Run_Fwd.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/FirstPersonArms/Animations/FP_Run_Fwd.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/FirstPersonArms/Animations/FP_Walk_Fwd.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/FirstPersonArms/Animations/FP_Walk_Fwd.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/FirstPersonArms/Animations/FirstPerson_AnimBP.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/FirstPersonArms/Animations/FirstPerson_AnimBP.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/FirstPersonArms/Character/Materials/M_UE4Man_Body.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/FirstPersonArms/Character/Materials/M_UE4Man_Body.uasset
(Stored with Git LFS)
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/FirstPersonArms/Character/Materials/MaterialLayers/ML_SoftMetal_UE4.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/FirstPersonArms/Character/Materials/MaterialLayers/ML_SoftMetal_UE4.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/FirstPersonArms/Character/Materials/MaterialLayers/T_ML_Aluminum01.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/FirstPersonArms/Character/Materials/MaterialLayers/T_ML_Aluminum01.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/FirstPersonArms/Character/Materials/MaterialLayers/T_ML_Aluminum01_N.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/FirstPersonArms/Character/Materials/MaterialLayers/T_ML_Aluminum01_N.uasset
(Stored with Git LFS)
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/FirstPersonArms/Character/Mesh/SK_Mannequin_Arms.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/FirstPersonArms/Character/Mesh/SK_Mannequin_Arms.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/FirstPersonArms/Character/Mesh/SK_Mannequin_Arms_PhysicsAsset.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/FirstPersonArms/Character/Mesh/SK_Mannequin_Arms_PhysicsAsset.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/FirstPersonArms/Character/Mesh/SK_Mannequin_Arms_Skeleton.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/FirstPersonArms/Character/Mesh/SK_Mannequin_Arms_Skeleton.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/FirstPersonArms/Character/Textures/UE4_LOGO_CARD.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/FirstPersonArms/Character/Textures/UE4_LOGO_CARD.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/FirstPersonArms/Character/Textures/UE4_Mannequin_MAT_MASKA.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/FirstPersonArms/Character/Textures/UE4_Mannequin_MAT_MASKA.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/FirstPersonArms/Character/Textures/UE4_Mannequin__normals.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/FirstPersonArms/Character/Textures/UE4_Mannequin__normals.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/LevelPrototyping/Materials/MF_ProcGrid.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/LevelPrototyping/Materials/MF_ProcGrid.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/LevelPrototyping/Materials/MI_PrototypeGrid_Gray.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/LevelPrototyping/Materials/MI_PrototypeGrid_Gray.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/LevelPrototyping/Materials/MI_PrototypeGrid_Gray_02.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/LevelPrototyping/Materials/MI_PrototypeGrid_Gray_02.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/LevelPrototyping/Materials/MI_PrototypeGrid_TopDark.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/LevelPrototyping/Materials/MI_PrototypeGrid_TopDark.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/LevelPrototyping/Materials/MI_Solid_Blue.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/LevelPrototyping/Materials/MI_Solid_Blue.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/LevelPrototyping/Materials/M_PrototypeGrid.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/LevelPrototyping/Materials/M_PrototypeGrid.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/LevelPrototyping/Materials/M_Solid.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/LevelPrototyping/Materials/M_Solid.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/LevelPrototyping/Meshes/SM_ChamferCube.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/LevelPrototyping/Meshes/SM_ChamferCube.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/LevelPrototyping/Meshes/SM_Cube.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/LevelPrototyping/Meshes/SM_Cube.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/LevelPrototyping/Meshes/SM_Cylinder.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/LevelPrototyping/Meshes/SM_Cylinder.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/LevelPrototyping/Meshes/SM_QuarterCylinder.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/LevelPrototyping/Meshes/SM_QuarterCylinder.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/LevelPrototyping/Meshes/SM_Ramp.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/LevelPrototyping/Meshes/SM_Ramp.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/LevelPrototyping/Textures/T_GridChecker_A.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/LevelPrototyping/Textures/T_GridChecker_A.uasset
(Stored with Git LFS)
Binary file not shown.
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:e5041c7a05b3dfc8e7184242271ea77c8b95cb90271cd593fd333bee34ca38fc
|
|
||||||
size 32588
|
|
BIN
CorruptedMemory 5.1/Content/StarterContent/Architecture/Floor_400x400.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/StarterContent/Architecture/Floor_400x400.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/StarterContent/Architecture/Pillar_50x500.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/StarterContent/Architecture/Pillar_50x500.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/StarterContent/Architecture/SM_AssetPlatform.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/StarterContent/Architecture/SM_AssetPlatform.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/StarterContent/Architecture/Wall_400x200.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/StarterContent/Architecture/Wall_400x200.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/StarterContent/Architecture/Wall_400x300.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/StarterContent/Architecture/Wall_400x300.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/StarterContent/Architecture/Wall_400x400.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/StarterContent/Architecture/Wall_400x400.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/StarterContent/Architecture/Wall_500x500.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/StarterContent/Architecture/Wall_500x500.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/StarterContent/Architecture/Wall_Door_400x300.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/StarterContent/Architecture/Wall_Door_400x300.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/StarterContent/Architecture/Wall_Door_400x400.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/StarterContent/Architecture/Wall_Door_400x400.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/StarterContent/Architecture/Wall_Window_400x300.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/StarterContent/Architecture/Wall_Window_400x300.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/StarterContent/Architecture/Wall_Window_400x400.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/StarterContent/Architecture/Wall_Window_400x400.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/StarterContent/Audio/Collapse01.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/StarterContent/Audio/Collapse01.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/StarterContent/Audio/Collapse02.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/StarterContent/Audio/Collapse02.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/StarterContent/Audio/Collapse_Cue.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/StarterContent/Audio/Collapse_Cue.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
CorruptedMemory 5.1/Content/StarterContent/Audio/Explosion01.uasset
(Stored with Git LFS)
BIN
CorruptedMemory 5.1/Content/StarterContent/Audio/Explosion01.uasset
(Stored with Git LFS)
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user