添加项目文件。
This commit is contained in:
75
.gitignore
vendored
Normal file
75
.gitignore
vendored
Normal file
@@ -0,0 +1,75 @@
|
||||
# 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/*
|
||||
9
Config/DefaultEditor.ini
Normal file
9
Config/DefaultEditor.ini
Normal file
@@ -0,0 +1,9 @@
|
||||
[UnrealEd.SimpleMap]
|
||||
SimpleMapName=/Game/FirstPersonBP/Maps/FirstPersonExampleMap
|
||||
|
||||
[EditoronlyBP]
|
||||
bAllowClassAndBlueprintPinMatching=true
|
||||
bReplaceBlueprintWithClass= true
|
||||
bDontLoadBlueprintOutsideEditor= true
|
||||
bBlueprintIsNotBlueprintType= true
|
||||
|
||||
2
Config/DefaultEditorPerProjectUserSettings.ini
Normal file
2
Config/DefaultEditorPerProjectUserSettings.ini
Normal file
@@ -0,0 +1,2 @@
|
||||
[ContentBrowser]
|
||||
ContentBrowserTab1.SelectedPaths=/Game/FirstPersonBP
|
||||
53
Config/DefaultEngine.ini
Normal file
53
Config/DefaultEngine.ini
Normal file
@@ -0,0 +1,53 @@
|
||||
[/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/地图关卡/Map_City.Map_City
|
||||
LocalMapOptions=
|
||||
TransitionMap=
|
||||
bUseSplitscreen=True
|
||||
TwoPlayerSplitscreenLayout=Horizontal
|
||||
ThreePlayerSplitscreenLayout=FavorTop
|
||||
GameInstanceClass=/Script/Engine.GameInstance
|
||||
GameDefaultMap=/Game/地图关卡/Map_City.Map_City
|
||||
ServerDefaultMap=/Engine/Maps/Entry
|
||||
GlobalDefaultGameMode=/Game/ThiefTemplate/Blueprint/Character/BP_ThiefTemplate_GameMode.BP_ThiefTemplate_GameMode_C
|
||||
GlobalDefaultServerGameMode=None
|
||||
|
||||
[/Script/IOSRuntimeSettings.IOSRuntimeSettings]
|
||||
MinimumiOSVersion=IOS_11
|
||||
|
||||
[/Script/HardwareTargeting.HardwareTargetingSettings]
|
||||
TargetedHardwareClass=Desktop
|
||||
AppliedTargetedHardwareClass=Desktop
|
||||
DefaultGraphicsPerformance=Maximum
|
||||
AppliedDefaultGraphicsPerformance=Maximum
|
||||
|
||||
[/Script/Engine.Engine]
|
||||
+ActiveGameNameRedirects=(OldGameName="TP_FirstPersonBP",NewGameName="/Script/Thief_Simulator")
|
||||
+ActiveGameNameRedirects=(OldGameName="/Script/TP_FirstPersonBP",NewGameName="/Script/Thief_Simulator")
|
||||
|
||||
[/Script/Engine.RendererSettings]
|
||||
r.DefaultFeature.AutoExposure=False
|
||||
r.DefaultFeature.MotionBlur=False
|
||||
r.GenerateMeshDistanceFields=True
|
||||
|
||||
[URL]
|
||||
GameName=ThiefTemplate
|
||||
|
||||
[/Script/AndroidFileServerEditor.AndroidFileServerRuntimeSettings]
|
||||
bEnablePlugin=True
|
||||
bAllowNetworkConnection=True
|
||||
SecurityToken=C05E210C4FC12F4FE08E018BFC2A1F79
|
||||
bIncludeInShipping=False
|
||||
bAllowExternalStartInShipping=False
|
||||
bCompileAFSProject=False
|
||||
bUseCompression=False
|
||||
bLogFiles=False
|
||||
bReportStats=False
|
||||
ConnectionType=USBOnly
|
||||
bUseManualIPAddress=False
|
||||
ManualIPAddress=
|
||||
|
||||
5
Config/DefaultGame.ini
Normal file
5
Config/DefaultGame.ini
Normal file
@@ -0,0 +1,5 @@
|
||||
[/Script/EngineSettings.GeneralProjectSettings]
|
||||
ProjectID=2986EC0E4EEBB5E464388C874F51F09C
|
||||
ProjectName=First Person BP Game Template
|
||||
|
||||
|
||||
166
Config/DefaultInput.ini
Normal file
166
Config/DefaultInput.ini
Normal file
@@ -0,0 +1,166 @@
|
||||
|
||||
|
||||
[/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="SteamVR_Knuckles_Right_MiddleGrip",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="SteamVR_Knuckles_Right_RingGrip",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="SteamVR_Knuckles_Right_PinkyGrip",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="Daydream_Left_Trackpad_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="Daydream_Left_Trackpad_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="Daydream_Right_Trackpad_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="Mouse2D",AxisProperties=(DeadZone=0.000000,Sensitivity=0.070000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="Daydream_Right_Trackpad_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="OculusGo_Left_Trackpad_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="OculusGo_Left_Trackpad_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="OculusGo_Right_Trackpad_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="OculusGo_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="MagicLeap_Left_Trigger_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="MagicLeap_Left_Trackpad_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="MagicLeap_Left_Trackpad_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="MagicLeap_Left_Trackpad_Force",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="MagicLeap_Left_Touch1_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="MagicLeap_Left_Touch1_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="MagicLeap_Left_Touch1_Force",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="MagicLeap_Right_Trigger_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="MagicLeap_Right_Trackpad_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="MagicLeap_Right_Trackpad_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="MagicLeap_Right_Trackpad_Force",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="MagicLeap_Right_Touch1_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="MagicLeap_Right_Touch1_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="MagicLeap_Right_Touch1_Force",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,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="MotionController_Left_Thumbstick_Z",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="MotionController_Right_Thumbstick_Z",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,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="MotionController_Left_Thumbstick_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="MotionController_Left_Thumbstick_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="MotionController_Left_TriggerAxis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="MotionController_Left_Grip1Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="MotionController_Left_Grip2Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="MotionController_Right_Thumbstick_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="MotionController_Right_Thumbstick_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="MotionController_Right_TriggerAxis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="MotionController_Right_Grip1Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="MotionController_Right_Grip2Axis",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="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_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="OculusTouchpad_Touchpad_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="OculusTouchpad_Touchpad_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="SteamVR_Knuckles_Left_HandGrip",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="SteamVR_Knuckles_Left_IndexGrip",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="SteamVR_Knuckles_Left_MiddleGrip",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="SteamVR_Knuckles_Left_RingGrip",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="SteamVR_Knuckles_Left_PinkyGrip",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="SteamVR_Knuckles_Right_HandGrip",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||
+AxisConfig=(AxisKeyName="SteamVR_Knuckles_Right_IndexGrip",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
|
||||
bEnableInputDeviceSubsystem=True
|
||||
bShouldFlushPressedKeysOnViewportFocusLost=True
|
||||
bEnableDynamicComponentInputBinding=True
|
||||
bAlwaysShowTouchInterface=False
|
||||
bShowConsoleOnFourFingerTap=True
|
||||
bEnableGestureRecognizer=False
|
||||
bUseAutocorrect=False
|
||||
DefaultViewportMouseCaptureMode=CapturePermanently_IncludingInitialMouseDown
|
||||
DefaultViewportMouseLockMode=LockOnCapture
|
||||
FOVScale=0.011110
|
||||
DoubleClickTime=0.200000
|
||||
+ActionMappings=(ActionName="AnimationInput",bShift=False,bCtrl=False,bAlt=False,bCmd=False,Key=SpaceBar)
|
||||
+ActionMappings=(ActionName="Bag",bShift=False,bCtrl=False,bAlt=False,bCmd=False,Key=Tab)
|
||||
+ActionMappings=(ActionName="Interaction",bShift=False,bCtrl=False,bAlt=False,bCmd=False,Key=E)
|
||||
+ActionMappings=(ActionName="Jump",bShift=False,bCtrl=False,bAlt=False,bCmd=False,Key=SpaceBar)
|
||||
+ActionMappings=(ActionName="ExitLockPick",bShift=False,bCtrl=False,bAlt=False,bCmd=False,Key=SpaceBar)
|
||||
+ActionMappings=(ActionName="Crouch",bShift=False,bCtrl=False,bAlt=False,bCmd=False,Key=C)
|
||||
+ActionMappings=(ActionName="Pin",bShift=False,bCtrl=False,bAlt=False,bCmd=False,Key=LeftMouseButton)
|
||||
+ActionMappings=(ActionName="Exit",bShift=False,bCtrl=False,bAlt=False,bCmd=False,Key=SpaceBar)
|
||||
+ActionMappings=(ActionName="Sprint",bShift=False,bCtrl=False,bAlt=False,bCmd=False,Key=LeftShift)
|
||||
+AxisMappings=(AxisName="LockPick",Scale=1.000000,Key=A)
|
||||
+AxisMappings=(AxisName="LookUp",Scale=-1.000000,Key=MouseY)
|
||||
+AxisMappings=(AxisName="MoveForward",Scale=-1.000000,Key=Down)
|
||||
+AxisMappings=(AxisName="MoveForward",Scale=-1.000000,Key=S)
|
||||
+AxisMappings=(AxisName="MoveForward",Scale=1.000000,Key=Up)
|
||||
+AxisMappings=(AxisName="MoveForward",Scale=1.000000,Key=W)
|
||||
+AxisMappings=(AxisName="MoveRight",Scale=-1.000000,Key=A)
|
||||
+AxisMappings=(AxisName="MoveRight",Scale=1.000000,Key=D)
|
||||
+AxisMappings=(AxisName="Turn",Scale=1.000000,Key=MouseX)
|
||||
+AxisMappings=(AxisName="SlowWalk",Scale=1.000000,Key=LeftControl)
|
||||
DefaultPlayerInputClass=/Script/EnhancedInput.EnhancedPlayerInput
|
||||
DefaultInputComponentClass=/Script/EnhancedInput.EnhancedInputComponent
|
||||
DefaultTouchInterface=/Engine/MobileResources/HUD/DefaultVirtualJoysticks.DefaultVirtualJoysticks
|
||||
-ConsoleKeys=Tilde
|
||||
+ConsoleKeys=Tilde
|
||||
|
||||
BIN
Content/StarterContent/Architecture/Floor_400x400.uasset
LFS
Normal file
BIN
Content/StarterContent/Architecture/Floor_400x400.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Architecture/Pillar_50x500.uasset
LFS
Normal file
BIN
Content/StarterContent/Architecture/Pillar_50x500.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Architecture/SM_AssetPlatform.uasset
LFS
Normal file
BIN
Content/StarterContent/Architecture/SM_AssetPlatform.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Architecture/Wall_400x200.uasset
LFS
Normal file
BIN
Content/StarterContent/Architecture/Wall_400x200.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Architecture/Wall_400x300.uasset
LFS
Normal file
BIN
Content/StarterContent/Architecture/Wall_400x300.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Architecture/Wall_400x400.uasset
LFS
Normal file
BIN
Content/StarterContent/Architecture/Wall_400x400.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Architecture/Wall_500x500.uasset
LFS
Normal file
BIN
Content/StarterContent/Architecture/Wall_500x500.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Architecture/Wall_Door_400x300.uasset
LFS
Normal file
BIN
Content/StarterContent/Architecture/Wall_Door_400x300.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Architecture/Wall_Door_400x400.uasset
LFS
Normal file
BIN
Content/StarterContent/Architecture/Wall_Door_400x400.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Architecture/Wall_Window_400x300.uasset
LFS
Normal file
BIN
Content/StarterContent/Architecture/Wall_Window_400x300.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Architecture/Wall_Window_400x400.uasset
LFS
Normal file
BIN
Content/StarterContent/Architecture/Wall_Window_400x400.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Audio/Collapse01.uasset
LFS
Normal file
BIN
Content/StarterContent/Audio/Collapse01.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Audio/Collapse02.uasset
LFS
Normal file
BIN
Content/StarterContent/Audio/Collapse02.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Audio/Collapse_Cue.uasset
LFS
Normal file
BIN
Content/StarterContent/Audio/Collapse_Cue.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Audio/Explosion01.uasset
LFS
Normal file
BIN
Content/StarterContent/Audio/Explosion01.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Audio/Explosion02.uasset
LFS
Normal file
BIN
Content/StarterContent/Audio/Explosion02.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Audio/Explosion_Cue.uasset
LFS
Normal file
BIN
Content/StarterContent/Audio/Explosion_Cue.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Audio/Fire01.uasset
LFS
Normal file
BIN
Content/StarterContent/Audio/Fire01.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Audio/Fire01_Cue.uasset
LFS
Normal file
BIN
Content/StarterContent/Audio/Fire01_Cue.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Audio/Fire_Sparks01.uasset
LFS
Normal file
BIN
Content/StarterContent/Audio/Fire_Sparks01.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Audio/Fire_Sparks01_Cue.uasset
LFS
Normal file
BIN
Content/StarterContent/Audio/Fire_Sparks01_Cue.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Audio/Light01.uasset
LFS
Normal file
BIN
Content/StarterContent/Audio/Light01.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Audio/Light01_Cue.uasset
LFS
Normal file
BIN
Content/StarterContent/Audio/Light01_Cue.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Audio/Light02.uasset
LFS
Normal file
BIN
Content/StarterContent/Audio/Light02.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Audio/Light02_Cue.uasset
LFS
Normal file
BIN
Content/StarterContent/Audio/Light02_Cue.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Audio/Smoke01.uasset
LFS
Normal file
BIN
Content/StarterContent/Audio/Smoke01.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Audio/Smoke01_Cue.uasset
LFS
Normal file
BIN
Content/StarterContent/Audio/Smoke01_Cue.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Audio/Starter_Background_Cue.uasset
LFS
Normal file
BIN
Content/StarterContent/Audio/Starter_Background_Cue.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Audio/Starter_Birds01.uasset
LFS
Normal file
BIN
Content/StarterContent/Audio/Starter_Birds01.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Audio/Starter_Music01.uasset
LFS
Normal file
BIN
Content/StarterContent/Audio/Starter_Music01.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Audio/Starter_Music_Cue.uasset
LFS
Normal file
BIN
Content/StarterContent/Audio/Starter_Music_Cue.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Audio/Starter_Wind05.uasset
LFS
Normal file
BIN
Content/StarterContent/Audio/Starter_Wind05.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Audio/Starter_Wind06.uasset
LFS
Normal file
BIN
Content/StarterContent/Audio/Starter_Wind06.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Audio/Steam01.uasset
LFS
Normal file
BIN
Content/StarterContent/Audio/Steam01.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Audio/Steam01_Cue.uasset
LFS
Normal file
BIN
Content/StarterContent/Audio/Steam01_Cue.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Blueprints/Assets/FogBrightnessLUT.uasset
LFS
Normal file
BIN
Content/StarterContent/Blueprints/Assets/FogBrightnessLUT.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Blueprints/Assets/M_LightStage_Arrows.uasset
LFS
Normal file
BIN
Content/StarterContent/Blueprints/Assets/M_LightStage_Arrows.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Blueprints/Assets/M_LightStage_Skybox_Black.uasset
LFS
Normal file
BIN
Content/StarterContent/Blueprints/Assets/M_LightStage_Skybox_Black.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Blueprints/Assets/M_LightStage_Skybox_HDRI.uasset
LFS
Normal file
BIN
Content/StarterContent/Blueprints/Assets/M_LightStage_Skybox_HDRI.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Blueprints/Assets/M_LightStage_Skybox_Master.uasset
LFS
Normal file
BIN
Content/StarterContent/Blueprints/Assets/M_LightStage_Skybox_Master.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Blueprints/Assets/SM_Arrows.uasset
LFS
Normal file
BIN
Content/StarterContent/Blueprints/Assets/SM_Arrows.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Blueprints/Assets/Skybox.uasset
LFS
Normal file
BIN
Content/StarterContent/Blueprints/Assets/Skybox.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Blueprints/Assets/SunlightColorLUT.uasset
LFS
Normal file
BIN
Content/StarterContent/Blueprints/Assets/SunlightColorLUT.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Blueprints/BP_LightStudio.uasset
LFS
Normal file
BIN
Content/StarterContent/Blueprints/BP_LightStudio.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Blueprints/Blueprint_CeilingLight.uasset
LFS
Normal file
BIN
Content/StarterContent/Blueprints/Blueprint_CeilingLight.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Blueprints/Blueprint_Effect_Explosion.uasset
LFS
Normal file
BIN
Content/StarterContent/Blueprints/Blueprint_Effect_Explosion.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Blueprints/Blueprint_Effect_Fire.uasset
LFS
Normal file
BIN
Content/StarterContent/Blueprints/Blueprint_Effect_Fire.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Blueprints/Blueprint_Effect_Smoke.uasset
LFS
Normal file
BIN
Content/StarterContent/Blueprints/Blueprint_Effect_Smoke.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Blueprints/Blueprint_Effect_Sparks.uasset
LFS
Normal file
BIN
Content/StarterContent/Blueprints/Blueprint_Effect_Sparks.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Blueprints/Blueprint_Effect_Steam.uasset
LFS
Normal file
BIN
Content/StarterContent/Blueprints/Blueprint_Effect_Steam.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Blueprints/Blueprint_WallSconce.uasset
LFS
Normal file
BIN
Content/StarterContent/Blueprints/Blueprint_WallSconce.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/HDRI/HDRI_Epic_Courtyard_Daylight.uasset
LFS
Normal file
BIN
Content/StarterContent/HDRI/HDRI_Epic_Courtyard_Daylight.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Maps/Advanced_Lighting.umap
Normal file
BIN
Content/StarterContent/Maps/Advanced_Lighting.umap
Normal file
Binary file not shown.
BIN
Content/StarterContent/Maps/Minimal_Default.umap
Normal file
BIN
Content/StarterContent/Maps/Minimal_Default.umap
Normal file
Binary file not shown.
BIN
Content/StarterContent/Maps/StarterMap.umap
Normal file
BIN
Content/StarterContent/Maps/StarterMap.umap
Normal file
Binary file not shown.
BIN
Content/StarterContent/Materials/M_AssetPlatform.uasset
LFS
Normal file
BIN
Content/StarterContent/Materials/M_AssetPlatform.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Materials/M_Basic_Floor.uasset
LFS
Normal file
BIN
Content/StarterContent/Materials/M_Basic_Floor.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Materials/M_Basic_Wall.uasset
LFS
Normal file
BIN
Content/StarterContent/Materials/M_Basic_Wall.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Materials/M_Brick_Clay_Beveled.uasset
LFS
Normal file
BIN
Content/StarterContent/Materials/M_Brick_Clay_Beveled.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Materials/M_Brick_Clay_New.uasset
LFS
Normal file
BIN
Content/StarterContent/Materials/M_Brick_Clay_New.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Materials/M_Brick_Clay_Old.uasset
LFS
Normal file
BIN
Content/StarterContent/Materials/M_Brick_Clay_Old.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Materials/M_Brick_Cut_Stone.uasset
LFS
Normal file
BIN
Content/StarterContent/Materials/M_Brick_Cut_Stone.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Materials/M_Brick_Hewn_Stone.uasset
LFS
Normal file
BIN
Content/StarterContent/Materials/M_Brick_Hewn_Stone.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Materials/M_Ceramic_Tile_Checker.uasset
LFS
Normal file
BIN
Content/StarterContent/Materials/M_Ceramic_Tile_Checker.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Materials/M_CobbleStone_Pebble.uasset
LFS
Normal file
BIN
Content/StarterContent/Materials/M_CobbleStone_Pebble.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Materials/M_CobbleStone_Rough.uasset
LFS
Normal file
BIN
Content/StarterContent/Materials/M_CobbleStone_Rough.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Materials/M_CobbleStone_Smooth.uasset
LFS
Normal file
BIN
Content/StarterContent/Materials/M_CobbleStone_Smooth.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Materials/M_ColorGrid_LowSpec.uasset
LFS
Normal file
BIN
Content/StarterContent/Materials/M_ColorGrid_LowSpec.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Materials/M_Concrete_Grime.uasset
LFS
Normal file
BIN
Content/StarterContent/Materials/M_Concrete_Grime.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Materials/M_Concrete_Panels.uasset
LFS
Normal file
BIN
Content/StarterContent/Materials/M_Concrete_Panels.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Materials/M_Concrete_Poured.uasset
LFS
Normal file
BIN
Content/StarterContent/Materials/M_Concrete_Poured.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Materials/M_Concrete_Tiles.uasset
LFS
Normal file
BIN
Content/StarterContent/Materials/M_Concrete_Tiles.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Materials/M_Glass.uasset
LFS
Normal file
BIN
Content/StarterContent/Materials/M_Glass.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Materials/M_Ground_Grass.uasset
LFS
Normal file
BIN
Content/StarterContent/Materials/M_Ground_Grass.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Materials/M_Ground_Gravel.uasset
LFS
Normal file
BIN
Content/StarterContent/Materials/M_Ground_Gravel.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Materials/M_Ground_Moss.uasset
LFS
Normal file
BIN
Content/StarterContent/Materials/M_Ground_Moss.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Materials/M_Metal_Brushed_Nickel.uasset
LFS
Normal file
BIN
Content/StarterContent/Materials/M_Metal_Brushed_Nickel.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Materials/M_Metal_Burnished_Steel.uasset
LFS
Normal file
BIN
Content/StarterContent/Materials/M_Metal_Burnished_Steel.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Materials/M_Metal_Chrome.uasset
LFS
Normal file
BIN
Content/StarterContent/Materials/M_Metal_Chrome.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Materials/M_Metal_Copper.uasset
LFS
Normal file
BIN
Content/StarterContent/Materials/M_Metal_Copper.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Materials/M_Metal_Gold.uasset
LFS
Normal file
BIN
Content/StarterContent/Materials/M_Metal_Gold.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Materials/M_Metal_Rust.uasset
LFS
Normal file
BIN
Content/StarterContent/Materials/M_Metal_Rust.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Materials/M_Metal_Steel.uasset
LFS
Normal file
BIN
Content/StarterContent/Materials/M_Metal_Steel.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Materials/M_Rock_Basalt.uasset
LFS
Normal file
BIN
Content/StarterContent/Materials/M_Rock_Basalt.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Materials/M_Rock_Marble_Polished.uasset
LFS
Normal file
BIN
Content/StarterContent/Materials/M_Rock_Marble_Polished.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Materials/M_Rock_Sandstone.uasset
LFS
Normal file
BIN
Content/StarterContent/Materials/M_Rock_Sandstone.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Materials/M_Rock_Slate.uasset
LFS
Normal file
BIN
Content/StarterContent/Materials/M_Rock_Slate.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Materials/M_Tech_Checker_Dot.uasset
LFS
Normal file
BIN
Content/StarterContent/Materials/M_Tech_Checker_Dot.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Materials/M_Tech_Hex_Tile.uasset
LFS
Normal file
BIN
Content/StarterContent/Materials/M_Tech_Hex_Tile.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Materials/M_Tech_Hex_Tile_Pulse.uasset
LFS
Normal file
BIN
Content/StarterContent/Materials/M_Tech_Hex_Tile_Pulse.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Materials/M_Tech_Panel.uasset
LFS
Normal file
BIN
Content/StarterContent/Materials/M_Tech_Panel.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Materials/M_Water_Lake.uasset
LFS
Normal file
BIN
Content/StarterContent/Materials/M_Water_Lake.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Materials/M_Water_Ocean.uasset
LFS
Normal file
BIN
Content/StarterContent/Materials/M_Water_Ocean.uasset
LFS
Normal file
Binary file not shown.
BIN
Content/StarterContent/Materials/M_Wood_Floor_Walnut_Polished.uasset
LFS
Normal file
BIN
Content/StarterContent/Materials/M_Wood_Floor_Walnut_Polished.uasset
LFS
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user