Initial project setup. #1
74
.gitignore
vendored
Normal file
74
.gitignore
vendored
Normal file
@ -0,0 +1,74 @@
|
|||||||
|
# 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
|
||||||
|
|
||||||
|
# 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/*
|
8
Config/DefaultEditor.ini
Normal file
8
Config/DefaultEditor.ini
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
[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
|
72
Config/DefaultEngine.ini
Normal file
72
Config/DefaultEngine.ini
Normal file
@ -0,0 +1,72 @@
|
|||||||
|
[/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=/Engine/Maps/Entry
|
||||||
|
GlobalDefaultGameMode=/Game/FirstPerson/Blueprints/BP_FirstPersonGameMode.BP_FirstPersonGameMode_C
|
||||||
|
GlobalDefaultServerGameMode=None
|
||||||
|
|
||||||
|
[/Script/Engine.RendererSettings]
|
||||||
|
r.ReflectionMethod=1
|
||||||
|
r.GenerateMeshDistanceFields=True
|
||||||
|
r.DynamicGlobalIlluminationMethod=1
|
||||||
|
r.DefaultFeature.AutoExposure.ExtendDefaultLuminanceRange=True
|
||||||
|
r.DefaultFeature.AutoExposure.ExtendDefaultLuminanceRange=true
|
||||||
|
r.AllowStaticLighting=False
|
||||||
|
|
||||||
|
r.SkinCache.CompileShaders=True
|
||||||
|
|
||||||
|
r.RayTracing=True
|
||||||
|
|
||||||
|
r.Shadow.Virtual.Enable=1
|
||||||
|
|
||||||
|
r.DefaultFeature.LocalExposure.HighlightContrastScale=0.8
|
||||||
|
|
||||||
|
r.DefaultFeature.LocalExposure.ShadowContrastScale=0.8
|
||||||
|
|
||||||
|
[/Script/WindowsTargetPlatform.WindowsTargetSettings]
|
||||||
|
DefaultGraphicsRHI=DefaultGraphicsRHI_DX12
|
||||||
|
DefaultGraphicsRHI=DefaultGraphicsRHI_DX12
|
||||||
|
-D3D12TargetedShaderFormats=PCD3D_SM5
|
||||||
|
+D3D12TargetedShaderFormats=PCD3D_SM6
|
||||||
|
-D3D11TargetedShaderFormats=PCD3D_SM5
|
||||||
|
+D3D11TargetedShaderFormats=PCD3D_SM5
|
||||||
|
|
||||||
|
[/Script/LinuxTargetPlatform.LinuxTargetSettings]
|
||||||
|
-TargetedRHIs=SF_VULKAN_SM5
|
||||||
|
+TargetedRHIs=SF_VULKAN_SM6
|
||||||
|
|
||||||
|
[/Script/HardwareTargeting.HardwareTargetingSettings]
|
||||||
|
TargetedHardwareClass=Desktop
|
||||||
|
AppliedTargetedHardwareClass=Desktop
|
||||||
|
DefaultGraphicsPerformance=Maximum
|
||||||
|
AppliedDefaultGraphicsPerformance=Maximum
|
||||||
|
|
||||||
|
[/Script/Engine.Engine]
|
||||||
|
+ActiveGameNameRedirects=(OldGameName="TP_FirstPersonBP",NewGameName="/Script/ScaryBogGame")
|
||||||
|
+ActiveGameNameRedirects=(OldGameName="/Script/TP_FirstPersonBP",NewGameName="/Script/ScaryBogGame")
|
||||||
|
|
||||||
|
[/Script/AndroidFileServerEditor.AndroidFileServerRuntimeSettings]
|
||||||
|
bEnablePlugin=True
|
||||||
|
bAllowNetworkConnection=True
|
||||||
|
SecurityToken=134DF68D4F0DA4CA737A928FC5F06842
|
||||||
|
bIncludeInShipping=False
|
||||||
|
bAllowExternalStartInShipping=False
|
||||||
|
bCompileAFSProject=False
|
||||||
|
bUseCompression=False
|
||||||
|
bLogFiles=False
|
||||||
|
bReportStats=False
|
||||||
|
ConnectionType=USBOnly
|
||||||
|
bUseManualIPAddress=False
|
||||||
|
ManualIPAddress=
|
||||||
|
|
10
Config/DefaultGame.ini
Normal file
10
Config/DefaultGame.ini
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
[/Script/EngineSettings.GeneralProjectSettings]
|
||||||
|
ProjectID=6893833248F0DE513602D3A82B0AE27A
|
||||||
|
ProjectName=First Person BP Game Template
|
||||||
|
|
||||||
|
[StartupActions]
|
||||||
|
bAddPacks=True
|
||||||
|
InsertPack=(PackSource="StarterContent.upack",PackName="StarterContent")
|
||||||
|
|
||||||
|
[SectionsToSave]
|
||||||
|
+Section=StartupActions
|
117
Config/DefaultInput.ini
Normal file
117
Config/DefaultInput.ini
Normal file
@ -0,0 +1,117 @@
|
|||||||
|
[/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))
|
||||||
|
+AxisConfig=(AxisKeyName="Cosmos_Left_Grip_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||||
|
+AxisConfig=(AxisKeyName="Cosmos_Left_Trigger_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||||
|
+AxisConfig=(AxisKeyName="Cosmos_Left_Thumbstick_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||||
|
+AxisConfig=(AxisKeyName="Cosmos_Left_Thumbstick_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||||
|
+AxisConfig=(AxisKeyName="Cosmos_Right_Grip_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||||
|
+AxisConfig=(AxisKeyName="Cosmos_Right_Trigger_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||||
|
+AxisConfig=(AxisKeyName="Cosmos_Right_Thumbstick_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
|
||||||
|
+AxisConfig=(AxisKeyName="Cosmos_Right_Thumbstick_Y",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=/Game/FirstPerson/Input/MobileControls.MobileControls
|
||||||
|
-ConsoleKeys=Tilde
|
||||||
|
+ConsoleKeys=Tilde
|
||||||
|
|
BIN
Content/FPWeapon/Audio/FirstPersonTemplateWeaponFire02.uasset
Normal file
BIN
Content/FPWeapon/Audio/FirstPersonTemplateWeaponFire02.uasset
Normal file
Binary file not shown.
BIN
Content/FPWeapon/Materials/BaseMaterial.uasset
Normal file
BIN
Content/FPWeapon/Materials/BaseMaterial.uasset
Normal file
Binary file not shown.
BIN
Content/FPWeapon/Materials/FirstPersonProjectileMaterial.uasset
Normal file
BIN
Content/FPWeapon/Materials/FirstPersonProjectileMaterial.uasset
Normal file
Binary file not shown.
BIN
Content/FPWeapon/Materials/M_FPGun.uasset
Normal file
BIN
Content/FPWeapon/Materials/M_FPGun.uasset
Normal file
Binary file not shown.
BIN
Content/FPWeapon/Materials/M_FPPistol.uasset
Normal file
BIN
Content/FPWeapon/Materials/M_FPPistol.uasset
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Content/FPWeapon/Materials/MaterialLayers/ML_Screen.uasset
Normal file
BIN
Content/FPWeapon/Materials/MaterialLayers/ML_Screen.uasset
Normal file
Binary file not shown.
Binary file not shown.
BIN
Content/FPWeapon/Materials/MaterialLayers/T_ML_Aluminum01.uasset
Normal file
BIN
Content/FPWeapon/Materials/MaterialLayers/T_ML_Aluminum01.uasset
Normal file
Binary file not shown.
Binary file not shown.
BIN
Content/FPWeapon/Materials/MaterialLayers/T_ML_FineRubber.uasset
Normal file
BIN
Content/FPWeapon/Materials/MaterialLayers/T_ML_FineRubber.uasset
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Content/FPWeapon/Mesh/FirstPersonProjectileMesh.uasset
Normal file
BIN
Content/FPWeapon/Mesh/FirstPersonProjectileMesh.uasset
Normal file
Binary file not shown.
BIN
Content/FPWeapon/Mesh/SK_FPGun.uasset
Normal file
BIN
Content/FPWeapon/Mesh/SK_FPGun.uasset
Normal file
Binary file not shown.
BIN
Content/FPWeapon/Mesh/SK_FPGun_Physics.uasset
Normal file
BIN
Content/FPWeapon/Mesh/SK_FPGun_Physics.uasset
Normal file
Binary file not shown.
BIN
Content/FPWeapon/Mesh/SK_FPGun_PhysicsAsset.uasset
Normal file
BIN
Content/FPWeapon/Mesh/SK_FPGun_PhysicsAsset.uasset
Normal file
Binary file not shown.
BIN
Content/FPWeapon/Mesh/SK_FPGun_Skeleton.uasset
Normal file
BIN
Content/FPWeapon/Mesh/SK_FPGun_Skeleton.uasset
Normal file
Binary file not shown.
BIN
Content/FPWeapon/Mesh/SM_Pistol.uasset
Normal file
BIN
Content/FPWeapon/Mesh/SM_Pistol.uasset
Normal file
Binary file not shown.
BIN
Content/FPWeapon/Textures/T_FPGun_M.uasset
Normal file
BIN
Content/FPWeapon/Textures/T_FPGun_M.uasset
Normal file
Binary file not shown.
BIN
Content/FPWeapon/Textures/T_FPGun_N.uasset
Normal file
BIN
Content/FPWeapon/Textures/T_FPGun_N.uasset
Normal file
Binary file not shown.
BIN
Content/FPWeapon/Textures/T_Pistol_Masks.uasset
Normal file
BIN
Content/FPWeapon/Textures/T_Pistol_Masks.uasset
Normal file
Binary file not shown.
BIN
Content/FPWeapon/Textures/T_Pistol_N.uasset
Normal file
BIN
Content/FPWeapon/Textures/T_Pistol_N.uasset
Normal file
Binary file not shown.
BIN
Content/FirstPerson/Blueprints/BP_FirstPersonCharacter.uasset
Normal file
BIN
Content/FirstPerson/Blueprints/BP_FirstPersonCharacter.uasset
Normal file
Binary file not shown.
BIN
Content/FirstPerson/Blueprints/BP_FirstPersonGameMode.uasset
Normal file
BIN
Content/FirstPerson/Blueprints/BP_FirstPersonGameMode.uasset
Normal file
Binary file not shown.
BIN
Content/FirstPerson/Blueprints/BP_FirstPersonProjectile.uasset
Normal file
BIN
Content/FirstPerson/Blueprints/BP_FirstPersonProjectile.uasset
Normal file
Binary file not shown.
BIN
Content/FirstPerson/Blueprints/BP_Pickup_Rifle.uasset
Normal file
BIN
Content/FirstPerson/Blueprints/BP_Pickup_Rifle.uasset
Normal file
Binary file not shown.
BIN
Content/FirstPerson/Blueprints/BP_Weapon_Component.uasset
Normal file
BIN
Content/FirstPerson/Blueprints/BP_Weapon_Component.uasset
Normal file
Binary file not shown.
BIN
Content/FirstPerson/Input/Actions/IA_Jump.uasset
Normal file
BIN
Content/FirstPerson/Input/Actions/IA_Jump.uasset
Normal file
Binary file not shown.
BIN
Content/FirstPerson/Input/Actions/IA_Look.uasset
Normal file
BIN
Content/FirstPerson/Input/Actions/IA_Look.uasset
Normal file
Binary file not shown.
BIN
Content/FirstPerson/Input/Actions/IA_Move.uasset
Normal file
BIN
Content/FirstPerson/Input/Actions/IA_Move.uasset
Normal file
Binary file not shown.
BIN
Content/FirstPerson/Input/Actions/IA_Shoot.uasset
Normal file
BIN
Content/FirstPerson/Input/Actions/IA_Shoot.uasset
Normal file
Binary file not shown.
BIN
Content/FirstPerson/Input/IMC_Default.uasset
Normal file
BIN
Content/FirstPerson/Input/IMC_Default.uasset
Normal file
Binary file not shown.
BIN
Content/FirstPerson/Input/IMC_Weapons.uasset
Normal file
BIN
Content/FirstPerson/Input/IMC_Weapons.uasset
Normal file
Binary file not shown.
BIN
Content/FirstPerson/Input/MobileControls.uasset
Normal file
BIN
Content/FirstPerson/Input/MobileControls.uasset
Normal file
Binary file not shown.
BIN
Content/FirstPerson/Maps/FirstPersonMap.umap
Normal file
BIN
Content/FirstPerson/Maps/FirstPersonMap.umap
Normal file
Binary file not shown.
BIN
Content/FirstPersonArms/Animations/FP_Falling.uasset
Normal file
BIN
Content/FirstPersonArms/Animations/FP_Falling.uasset
Normal file
Binary file not shown.
BIN
Content/FirstPersonArms/Animations/FP_Idle.uasset
Normal file
BIN
Content/FirstPersonArms/Animations/FP_Idle.uasset
Normal file
Binary file not shown.
BIN
Content/FirstPersonArms/Animations/FP_Jump.uasset
Normal file
BIN
Content/FirstPersonArms/Animations/FP_Jump.uasset
Normal file
Binary file not shown.
BIN
Content/FirstPersonArms/Animations/FP_Land.uasset
Normal file
BIN
Content/FirstPersonArms/Animations/FP_Land.uasset
Normal file
Binary file not shown.
BIN
Content/FirstPersonArms/Animations/FP_Rifle_Falling.uasset
Normal file
BIN
Content/FirstPersonArms/Animations/FP_Rifle_Falling.uasset
Normal file
Binary file not shown.
BIN
Content/FirstPersonArms/Animations/FP_Rifle_Fire.uasset
Normal file
BIN
Content/FirstPersonArms/Animations/FP_Rifle_Fire.uasset
Normal file
Binary file not shown.
BIN
Content/FirstPersonArms/Animations/FP_Rifle_Idle.uasset
Normal file
BIN
Content/FirstPersonArms/Animations/FP_Rifle_Idle.uasset
Normal file
Binary file not shown.
BIN
Content/FirstPersonArms/Animations/FP_Rifle_Jump.uasset
Normal file
BIN
Content/FirstPersonArms/Animations/FP_Rifle_Jump.uasset
Normal file
Binary file not shown.
BIN
Content/FirstPersonArms/Animations/FP_Rifle_Land.uasset
Normal file
BIN
Content/FirstPersonArms/Animations/FP_Rifle_Land.uasset
Normal file
Binary file not shown.
BIN
Content/FirstPersonArms/Animations/FP_Rifle_Run.uasset
Normal file
BIN
Content/FirstPersonArms/Animations/FP_Rifle_Run.uasset
Normal file
Binary file not shown.
BIN
Content/FirstPersonArms/Animations/FP_Rifle_Shoot_Montage.uasset
Normal file
BIN
Content/FirstPersonArms/Animations/FP_Rifle_Shoot_Montage.uasset
Normal file
Binary file not shown.
BIN
Content/FirstPersonArms/Animations/FP_Run_Fwd.uasset
Normal file
BIN
Content/FirstPersonArms/Animations/FP_Run_Fwd.uasset
Normal file
Binary file not shown.
BIN
Content/FirstPersonArms/Animations/FirstPerson_AnimBP.uasset
Normal file
BIN
Content/FirstPersonArms/Animations/FirstPerson_AnimBP.uasset
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Content/FirstPersonArms/Character/Materials/M_Mannequin.uasset
Normal file
BIN
Content/FirstPersonArms/Character/Materials/M_Mannequin.uasset
Normal file
Binary file not shown.
BIN
Content/FirstPersonArms/Character/Mesh/SK_Mannequin_Arms.uasset
Normal file
BIN
Content/FirstPersonArms/Character/Mesh/SK_Mannequin_Arms.uasset
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Content/LevelPrototyping/Materials/MF_ProcGrid.uasset
Normal file
BIN
Content/LevelPrototyping/Materials/MF_ProcGrid.uasset
Normal file
Binary file not shown.
BIN
Content/LevelPrototyping/Materials/MI_PrototypeGrid_Gray.uasset
Normal file
BIN
Content/LevelPrototyping/Materials/MI_PrototypeGrid_Gray.uasset
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Content/LevelPrototyping/Materials/MI_Solid_Blue.uasset
Normal file
BIN
Content/LevelPrototyping/Materials/MI_Solid_Blue.uasset
Normal file
Binary file not shown.
BIN
Content/LevelPrototyping/Materials/M_PrototypeGrid.uasset
Normal file
BIN
Content/LevelPrototyping/Materials/M_PrototypeGrid.uasset
Normal file
Binary file not shown.
BIN
Content/LevelPrototyping/Materials/M_Solid.uasset
Normal file
BIN
Content/LevelPrototyping/Materials/M_Solid.uasset
Normal file
Binary file not shown.
BIN
Content/LevelPrototyping/Meshes/SM_ChamferCube.uasset
Normal file
BIN
Content/LevelPrototyping/Meshes/SM_ChamferCube.uasset
Normal file
Binary file not shown.
BIN
Content/LevelPrototyping/Meshes/SM_Cube.uasset
Normal file
BIN
Content/LevelPrototyping/Meshes/SM_Cube.uasset
Normal file
Binary file not shown.
BIN
Content/LevelPrototyping/Meshes/SM_Cylinder.uasset
Normal file
BIN
Content/LevelPrototyping/Meshes/SM_Cylinder.uasset
Normal file
Binary file not shown.
BIN
Content/LevelPrototyping/Meshes/SM_QuarterCylinder.uasset
Normal file
BIN
Content/LevelPrototyping/Meshes/SM_QuarterCylinder.uasset
Normal file
Binary file not shown.
BIN
Content/LevelPrototyping/Meshes/SM_Ramp.uasset
Normal file
BIN
Content/LevelPrototyping/Meshes/SM_Ramp.uasset
Normal file
Binary file not shown.
BIN
Content/LevelPrototyping/Textures/T_GridChecker_A.uasset
Normal file
BIN
Content/LevelPrototyping/Textures/T_GridChecker_A.uasset
Normal file
Binary file not shown.
BIN
Content/StarterContent/Architecture/Floor_400x400.uasset
Normal file
BIN
Content/StarterContent/Architecture/Floor_400x400.uasset
Normal file
Binary file not shown.
BIN
Content/StarterContent/Architecture/Pillar_50x500.uasset
Normal file
BIN
Content/StarterContent/Architecture/Pillar_50x500.uasset
Normal file
Binary file not shown.
BIN
Content/StarterContent/Architecture/SM_AssetPlatform.uasset
Normal file
BIN
Content/StarterContent/Architecture/SM_AssetPlatform.uasset
Normal file
Binary file not shown.
BIN
Content/StarterContent/Architecture/Wall_400x200.uasset
Normal file
BIN
Content/StarterContent/Architecture/Wall_400x200.uasset
Normal file
Binary file not shown.
BIN
Content/StarterContent/Architecture/Wall_400x300.uasset
Normal file
BIN
Content/StarterContent/Architecture/Wall_400x300.uasset
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user