Initial Files
This commit is contained in:
1
.gitattributes
vendored
Normal file
1
.gitattributes
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
Content/** filter=lfs diff=lfs merge=lfs -text
|
15
.gitignore
vendored
Normal file
15
.gitignore
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
Binaries
|
||||||
|
DerivedDataCache
|
||||||
|
Intermediate
|
||||||
|
Saved
|
||||||
|
.vscode
|
||||||
|
.vs
|
||||||
|
.idea
|
||||||
|
*.VC.db
|
||||||
|
*.opensdf
|
||||||
|
*.opendb
|
||||||
|
*.sdf
|
||||||
|
*.sln
|
||||||
|
*.suo
|
||||||
|
*.xcodeproj
|
||||||
|
*.xcworkspace
|
16
.vsconfig
Normal file
16
.vsconfig
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"version": "1.0",
|
||||||
|
"components": [
|
||||||
|
"Microsoft.Net.Component.4.6.2.TargetingPack",
|
||||||
|
"Microsoft.VisualStudio.Component.VC.14.34.17.4.ARM64",
|
||||||
|
"Microsoft.VisualStudio.Component.VC.14.34.17.4.x86.x64",
|
||||||
|
"Microsoft.VisualStudio.Component.VC.Tools.ARM64",
|
||||||
|
"Microsoft.VisualStudio.Component.VC.Tools.x86.x64",
|
||||||
|
"Microsoft.VisualStudio.Component.Windows10SDK",
|
||||||
|
"Microsoft.VisualStudio.Workload.CoreEditor",
|
||||||
|
"Microsoft.VisualStudio.Workload.ManagedDesktop",
|
||||||
|
"Microsoft.VisualStudio.Workload.NativeDesktop",
|
||||||
|
"Microsoft.VisualStudio.Workload.NativeGame",
|
||||||
|
"Microsoft.VisualStudio.Workload.Universal"
|
||||||
|
]
|
||||||
|
}
|
41
Aura.uproject
Normal file
41
Aura.uproject
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
{
|
||||||
|
"FileVersion": 3,
|
||||||
|
"EngineAssociation": "{EB707844-4AD2-1768-89AB-98A7F81F1F38}",
|
||||||
|
"Category": "",
|
||||||
|
"Description": "",
|
||||||
|
"Modules": [
|
||||||
|
{
|
||||||
|
"Name": "Aura",
|
||||||
|
"Type": "Runtime",
|
||||||
|
"LoadingPhase": "Default",
|
||||||
|
"AdditionalDependencies": [
|
||||||
|
"Engine"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"Plugins": [
|
||||||
|
{
|
||||||
|
"Name": "ModelingToolsEditorMode",
|
||||||
|
"Enabled": true,
|
||||||
|
"TargetAllowList": [
|
||||||
|
"Editor"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "DLSS",
|
||||||
|
"Enabled": true,
|
||||||
|
"MarketplaceURL": "https://www.unrealengine.com/marketplace/en-US/product/nvidia-dlss"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "RenderDocPlugin",
|
||||||
|
"Enabled": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"TargetPlatforms": [
|
||||||
|
"Linux",
|
||||||
|
"LinuxArm64",
|
||||||
|
"Windows",
|
||||||
|
"Mac",
|
||||||
|
"HoloLens"
|
||||||
|
]
|
||||||
|
}
|
2
Config/DefaultEditor.ini
Normal file
2
Config/DefaultEditor.ini
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
[/Script/AdvancedPreviewScene.SharedProfiles]
|
||||||
|
|
73
Config/DefaultEngine.ini
Normal file
73
Config/DefaultEngine.ini
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
|
||||||
|
|
||||||
|
[/Script/EngineSettings.GameMapsSettings]
|
||||||
|
GameDefaultMap=/Game/Maps/StartupMap.StartupMap
|
||||||
|
EditorStartupMap=/Game/Maps/StartupMap.StartupMap
|
||||||
|
|
||||||
|
[/Script/WindowsTargetPlatform.WindowsTargetSettings]
|
||||||
|
DefaultGraphicsRHI=DefaultGraphicsRHI_DX12
|
||||||
|
-D3D12TargetedShaderFormats=PCD3D_SM5
|
||||||
|
+D3D12TargetedShaderFormats=PCD3D_SM6
|
||||||
|
-D3D11TargetedShaderFormats=PCD3D_SM5
|
||||||
|
+D3D11TargetedShaderFormats=PCD3D_SM5
|
||||||
|
+VulkanTargetedShaderFormats=SF_VULKAN_SM5
|
||||||
|
Compiler=VisualStudio2022
|
||||||
|
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.RendererSettings]
|
||||||
|
r.GenerateMeshDistanceFields=True
|
||||||
|
r.DynamicGlobalIlluminationMethod=1
|
||||||
|
r.ReflectionMethod=1
|
||||||
|
r.Shadow.Virtual.Enable=1
|
||||||
|
r.DefaultFeature.AutoExposure.ExtendDefaultLuminanceRange=True
|
||||||
|
|
||||||
|
[/Script/WorldPartitionEditor.WorldPartitionEditorSettings]
|
||||||
|
CommandletClass=Class'/Script/UnrealEd.WorldPartitionConvertCommandlet'
|
||||||
|
|
||||||
|
[/Script/Engine.UserInterfaceSettings]
|
||||||
|
bAuthorizeAutomaticWidgetVariableCreation=False
|
||||||
|
|
||||||
|
[/Script/Engine.Engine]
|
||||||
|
+ActiveGameNameRedirects=(OldGameName="TP_BlankBP",NewGameName="/Script/Aura")
|
||||||
|
+ActiveGameNameRedirects=(OldGameName="/Script/TP_BlankBP",NewGameName="/Script/Aura")
|
||||||
|
|
||||||
|
[/Script/AndroidFileServerEditor.AndroidFileServerRuntimeSettings]
|
||||||
|
bEnablePlugin=True
|
||||||
|
bAllowNetworkConnection=True
|
||||||
|
SecurityToken=163520794CA3B087E7F313ABA4A5D7AB
|
||||||
|
bIncludeInShipping=False
|
||||||
|
bAllowExternalStartInShipping=False
|
||||||
|
bCompileAFSProject=False
|
||||||
|
bUseCompression=False
|
||||||
|
bLogFiles=False
|
||||||
|
bReportStats=False
|
||||||
|
ConnectionType=USBOnly
|
||||||
|
bUseManualIPAddress=False
|
||||||
|
ManualIPAddress=
|
||||||
|
|
6
Config/DefaultGame.ini
Normal file
6
Config/DefaultGame.ini
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
|
||||||
|
[/Script/EngineSettings.GeneralProjectSettings]
|
||||||
|
ProjectID=70BA0A3B40E2B9899612678C078FC24A
|
||||||
|
CopyrightNotice=Assets provided by DruidMechanics. Copyright Jonathan Rampersad 2024
|
||||||
|
|
85
Config/DefaultInput.ini
Normal file
85
Config/DefaultInput.ini
Normal file
@ -0,0 +1,85 @@
|
|||||||
|
[/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="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="Mouse2D",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_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))
|
||||||
|
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
|
||||||
|
+ConsoleKeys=Caret
|
||||||
|
|
BIN
Content/Assets/Characters/Aura/Animations/Abilities/Cast_ArcaneShards.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Characters/Aura/Animations/Abilities/Cast_ArcaneShards.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Characters/Aura/Animations/Abilities/Cast_ArcaneShards_Short.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Characters/Aura/Animations/Abilities/Cast_ArcaneShards_Short.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Characters/Aura/Animations/Abilities/Cast_FireBolt.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Characters/Aura/Animations/Abilities/Cast_FireBolt.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Characters/Aura/Animations/Abilities/Cast_Shock.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Characters/Aura/Animations/Abilities/Cast_Shock.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Characters/Aura/Animations/Abilities/Cast_Shock_Loop.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Characters/Aura/Animations/Abilities/Cast_Shock_Loop.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Characters/Aura/Animations/Abilities/HitReact.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Characters/Aura/Animations/Abilities/HitReact.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Characters/Aura/Animations/Abilities/Stun.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Characters/Aura/Animations/Abilities/Stun.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Characters/Aura/Animations/AuraPose.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Characters/Aura/Animations/AuraPose.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Characters/Aura/Animations/Idle.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Characters/Aura/Animations/Idle.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Characters/Aura/Animations/IdleWalkRun.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Characters/Aura/Animations/IdleWalkRun.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Characters/Aura/Animations/InAir.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Characters/Aura/Animations/InAir.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Characters/Aura/Animations/Run.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Characters/Aura/Animations/Run.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Characters/Aura/Animations/Walk.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Characters/Aura/Animations/Walk.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Characters/Aura/Materials/Character_low_ArmGuard_BaseColor.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Characters/Aura/Materials/Character_low_ArmGuard_BaseColor.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Characters/Aura/Materials/Character_low_ArmGuard_Normal.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Characters/Aura/Materials/Character_low_ArmGuard_Normal.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Characters/Aura/Materials/Character_low_ArmGuard_OcclusionRoughnessMetallic.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Characters/Aura/Materials/Character_low_ArmGuard_OcclusionRoughnessMetallic.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Characters/Aura/Materials/Character_low_Belt_BaseColor.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Characters/Aura/Materials/Character_low_Belt_BaseColor.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Characters/Aura/Materials/Character_low_Belt_Normal.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Characters/Aura/Materials/Character_low_Belt_Normal.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Characters/Aura/Materials/Character_low_Belt_OcclusionRoughnessMetallic.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Characters/Aura/Materials/Character_low_Belt_OcclusionRoughnessMetallic.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Characters/Aura/Materials/Character_low_Body_BaseColor.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Characters/Aura/Materials/Character_low_Body_BaseColor.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Characters/Aura/Materials/Character_low_Body_Normal.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Characters/Aura/Materials/Character_low_Body_Normal.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Characters/Aura/Materials/Character_low_Body_OcclusionRoughnessMetallic.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Characters/Aura/Materials/Character_low_Body_OcclusionRoughnessMetallic.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Characters/Aura/Materials/Character_low_Eyes_BaseColor.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Characters/Aura/Materials/Character_low_Eyes_BaseColor.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Characters/Aura/Materials/Character_low_Eyes_Normal.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Characters/Aura/Materials/Character_low_Eyes_Normal.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Characters/Aura/Materials/Character_low_Eyes_OcclusionRoughnessMetallic.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Characters/Aura/Materials/Character_low_Eyes_OcclusionRoughnessMetallic.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Characters/Aura/Materials/Character_low_Hair_BaseColor.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Characters/Aura/Materials/Character_low_Hair_BaseColor.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Characters/Aura/Materials/Character_low_Hair_Normal.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Characters/Aura/Materials/Character_low_Hair_Normal.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Characters/Aura/Materials/Character_low_Hair_OcclusionRoughnessMetallic.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Characters/Aura/Materials/Character_low_Hair_OcclusionRoughnessMetallic.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Characters/Aura/Materials/Character_low_Tunic_BaseColor.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Characters/Aura/Materials/Character_low_Tunic_BaseColor.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Characters/Aura/Materials/Character_low_Tunic_Normal.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Characters/Aura/Materials/Character_low_Tunic_Normal.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Characters/Aura/Materials/Character_low_Tunic_OcclusionRoughnessMetallic.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Characters/Aura/Materials/Character_low_Tunic_OcclusionRoughnessMetallic.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Characters/Aura/Materials/M_ArmGuard.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Characters/Aura/Materials/M_ArmGuard.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Characters/Aura/Materials/M_Belt.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Characters/Aura/Materials/M_Belt.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Characters/Aura/Materials/M_Body.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Characters/Aura/Materials/M_Body.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Characters/Aura/Materials/M_Eyes.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Characters/Aura/Materials/M_Eyes.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Characters/Aura/Materials/M_Hair.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Characters/Aura/Materials/M_Hair.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Characters/Aura/Materials/M_Tunic.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Characters/Aura/Materials/M_Tunic.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Characters/Aura/PA_Aura.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Characters/Aura/PA_Aura.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Characters/Aura/SKM_Aura.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Characters/Aura/SKM_Aura.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Characters/Aura/SK_Aura.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Characters/Aura/SK_Aura.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Characters/Aura/Staff/Materials/M_Floaty.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Characters/Aura/Staff/Materials/M_Floaty.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Characters/Aura/Staff/Materials/M_Staff.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Characters/Aura/Staff/Materials/M_Staff.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Characters/Aura/Staff/Materials/Staff_low_Floaty_BaseColor.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Characters/Aura/Staff/Materials/Staff_low_Floaty_BaseColor.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Characters/Aura/Staff/Materials/Staff_low_Floaty_Emissive.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Characters/Aura/Staff/Materials/Staff_low_Floaty_Emissive.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Characters/Aura/Staff/Materials/Staff_low_Floaty_Normal.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Characters/Aura/Staff/Materials/Staff_low_Floaty_Normal.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Characters/Aura/Staff/Materials/Staff_low_Floaty_OcclusionRoughnessMetallic.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Characters/Aura/Staff/Materials/Staff_low_Floaty_OcclusionRoughnessMetallic.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Characters/Aura/Staff/Materials/Staff_low_Top_BaseColor.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Characters/Aura/Staff/Materials/Staff_low_Top_BaseColor.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Characters/Aura/Staff/Materials/Staff_low_Top_Emissive.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Characters/Aura/Staff/Materials/Staff_low_Top_Emissive.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Characters/Aura/Staff/Materials/Staff_low_Top_Normal.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Characters/Aura/Staff/Materials/Staff_low_Top_Normal.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Characters/Aura/Staff/Materials/Staff_low_Top_OcclusionRoughnessMetallic.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Characters/Aura/Staff/Materials/Staff_low_Top_OcclusionRoughnessMetallic.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Characters/Aura/Staff/PA_Staff.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Characters/Aura/Staff/PA_Staff.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Characters/Aura/Staff/SKM_Staff.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Characters/Aura/Staff/SKM_Staff.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Characters/Aura/Staff/SK_Staff.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Characters/Aura/Staff/SK_Staff.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Characters/Aura/Staff/SM_Staff.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Characters/Aura/Staff/SM_Staff.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Dungeon/Beacon/Material/Beacon_low_DefaultMaterial_BaseColor.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Dungeon/Beacon/Material/Beacon_low_DefaultMaterial_BaseColor.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Dungeon/Beacon/Material/Beacon_low_DefaultMaterial_Emissive.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Dungeon/Beacon/Material/Beacon_low_DefaultMaterial_Emissive.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Dungeon/Beacon/Material/Beacon_low_DefaultMaterial_Normal.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Dungeon/Beacon/Material/Beacon_low_DefaultMaterial_Normal.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Dungeon/Beacon/Material/Beacon_low_DefaultMaterial_OcclusionRoughnessMetallic.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Dungeon/Beacon/Material/Beacon_low_DefaultMaterial_OcclusionRoughnessMetallic.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Dungeon/Beacon/Material/MI_Beacon.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Dungeon/Beacon/Material/MI_Beacon.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Dungeon/Beacon/Material/M_Beacon.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Dungeon/Beacon/Material/M_Beacon.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Dungeon/Beacon/SM_Beacon.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Dungeon/Beacon/SM_Beacon.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Dungeon/Beacon/SM_Pillar.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Dungeon/Beacon/SM_Pillar.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Dungeon/Checkpoint/Checkpoint_low.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Dungeon/Checkpoint/Checkpoint_low.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Dungeon/Checkpoint/Material/Checkpoint_low_DefaultMaterial_BaseColor.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Dungeon/Checkpoint/Material/Checkpoint_low_DefaultMaterial_BaseColor.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Dungeon/Checkpoint/Material/Checkpoint_low_DefaultMaterial_Emissive.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Dungeon/Checkpoint/Material/Checkpoint_low_DefaultMaterial_Emissive.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Dungeon/Checkpoint/Material/Checkpoint_low_DefaultMaterial_Normal.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Dungeon/Checkpoint/Material/Checkpoint_low_DefaultMaterial_Normal.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Dungeon/Checkpoint/Material/Checkpoint_low_DefaultMaterial_OcclusionRoughnessMetallic.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Dungeon/Checkpoint/Material/Checkpoint_low_DefaultMaterial_OcclusionRoughnessMetallic.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Dungeon/Checkpoint/Material/MI_Checkpoint.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Dungeon/Checkpoint/Material/MI_Checkpoint.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Dungeon/Checkpoint/Material/M_Checkpoint.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Dungeon/Checkpoint/Material/M_Checkpoint.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Dungeon/Checkpoint/SM_Checkpoint.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Dungeon/Checkpoint/SM_Checkpoint.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Dungeon/Materials/CornerSmall/M_CornerSmall.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Dungeon/Materials/CornerSmall/M_CornerSmall.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Dungeon/Materials/CornerSmall/T_SmallCorner_Base.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Dungeon/Materials/CornerSmall/T_SmallCorner_Base.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Dungeon/Materials/CornerSmall/T_SmallCorner_Norm.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Dungeon/Materials/CornerSmall/T_SmallCorner_Norm.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Dungeon/Materials/CornerSmall/T_SmallCorner_OcclusionRoughnessMetallic.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Dungeon/Materials/CornerSmall/T_SmallCorner_OcclusionRoughnessMetallic.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Dungeon/Materials/Stairs/M_Stairs_ColumnsRims.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Dungeon/Materials/Stairs/M_Stairs_ColumnsRims.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Dungeon/Materials/Stairs/M_Stairs_Pillars.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Dungeon/Materials/Stairs/M_Stairs_Pillars.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Dungeon/Materials/Stairs/M_Stairs_Rail.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Dungeon/Materials/Stairs/M_Stairs_Rail.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Dungeon/Materials/Stairs/M_Stairs_Steps.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Dungeon/Materials/Stairs/M_Stairs_Steps.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Dungeon/Materials/Stairs/columns_rims_BaseColor.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Dungeon/Materials/Stairs/columns_rims_BaseColor.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Dungeon/Materials/Stairs/columns_rims_Normal.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Dungeon/Materials/Stairs/columns_rims_Normal.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Dungeon/Materials/Stairs/columns_rims_OcclusionRoughnessMetallic.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Dungeon/Materials/Stairs/columns_rims_OcclusionRoughnessMetallic.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Dungeon/Materials/Stairs/pillars_BaseColor.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Dungeon/Materials/Stairs/pillars_BaseColor.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Dungeon/Materials/Stairs/pillars_Normal.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Dungeon/Materials/Stairs/pillars_Normal.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Dungeon/Materials/Stairs/pillars_OcclusionRoughnessMetallic.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Dungeon/Materials/Stairs/pillars_OcclusionRoughnessMetallic.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Dungeon/Materials/Stairs/rail_BaseColor.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Dungeon/Materials/Stairs/rail_BaseColor.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Dungeon/Materials/Stairs/rail_Normal.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Dungeon/Materials/Stairs/rail_Normal.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Dungeon/Materials/Stairs/rail_OcclusionRoughnessMetallic.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Dungeon/Materials/Stairs/rail_OcclusionRoughnessMetallic.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Dungeon/Materials/Stairs/steps_wall_BaseColor.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Dungeon/Materials/Stairs/steps_wall_BaseColor.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Dungeon/Materials/Stairs/steps_wall_Normal.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Dungeon/Materials/Stairs/steps_wall_Normal.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Dungeon/Materials/Stairs/steps_wall_OcclusionRoughnessMetallic.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Dungeon/Materials/Stairs/steps_wall_OcclusionRoughnessMetallic.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Dungeon/Materials/Tileset1/M_Tileset1.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Dungeon/Materials/Tileset1/M_Tileset1.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Assets/Dungeon/Materials/Tileset1/Tileset1_low_DefaultMaterial_BaseColor.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Assets/Dungeon/Materials/Tileset1/Tileset1_low_DefaultMaterial_BaseColor.uasset
(Stored with Git 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