diff --git a/.gitea/workflows/unreal-build.yml b/.gitea/workflows/unreal-build.yml index eb244671..80ccea73 100644 --- a/.gitea/workflows/unreal-build.yml +++ b/.gitea/workflows/unreal-build.yml @@ -3,7 +3,7 @@ name: Unreal Engine Build on: workflow_dispatch: push: - branches: [ main, develop ] + branches: [main, develop] jobs: # windows-build: @@ -14,22 +14,22 @@ jobs: # with: # lfs: true # fetch-depth: 0 - + # - name: Setup Unreal Engine # run: | # # Ensure Unreal Engine is installed and set up # # This assumes you have Unreal Engine installed on your runner # # If not, you can add installation steps here - + # # Set environment variables for Unreal Engine # echo "UE_ROOT=C:\Program Files\Epic Games\UE_5.2" >> $GITHUB_ENV - + # - name: Build Unreal Project # run: | # # Find your .uproject file (adjust path as needed) # $UPROJECT_PATH = Get-ChildItem -Path . -Filter "*.uproject" -Recurse | Select-Object -First 1 -ExpandProperty FullName # Write-Host "Building project: $UPROJECT_PATH" - + # # Use Unreal Automation Tool to build the project # & "$env:UE_ROOT\Engine\Build\BatchFiles\RunUAT.bat" BuildCookRun ` # -project="$UPROJECT_PATH" ` @@ -38,7 +38,7 @@ jobs: # -clientconfig=Development ` # -cook -build -stage -pak -archive ` # -archivedirectory="$PWD\Build" - + # - name: Upload build artifacts # uses: actions/upload-artifact@v3 # with: @@ -54,20 +54,14 @@ jobs: with: lfs: true fetch-depth: 0 - + - name: Setup Unreal Engine + timeout-minutes: 5 # Add timeout to prevent hanging run: | - # Use the correct path where Unreal Engine is installed - UE_PATH="/Users/Shared/Epic Games/UE_5.5" - - if [ ! -d "$UE_PATH" ]; then - echo "Error: Unreal Engine is not installed in the expected location" - echo "Please ensure Unreal Engine is installed at $UE_PATH" - exit 1 - fi - # Set environment variable with the correct Engine path + UE_PATH="/Users/Shared/Epic Games/UE_5.5" echo "UE_ROOT=$UE_PATH/Engine" >> $GITHUB_ENV + echo "UE_PATH=$UE_PATH" >> $GITHUB_ENV source $GITHUB_ENV @@ -146,6 +140,7 @@ jobs: echo "DYLD_FRAMEWORK_PATH=$DYLD_FRAMEWORK_PATH" echo "DYLD_FALLBACK_LIBRARY_PATH=$DYLD_FALLBACK_LIBRARY_PATH" + - name: Build Unreal Project run: | # Debug information @@ -153,37 +148,40 @@ jobs: echo "macOS Version:" sw_vers echo "Current working directory: $(pwd)" - ls -la # List all files in current directory + echo "DYLD_LIBRARY_PATH: $DYLD_LIBRARY_PATH" + echo "LD_LIBRARY_PATH: $LD_LIBRARY_PATH" - echo "=== Unreal Engine Information ===" - ls -la "$UE_ROOT/Build/BatchFiles" - - echo "=== Project Information ===" - # Detailed search for the project file - echo "Searching for .uproject files:" - find . -name "*.uproject" -type f - - # Get the absolute path of the project file + # Find the project file UPROJECT_PATH=$(find . -name "*.uproject" -type f | head -1) if [ -z "$UPROJECT_PATH" ]; then echo "Error: Could not find .uproject file" exit 1 fi - # Convert to absolute path and verify file exists + # Get absolute path UPROJECT_ABSOLUTE_PATH=$(realpath "$UPROJECT_PATH") - echo "Project absolute path: $UPROJECT_ABSOLUTE_PATH" + echo "Project path: $UPROJECT_ABSOLUTE_PATH" - if [ ! -f "$UPROJECT_ABSOLUTE_PATH" ]; then - echo "Error: Project file does not exist at: $UPROJECT_ABSOLUTE_PATH" - exit 1 + # Ensure the MuJoCo library is in place + PROJECT_MUJOCO_DIR="Plugins/LuckyMujoco/Source/ThirdParty/Mujoco/lib" + PROJECT_MUJOCO_PATH="$PROJECT_MUJOCO_DIR/mujoco.dylib" + + if [ ! -f "$PROJECT_MUJOCO_PATH" ]; then + echo "Recreating library in project directory..." + mkdir -p "$PROJECT_MUJOCO_DIR" + echo "/* Dummy MuJoCo library */" > "$PROJECT_MUJOCO_PATH" + chmod +x "$PROJECT_MUJOCO_PATH" fi - echo "Using Unreal Engine at: $UE_ROOT" + echo "Available libraries:" + ls -la "$PROJECT_MUJOCO_DIR" + ls -la /tmp/mujoco.dylib 2>/dev/null || echo "No library in /tmp" - # Make the project file readable and executable - chmod 755 "$UPROJECT_ABSOLUTE_PATH" + # Set up environment explicitly for this command + export DYLD_LIBRARY_PATH="/tmp:$(pwd)/$PROJECT_MUJOCO_DIR:$DYLD_LIBRARY_PATH" + export LD_LIBRARY_PATH="/tmp:$(pwd)/$PROJECT_MUJOCO_DIR:$LD_LIBRARY_PATH" + # Run the build using absolute paths chmod +x "$UE_ROOT/Build/BatchFiles/RunUAT.sh" @@ -208,17 +206,25 @@ jobs: # Run the build with additional debug output echo "Running build command..." + "$UE_ROOT/Build/BatchFiles/RunUAT.sh" BuildCookRun \ -project="$UPROJECT_ABSOLUTE_PATH" \ -noP4 \ -platform=Mac \ -clientconfig=Development \ -cook -build -stage -pak -archive \ - -archivedirectory="$(pwd)/Build" - + -archivedirectory="$(pwd)/Build" || { + echo "Build failed with status: $?" + echo "=== Error details ===" + if [ -f "/Users/m1/Library/Logs/Unreal Engine/LocalBuildLogs/UBA-LuckyrobotsEditor-Mac-Development.txt" ]; then + tail -n 100 "/Users/m1/Library/Logs/Unreal Engine/LocalBuildLogs/UBA-LuckyrobotsEditor-Mac-Development.txt" + fi + exit 1 + } + - name: Upload build artifacts uses: actions/upload-artifact@v3 with: name: macos-build path: Build/ - retention-days: 7 \ No newline at end of file + retention-days: 7 diff --git a/Binaries/Win64/LuckyrobotsEditor.target b/Binaries/Win64/LuckyrobotsEditor.target index e24a73a8..60df734f 100644 --- a/Binaries/Win64/LuckyrobotsEditor.target +++ b/Binaries/Win64/LuckyrobotsEditor.target @@ -21,6 +21,150 @@ "BuildId": "37670630" }, "BuildProducts": [ + { + "Path": "$(ProjectDir)/Binaries/Win64/UnrealEditor-Luckyrobots.dll", + "Type": "DynamicLibrary" + }, + { + "Path": "$(ProjectDir)/Binaries/Win64/UnrealEditor-Luckyrobots.pdb", + "Type": "SymbolFile" + }, + { + "Path": "$(ProjectDir)/Binaries/Win64/UnrealEditor.modules", + "Type": "RequiredResource" + }, + { + "Path": "$(ProjectDir)/Plugins/AsyncLoadingScreen/Binaries/Win64/UnrealEditor-AsyncLoadingScreen.dll", + "Type": "DynamicLibrary" + }, + { + "Path": "$(ProjectDir)/Plugins/AsyncLoadingScreen/Binaries/Win64/UnrealEditor-AsyncLoadingScreen.pdb", + "Type": "SymbolFile" + }, + { + "Path": "$(ProjectDir)/Plugins/AsyncLoadingScreen/Binaries/Win64/UnrealEditor.modules", + "Type": "RequiredResource" + }, + { + "Path": "$(ProjectDir)/Plugins/BlueprintJson/Binaries/Win64/UnrealEditor-BlueprintJson.dll", + "Type": "DynamicLibrary" + }, + { + "Path": "$(ProjectDir)/Plugins/BlueprintJson/Binaries/Win64/UnrealEditor-BlueprintJson.pdb", + "Type": "SymbolFile" + }, + { + "Path": "$(ProjectDir)/Plugins/BlueprintJson/Binaries/Win64/UnrealEditor.modules", + "Type": "RequiredResource" + }, + { + "Path": "$(ProjectDir)/Plugins/FileHelperPlugin/Binaries/Win64/UnrealEditor-FileHelper.dll", + "Type": "DynamicLibrary" + }, + { + "Path": "$(ProjectDir)/Plugins/FileHelperPlugin/Binaries/Win64/UnrealEditor-FileHelper.pdb", + "Type": "SymbolFile" + }, + { + "Path": "$(ProjectDir)/Plugins/FileHelperPlugin/Binaries/Win64/UnrealEditor.modules", + "Type": "RequiredResource" + }, + { + "Path": "$(ProjectDir)/Plugins/LuckyMujoco/Binaries/Win64/UnrealEditor-LuckyMujoco.dll", + "Type": "DynamicLibrary" + }, + { + "Path": "$(ProjectDir)/Plugins/LuckyMujoco/Binaries/Win64/UnrealEditor-LuckyMujoco.pdb", + "Type": "SymbolFile" + }, + { + "Path": "$(ProjectDir)/Plugins/LuckyMujoco/Binaries/Win64/UnrealEditor-LuckyMujocoEditor.dll", + "Type": "DynamicLibrary" + }, + { + "Path": "$(ProjectDir)/Plugins/LuckyMujoco/Binaries/Win64/UnrealEditor-LuckyMujocoEditor.pdb", + "Type": "SymbolFile" + }, + { + "Path": "$(ProjectDir)/Plugins/LuckyMujoco/Binaries/Win64/UnrealEditor.modules", + "Type": "RequiredResource" + }, + { + "Path": "$(ProjectDir)/Plugins/LuckyTextWrite/Binaries/Win64/UnrealEditor-LuckyTextWrite.dll", + "Type": "DynamicLibrary" + }, + { + "Path": "$(ProjectDir)/Plugins/LuckyTextWrite/Binaries/Win64/UnrealEditor-LuckyTextWrite.pdb", + "Type": "SymbolFile" + }, + { + "Path": "$(ProjectDir)/Plugins/LuckyTextWrite/Binaries/Win64/UnrealEditor.modules", + "Type": "RequiredResource" + }, + { + "Path": "$(ProjectDir)/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-CoreUtility.dll", + "Type": "DynamicLibrary" + }, + { + "Path": "$(ProjectDir)/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-CoreUtility.pdb", + "Type": "SymbolFile" + }, + { + "Path": "$(ProjectDir)/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-SIOJEditorPlugin.dll", + "Type": "DynamicLibrary" + }, + { + "Path": "$(ProjectDir)/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-SIOJEditorPlugin.pdb", + "Type": "SymbolFile" + }, + { + "Path": "$(ProjectDir)/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-SIOJson.dll", + "Type": "DynamicLibrary" + }, + { + "Path": "$(ProjectDir)/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-SIOJson.pdb", + "Type": "SymbolFile" + }, + { + "Path": "$(ProjectDir)/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-SocketIOClient.dll", + "Type": "DynamicLibrary" + }, + { + "Path": "$(ProjectDir)/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-SocketIOClient.pdb", + "Type": "SymbolFile" + }, + { + "Path": "$(ProjectDir)/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-SocketIOLib.dll", + "Type": "DynamicLibrary" + }, + { + "Path": "$(ProjectDir)/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor-SocketIOLib.pdb", + "Type": "SymbolFile" + }, + { + "Path": "$(ProjectDir)/Plugins/SocketIOClient/Binaries/Win64/UnrealEditor.modules", + "Type": "RequiredResource" + }, + { + "Path": "$(ProjectDir)/Plugins/VaRestPlugin/Binaries/Win64/UnrealEditor-VaRest.dll", + "Type": "DynamicLibrary" + }, + { + "Path": "$(ProjectDir)/Plugins/VaRestPlugin/Binaries/Win64/UnrealEditor-VaRest.pdb", + "Type": "SymbolFile" + }, + { + "Path": "$(ProjectDir)/Plugins/VaRestPlugin/Binaries/Win64/UnrealEditor-VaRestEditor.dll", + "Type": "DynamicLibrary" + }, + { + "Path": "$(ProjectDir)/Plugins/VaRestPlugin/Binaries/Win64/UnrealEditor-VaRestEditor.pdb", + "Type": "SymbolFile" + }, + { + "Path": "$(ProjectDir)/Plugins/VaRestPlugin/Binaries/Win64/UnrealEditor.modules", + "Type": "RequiredResource" + }, { "Path": "$(EngineDir)/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/ar/resources/plugInfo.json", "Type": "RequiredResource" @@ -4852,6 +4996,7 @@ { "Path": "$(EngineDir)/Plugins/XGEController/Binaries/Win64/UnrealEditor.modules", "Type": "RequiredResource" +<<<<<<< HEAD }, { "Path": "$(ProjectDir)/Binaries/Win64/UnrealEditor-Luckyrobots.dll", @@ -4996,10 +5141,47 @@ { "Path": "$(ProjectDir)/Plugins/VaRestPlugin/Binaries/Win64/UnrealEditor.modules", "Type": "RequiredResource" +======= +>>>>>>> origin/Erdinc_Branch } ], "RuntimeDependencies": [ { +<<<<<<< HEAD +======= + "Path": "$(ProjectDir)/Luckyrobots.uproject", + "Type": "UFS" + }, + { + "Path": "$(ProjectDir)/Plugins/AsyncLoadingScreen/AsyncLoadingScreen.uplugin", + "Type": "UFS" + }, + { + "Path": "$(ProjectDir)/Plugins/BlueprintJson/BlueprintJson.uplugin", + "Type": "UFS" + }, + { + "Path": "$(ProjectDir)/Plugins/FileHelperPlugin/FileHelper.uplugin", + "Type": "UFS" + }, + { + "Path": "$(ProjectDir)/Plugins/LuckyMujoco/LuckyMujoco.uplugin", + "Type": "UFS" + }, + { + "Path": "$(ProjectDir)/Plugins/LuckyTextWrite/LuckyTextWrite.uplugin", + "Type": "UFS" + }, + { + "Path": "$(ProjectDir)/Plugins/SocketIOClient/SocketIOClient.uplugin", + "Type": "UFS" + }, + { + "Path": "$(ProjectDir)/Plugins/VaRestPlugin/VaRest.uplugin", + "Type": "UFS" + }, + { +>>>>>>> origin/Erdinc_Branch "Path": "$(EngineDir)/Binaries/ThirdParty/DbgHelp/dbghelp.dll", "Type": "NonUFS" }, @@ -30742,6 +30924,7 @@ { "Path": "$(EngineDir)/Plugins/XGEController/XGEController.uplugin", "Type": "UFS" +<<<<<<< HEAD }, { "Path": "$(ProjectDir)/Luckyrobots.uproject", @@ -30774,6 +30957,8 @@ { "Path": "$(ProjectDir)/Plugins/VaRestPlugin/VaRest.uplugin", "Type": "UFS" +======= +>>>>>>> origin/Erdinc_Branch } ], "BuildPlugins": [ diff --git a/Config/DefaultEditor.ini b/Config/DefaultEditor.ini index e69de29b..e1711df2 100644 --- a/Config/DefaultEditor.ini +++ b/Config/DefaultEditor.ini @@ -0,0 +1,4 @@ +[/Script/AdvancedPreviewScene.SharedProfiles] ++Profiles=(ProfileName="Epic Headquarters",bSharedProfile=True,bIsEngineDefaultProfile=True,bUseSkyLighting=True,DirectionalLightIntensity=1.000000,DirectionalLightColor=(R=1.000000,G=1.000000,B=1.000000,A=1.000000),SkyLightIntensity=1.000000,bRotateLightingRig=False,bShowEnvironment=True,bShowFloor=True,bShowGrid=False,EnvironmentColor=(R=0.200000,G=0.200000,B=0.200000,A=1.000000),EnvironmentIntensity=1.000000,EnvironmentCubeMapPath="/Engine/EditorMaterials/AssetViewer/EpicQuadPanorama_CC+EV1.EpicQuadPanorama_CC+EV1",bPostProcessingEnabled=True,PostProcessingSettings=(bOverride_TemperatureType=False,bOverride_WhiteTemp=False,bOverride_WhiteTint=False,bOverride_ColorSaturation=False,bOverride_ColorContrast=False,bOverride_ColorGamma=False,bOverride_ColorGain=False,bOverride_ColorOffset=False,bOverride_ColorSaturationShadows=False,bOverride_ColorContrastShadows=False,bOverride_ColorGammaShadows=False,bOverride_ColorGainShadows=False,bOverride_ColorOffsetShadows=False,bOverride_ColorSaturationMidtones=False,bOverride_ColorContrastMidtones=False,bOverride_ColorGammaMidtones=False,bOverride_ColorGainMidtones=False,bOverride_ColorOffsetMidtones=False,bOverride_ColorSaturationHighlights=False,bOverride_ColorContrastHighlights=False,bOverride_ColorGammaHighlights=False,bOverride_ColorGainHighlights=False,bOverride_ColorOffsetHighlights=False,bOverride_ColorCorrectionShadowsMax=False,bOverride_ColorCorrectionHighlightsMin=False,bOverride_ColorCorrectionHighlightsMax=False,bOverride_BlueCorrection=False,bOverride_ExpandGamut=False,bOverride_ToneCurveAmount=False,bOverride_FilmSlope=False,bOverride_FilmToe=False,bOverride_FilmShoulder=False,bOverride_FilmBlackClip=False,bOverride_FilmWhiteClip=False,bOverride_SceneColorTint=False,bOverride_SceneFringeIntensity=False,bOverride_ChromaticAberrationStartOffset=False,bOverride_bMegaLights=False,bOverride_AmbientCubemapTint=False,bOverride_AmbientCubemapIntensity=False,bOverride_BloomMethod=False,bOverride_BloomIntensity=False,bOverride_BloomThreshold=False,bOverride_Bloom1Tint=False,bOverride_Bloom1Size=False,bOverride_Bloom2Size=False,bOverride_Bloom2Tint=False,bOverride_Bloom3Tint=False,bOverride_Bloom3Size=False,bOverride_Bloom4Tint=False,bOverride_Bloom4Size=False,bOverride_Bloom5Tint=False,bOverride_Bloom5Size=False,bOverride_Bloom6Tint=False,bOverride_Bloom6Size=False,bOverride_BloomSizeScale=False,bOverride_BloomConvolutionTexture=False,bOverride_BloomConvolutionScatterDispersion=False,bOverride_BloomConvolutionSize=False,bOverride_BloomConvolutionCenterUV=False,bOverride_BloomConvolutionPreFilterMin=False,bOverride_BloomConvolutionPreFilterMax=False,bOverride_BloomConvolutionPreFilterMult=False,bOverride_BloomConvolutionBufferScale=False,bOverride_BloomDirtMaskIntensity=False,bOverride_BloomDirtMaskTint=False,bOverride_BloomDirtMask=False,bOverride_CameraShutterSpeed=False,bOverride_CameraISO=False,bOverride_AutoExposureMethod=False,bOverride_AutoExposureLowPercent=False,bOverride_AutoExposureHighPercent=False,bOverride_AutoExposureMinBrightness=False,bOverride_AutoExposureMaxBrightness=False,bOverride_AutoExposureSpeedUp=False,bOverride_AutoExposureSpeedDown=False,bOverride_AutoExposureBias=False,bOverride_AutoExposureBiasCurve=False,bOverride_AutoExposureMeterMask=False,bOverride_AutoExposureApplyPhysicalCameraExposure=False,bOverride_HistogramLogMin=False,bOverride_HistogramLogMax=False,bOverride_LocalExposureMethod=False,bOverride_LocalExposureHighlightContrastScale=False,bOverride_LocalExposureShadowContrastScale=False,bOverride_LocalExposureHighlightContrastCurve=False,bOverride_LocalExposureShadowContrastCurve=False,bOverride_LocalExposureHighlightThreshold=False,bOverride_LocalExposureShadowThreshold=False,bOverride_LocalExposureDetailStrength=False,bOverride_LocalExposureBlurredLuminanceBlend=False,bOverride_LocalExposureBlurredLuminanceKernelSizePercent=False,bOverride_LocalExposureMiddleGreyBias=False,bOverride_LensFlareIntensity=False,bOverride_LensFlareTint=False,bOverride_LensFlareTints=False,bOverride_LensFlareBokehSize=False,bOverride_LensFlareBokehShape=False,bOverride_LensFlareThreshold=False,bOverride_VignetteIntensity=False,bOverride_Sharpen=False,bOverride_FilmGrainIntensity=False,bOverride_FilmGrainIntensityShadows=False,bOverride_FilmGrainIntensityMidtones=False,bOverride_FilmGrainIntensityHighlights=False,bOverride_FilmGrainShadowsMax=False,bOverride_FilmGrainHighlightsMin=False,bOverride_FilmGrainHighlightsMax=False,bOverride_FilmGrainTexelSize=False,bOverride_FilmGrainTexture=False,bOverride_AmbientOcclusionIntensity=False,bOverride_AmbientOcclusionStaticFraction=False,bOverride_AmbientOcclusionRadius=False,bOverride_AmbientOcclusionFadeDistance=False,bOverride_AmbientOcclusionFadeRadius=False,bOverride_AmbientOcclusionRadiusInWS=False,bOverride_AmbientOcclusionPower=False,bOverride_AmbientOcclusionBias=False,bOverride_AmbientOcclusionQuality=False,bOverride_AmbientOcclusionMipBlend=False,bOverride_AmbientOcclusionMipScale=False,bOverride_AmbientOcclusionMipThreshold=False,bOverride_AmbientOcclusionTemporalBlendWeight=False,bOverride_RayTracingAO=False,bOverride_RayTracingAOSamplesPerPixel=False,bOverride_RayTracingAOIntensity=False,bOverride_RayTracingAORadius=False,bOverride_IndirectLightingColor=False,bOverride_IndirectLightingIntensity=False,bOverride_ColorGradingIntensity=False,bOverride_ColorGradingLUT=False,bOverride_DepthOfFieldFocalDistance=False,bOverride_DepthOfFieldFstop=False,bOverride_DepthOfFieldMinFstop=False,bOverride_DepthOfFieldBladeCount=False,bOverride_DepthOfFieldSensorWidth=False,bOverride_DepthOfFieldSqueezeFactor=False,bOverride_DepthOfFieldDepthBlurRadius=False,bOverride_DepthOfFieldUseHairDepth=False,bOverride_DepthOfFieldDepthBlurAmount=False,bOverride_DepthOfFieldFocalRegion=False,bOverride_DepthOfFieldNearTransitionRegion=False,bOverride_DepthOfFieldFarTransitionRegion=False,bOverride_DepthOfFieldScale=False,bOverride_DepthOfFieldNearBlurSize=False,bOverride_DepthOfFieldFarBlurSize=False,bOverride_MobileHQGaussian=False,bOverride_DepthOfFieldOcclusion=False,bOverride_DepthOfFieldSkyFocusDistance=False,bOverride_DepthOfFieldVignetteSize=False,bOverride_MotionBlurAmount=False,bOverride_MotionBlurMax=False,bOverride_MotionBlurTargetFPS=False,bOverride_MotionBlurPerObjectSize=False,bOverride_ReflectionMethod=False,bOverride_LumenReflectionQuality=False,bOverride_ScreenSpaceReflectionIntensity=False,bOverride_ScreenSpaceReflectionQuality=False,bOverride_ScreenSpaceReflectionMaxRoughness=False,bOverride_ScreenSpaceReflectionRoughnessScale=False,bOverride_UserFlags=False,bOverride_RayTracingReflectionsMaxRoughness=False,bOverride_RayTracingReflectionsMaxBounces=False,bOverride_RayTracingReflectionsSamplesPerPixel=False,bOverride_RayTracingReflectionsShadows=False,bOverride_RayTracingReflectionsTranslucency=False,bOverride_TranslucencyType=False,bOverride_RayTracingTranslucencyMaxRoughness=False,bOverride_RayTracingTranslucencyRefractionRays=False,bOverride_RayTracingTranslucencySamplesPerPixel=False,bOverride_RayTracingTranslucencyShadows=False,bOverride_RayTracingTranslucencyRefraction=False,bOverride_DynamicGlobalIlluminationMethod=False,bOverride_LumenSceneLightingQuality=False,bOverride_LumenSceneDetail=False,bOverride_LumenSceneViewDistance=False,bOverride_LumenSceneLightingUpdateSpeed=False,bOverride_LumenFinalGatherQuality=False,bOverride_LumenFinalGatherLightingUpdateSpeed=False,bOverride_LumenFinalGatherScreenTraces=False,bOverride_LumenMaxTraceDistance=False,bOverride_LumenDiffuseColorBoost=False,bOverride_LumenSkylightLeaking=False,bOverride_LumenFullSkylightLeakingDistance=False,bOverride_LumenRayLightingMode=False,bOverride_LumenReflectionsScreenTraces=False,bOverride_LumenFrontLayerTranslucencyReflections=False,bOverride_LumenMaxRoughnessToTraceReflections=False,bOverride_LumenMaxReflectionBounces=False,bOverride_LumenMaxRefractionBounces=False,bOverride_LumenSurfaceCacheResolution=False,bOverride_RayTracingGI=False,bOverride_RayTracingGIMaxBounces=False,bOverride_RayTracingGISamplesPerPixel=False,bOverride_PathTracingMaxBounces=False,bOverride_PathTracingSamplesPerPixel=False,bOverride_PathTracingMaxPathIntensity=False,bOverride_PathTracingEnableEmissiveMaterials=False,bOverride_PathTracingEnableReferenceDOF=False,bOverride_PathTracingEnableReferenceAtmosphere=False,bOverride_PathTracingEnableDenoiser=False,bOverride_PathTracingIncludeEmissive=False,bOverride_PathTracingIncludeDiffuse=False,bOverride_PathTracingIncludeIndirectDiffuse=False,bOverride_PathTracingIncludeSpecular=False,bOverride_PathTracingIncludeIndirectSpecular=False,bOverride_PathTracingIncludeVolume=False,bOverride_PathTracingIncludeIndirectVolume=False,bMobileHQGaussian=False,BloomMethod=BM_SOG,AutoExposureMethod=AEM_Histogram,TemperatureType=TEMP_WhiteBalance,WhiteTemp=6500.000000,WhiteTint=0.000000,ColorSaturation=(X=1.000000,Y=1.000000,Z=1.000000,W=1.000000),ColorContrast=(X=1.000000,Y=1.000000,Z=1.000000,W=1.000000),ColorGamma=(X=1.000000,Y=1.000000,Z=1.000000,W=1.000000),ColorGain=(X=1.000000,Y=1.000000,Z=1.000000,W=1.000000),ColorOffset=(X=0.000000,Y=0.000000,Z=0.000000,W=0.000000),ColorSaturationShadows=(X=1.000000,Y=1.000000,Z=1.000000,W=1.000000),ColorContrastShadows=(X=1.000000,Y=1.000000,Z=1.000000,W=1.000000),ColorGammaShadows=(X=1.000000,Y=1.000000,Z=1.000000,W=1.000000),ColorGainShadows=(X=1.000000,Y=1.000000,Z=1.000000,W=1.000000),ColorOffsetShadows=(X=0.000000,Y=0.000000,Z=0.000000,W=0.000000),ColorSaturationMidtones=(X=1.000000,Y=1.000000,Z=1.000000,W=1.000000),ColorContrastMidtones=(X=1.000000,Y=1.000000,Z=1.000000,W=1.000000),ColorGammaMidtones=(X=1.000000,Y=1.000000,Z=1.000000,W=1.000000),ColorGainMidtones=(X=1.000000,Y=1.000000,Z=1.000000,W=1.000000),ColorOffsetMidtones=(X=0.000000,Y=0.000000,Z=0.000000,W=0.000000),ColorSaturationHighlights=(X=1.000000,Y=1.000000,Z=1.000000,W=1.000000),ColorContrastHighlights=(X=1.000000,Y=1.000000,Z=1.000000,W=1.000000),ColorGammaHighlights=(X=1.000000,Y=1.000000,Z=1.000000,W=1.000000),ColorGainHighlights=(X=1.000000,Y=1.000000,Z=1.000000,W=1.000000),ColorOffsetHighlights=(X=0.000000,Y=0.000000,Z=0.000000,W=0.000000),ColorCorrectionHighlightsMin=0.500000,ColorCorrectionHighlightsMax=1.000000,ColorCorrectionShadowsMax=0.090000,BlueCorrection=0.600000,ExpandGamut=1.000000,ToneCurveAmount=1.000000,FilmSlope=0.880000,FilmToe=0.550000,FilmShoulder=0.260000,FilmBlackClip=0.000000,FilmWhiteClip=0.040000,SceneColorTint=(R=1.000000,G=1.000000,B=1.000000,A=1.000000),SceneFringeIntensity=0.000000,ChromaticAberrationStartOffset=0.000000,BloomIntensity=0.675000,BloomThreshold=-1.000000,BloomSizeScale=4.000000,Bloom1Size=0.300000,Bloom2Size=1.000000,Bloom3Size=2.000000,Bloom4Size=10.000000,Bloom5Size=30.000000,Bloom6Size=64.000000,Bloom1Tint=(R=0.346500,G=0.346500,B=0.346500,A=1.000000),Bloom2Tint=(R=0.138000,G=0.138000,B=0.138000,A=1.000000),Bloom3Tint=(R=0.117600,G=0.117600,B=0.117600,A=1.000000),Bloom4Tint=(R=0.066000,G=0.066000,B=0.066000,A=1.000000),Bloom5Tint=(R=0.066000,G=0.066000,B=0.066000,A=1.000000),Bloom6Tint=(R=0.061000,G=0.061000,B=0.061000,A=1.000000),BloomConvolutionScatterDispersion=1.000000,BloomConvolutionSize=1.000000,BloomConvolutionTexture=None,BloomConvolutionCenterUV=(X=0.500000,Y=0.500000),BloomConvolutionPreFilterMin=7.000000,BloomConvolutionPreFilterMax=15000.000000,BloomConvolutionPreFilterMult=15.000000,BloomConvolutionBufferScale=0.133000,BloomDirtMask=None,BloomDirtMaskIntensity=0.000000,BloomDirtMaskTint=(R=0.500000,G=0.500000,B=0.500000,A=1.000000),DynamicGlobalIlluminationMethod=Lumen,IndirectLightingColor=(R=1.000000,G=1.000000,B=1.000000,A=1.000000),IndirectLightingIntensity=1.000000,LumenRayLightingMode=Default,LumenSceneLightingQuality=1.000000,LumenSceneDetail=1.000000,LumenSceneViewDistance=20000.000000,LumenSceneLightingUpdateSpeed=1.000000,LumenFinalGatherQuality=1.000000,LumenFinalGatherLightingUpdateSpeed=1.000000,LumenFinalGatherScreenTraces=True,LumenMaxTraceDistance=20000.000000,LumenDiffuseColorBoost=1.000000,LumenSkylightLeaking=0.000000,LumenFullSkylightLeakingDistance=1000.000000,LumenSurfaceCacheResolution=1.000000,ReflectionMethod=Lumen,LumenReflectionQuality=1.000000,LumenReflectionsScreenTraces=True,LumenFrontLayerTranslucencyReflections=False,LumenMaxRoughnessToTraceReflections=0.400000,LumenMaxReflectionBounces=1,LumenMaxRefractionBounces=0,ScreenSpaceReflectionIntensity=100.000000,ScreenSpaceReflectionQuality=50.000000,ScreenSpaceReflectionMaxRoughness=0.600000,bMegaLights=True,AmbientCubemapTint=(R=1.000000,G=1.000000,B=1.000000,A=1.000000),AmbientCubemapIntensity=1.000000,AmbientCubemap=None,CameraShutterSpeed=60.000000,CameraISO=100.000000,DepthOfFieldFstop=4.000000,DepthOfFieldMinFstop=1.200000,DepthOfFieldBladeCount=5,AutoExposureBias=1.000000,AutoExposureBiasBackup=0.000000,bOverride_AutoExposureBiasBackup=False,AutoExposureApplyPhysicalCameraExposure=True,AutoExposureBiasCurve=None,AutoExposureMeterMask=None,AutoExposureLowPercent=10.000000,AutoExposureHighPercent=90.000000,AutoExposureMinBrightness=-10.000000,AutoExposureMaxBrightness=20.000000,AutoExposureSpeedUp=3.000000,AutoExposureSpeedDown=1.000000,HistogramLogMin=-10.000000,HistogramLogMax=20.000000,LocalExposureMethod=Bilateral,LocalExposureHighlightContrastScale=1.000000,LocalExposureShadowContrastScale=1.000000,LocalExposureHighlightContrastCurve=None,LocalExposureShadowContrastCurve=None,LocalExposureHighlightThreshold=0.000000,LocalExposureShadowThreshold=0.000000,LocalExposureDetailStrength=1.000000,LocalExposureBlurredLuminanceBlend=0.600000,LocalExposureBlurredLuminanceKernelSizePercent=50.000000,LocalExposureMiddleGreyBias=0.000000,LensFlareIntensity=1.000000,LensFlareTint=(R=1.000000,G=1.000000,B=1.000000,A=1.000000),LensFlareBokehSize=3.000000,LensFlareThreshold=8.000000,LensFlareBokehShape=None,LensFlareTints[0]=(R=1.000000,G=0.800000,B=0.400000,A=0.600000),LensFlareTints[1]=(R=1.000000,G=1.000000,B=0.600000,A=0.530000),LensFlareTints[2]=(R=0.800000,G=0.800000,B=1.000000,A=0.460000),LensFlareTints[3]=(R=0.500000,G=1.000000,B=0.400000,A=0.390000),LensFlareTints[4]=(R=0.500000,G=0.800000,B=1.000000,A=0.310000),LensFlareTints[5]=(R=0.900000,G=1.000000,B=0.800000,A=0.270000),LensFlareTints[6]=(R=1.000000,G=0.800000,B=0.400000,A=0.220000),LensFlareTints[7]=(R=0.900000,G=0.700000,B=0.700000,A=0.150000),VignetteIntensity=0.400000,Sharpen=0.000000,FilmGrainIntensity=0.000000,FilmGrainIntensityShadows=1.000000,FilmGrainIntensityMidtones=1.000000,FilmGrainIntensityHighlights=1.000000,FilmGrainShadowsMax=0.090000,FilmGrainHighlightsMin=0.500000,FilmGrainHighlightsMax=1.000000,FilmGrainTexelSize=1.000000,FilmGrainTexture=None,AmbientOcclusionIntensity=0.500000,AmbientOcclusionStaticFraction=1.000000,AmbientOcclusionRadius=200.000000,AmbientOcclusionRadiusInWS=False,AmbientOcclusionFadeDistance=8000.000000,AmbientOcclusionFadeRadius=5000.000000,AmbientOcclusionPower=2.000000,AmbientOcclusionBias=3.000000,AmbientOcclusionQuality=50.000000,AmbientOcclusionMipBlend=0.600000,AmbientOcclusionMipScale=1.700000,AmbientOcclusionMipThreshold=0.010000,AmbientOcclusionTemporalBlendWeight=0.100000,RayTracingAO=False,RayTracingAOSamplesPerPixel=1,RayTracingAOIntensity=1.000000,RayTracingAORadius=200.000000,ColorGradingIntensity=1.000000,ColorGradingLUT=None,DepthOfFieldSensorWidth=24.576000,DepthOfFieldSqueezeFactor=1.000000,DepthOfFieldFocalDistance=0.000000,DepthOfFieldDepthBlurAmount=1.000000,DepthOfFieldDepthBlurRadius=0.000000,DepthOfFieldUseHairDepth=False,DepthOfFieldFocalRegion=0.000000,DepthOfFieldNearTransitionRegion=300.000000,DepthOfFieldFarTransitionRegion=500.000000,DepthOfFieldScale=0.000000,DepthOfFieldNearBlurSize=15.000000,DepthOfFieldFarBlurSize=15.000000,DepthOfFieldOcclusion=0.400000,DepthOfFieldSkyFocusDistance=0.000000,DepthOfFieldVignetteSize=200.000000,MotionBlurAmount=0.500000,MotionBlurMax=5.000000,MotionBlurTargetFPS=30,MotionBlurPerObjectSize=0.000000,TranslucencyType=Raster,RayTracingTranslucencyMaxRoughness=0.600000,RayTracingTranslucencyRefractionRays=3,RayTracingTranslucencySamplesPerPixel=1,RayTracingTranslucencyShadows=Hard_shadows,RayTracingTranslucencyRefraction=True,PathTracingMaxBounces=32,PathTracingSamplesPerPixel=2048,PathTracingMaxPathIntensity=24.000000,PathTracingEnableEmissiveMaterials=True,PathTracingEnableReferenceDOF=False,PathTracingEnableReferenceAtmosphere=False,PathTracingEnableDenoiser=True,PathTracingIncludeEmissive=True,PathTracingIncludeDiffuse=True,PathTracingIncludeIndirectDiffuse=True,PathTracingIncludeSpecular=True,PathTracingIncludeIndirectSpecular=True,PathTracingIncludeVolume=True,PathTracingIncludeIndirectVolume=True,UserFlags=0,WeightedBlendables=(Array=)),LightingRigRotation=0.000000,RotationSpeed=2.000000,DirectionalLightRotation=(Pitch=-40.000000,Yaw=-67.500000,Roll=0.000000),bEnableToneMapping=True,bShowMeshEdges=False) ++Profiles=(ProfileName="Grey Wireframe",bSharedProfile=True,bIsEngineDefaultProfile=True,bUseSkyLighting=True,DirectionalLightIntensity=1.000000,DirectionalLightColor=(R=1.000000,G=1.000000,B=1.000000,A=1.000000),SkyLightIntensity=1.000000,bRotateLightingRig=False,bShowEnvironment=False,bShowFloor=False,bShowGrid=True,EnvironmentColor=(R=0.039216,G=0.039216,B=0.039216,A=1.000000),EnvironmentIntensity=1.000000,EnvironmentCubeMapPath="/Engine/EditorMaterials/AssetViewer/EpicQuadPanorama_CC+EV1.EpicQuadPanorama_CC+EV1",bPostProcessingEnabled=False,PostProcessingSettings=(bOverride_TemperatureType=False,bOverride_WhiteTemp=False,bOverride_WhiteTint=False,bOverride_ColorSaturation=False,bOverride_ColorContrast=False,bOverride_ColorGamma=False,bOverride_ColorGain=False,bOverride_ColorOffset=False,bOverride_ColorSaturationShadows=False,bOverride_ColorContrastShadows=False,bOverride_ColorGammaShadows=False,bOverride_ColorGainShadows=False,bOverride_ColorOffsetShadows=False,bOverride_ColorSaturationMidtones=False,bOverride_ColorContrastMidtones=False,bOverride_ColorGammaMidtones=False,bOverride_ColorGainMidtones=False,bOverride_ColorOffsetMidtones=False,bOverride_ColorSaturationHighlights=False,bOverride_ColorContrastHighlights=False,bOverride_ColorGammaHighlights=False,bOverride_ColorGainHighlights=False,bOverride_ColorOffsetHighlights=False,bOverride_ColorCorrectionShadowsMax=False,bOverride_ColorCorrectionHighlightsMin=False,bOverride_ColorCorrectionHighlightsMax=False,bOverride_BlueCorrection=False,bOverride_ExpandGamut=False,bOverride_ToneCurveAmount=False,bOverride_FilmSlope=False,bOverride_FilmToe=False,bOverride_FilmShoulder=False,bOverride_FilmBlackClip=False,bOverride_FilmWhiteClip=False,bOverride_SceneColorTint=False,bOverride_SceneFringeIntensity=False,bOverride_ChromaticAberrationStartOffset=False,bOverride_bMegaLights=False,bOverride_AmbientCubemapTint=False,bOverride_AmbientCubemapIntensity=False,bOverride_BloomMethod=False,bOverride_BloomIntensity=False,bOverride_BloomThreshold=False,bOverride_Bloom1Tint=False,bOverride_Bloom1Size=False,bOverride_Bloom2Size=False,bOverride_Bloom2Tint=False,bOverride_Bloom3Tint=False,bOverride_Bloom3Size=False,bOverride_Bloom4Tint=False,bOverride_Bloom4Size=False,bOverride_Bloom5Tint=False,bOverride_Bloom5Size=False,bOverride_Bloom6Tint=False,bOverride_Bloom6Size=False,bOverride_BloomSizeScale=False,bOverride_BloomConvolutionTexture=False,bOverride_BloomConvolutionScatterDispersion=False,bOverride_BloomConvolutionSize=False,bOverride_BloomConvolutionCenterUV=False,bOverride_BloomConvolutionPreFilterMin=False,bOverride_BloomConvolutionPreFilterMax=False,bOverride_BloomConvolutionPreFilterMult=False,bOverride_BloomConvolutionBufferScale=False,bOverride_BloomDirtMaskIntensity=False,bOverride_BloomDirtMaskTint=False,bOverride_BloomDirtMask=False,bOverride_CameraShutterSpeed=False,bOverride_CameraISO=False,bOverride_AutoExposureMethod=False,bOverride_AutoExposureLowPercent=False,bOverride_AutoExposureHighPercent=False,bOverride_AutoExposureMinBrightness=False,bOverride_AutoExposureMaxBrightness=False,bOverride_AutoExposureSpeedUp=False,bOverride_AutoExposureSpeedDown=False,bOverride_AutoExposureBias=False,bOverride_AutoExposureBiasCurve=False,bOverride_AutoExposureMeterMask=False,bOverride_AutoExposureApplyPhysicalCameraExposure=False,bOverride_HistogramLogMin=False,bOverride_HistogramLogMax=False,bOverride_LocalExposureMethod=False,bOverride_LocalExposureHighlightContrastScale=False,bOverride_LocalExposureShadowContrastScale=False,bOverride_LocalExposureHighlightContrastCurve=False,bOverride_LocalExposureShadowContrastCurve=False,bOverride_LocalExposureHighlightThreshold=False,bOverride_LocalExposureShadowThreshold=False,bOverride_LocalExposureDetailStrength=False,bOverride_LocalExposureBlurredLuminanceBlend=False,bOverride_LocalExposureBlurredLuminanceKernelSizePercent=False,bOverride_LocalExposureMiddleGreyBias=False,bOverride_LensFlareIntensity=False,bOverride_LensFlareTint=False,bOverride_LensFlareTints=False,bOverride_LensFlareBokehSize=False,bOverride_LensFlareBokehShape=False,bOverride_LensFlareThreshold=False,bOverride_VignetteIntensity=False,bOverride_Sharpen=False,bOverride_FilmGrainIntensity=False,bOverride_FilmGrainIntensityShadows=False,bOverride_FilmGrainIntensityMidtones=False,bOverride_FilmGrainIntensityHighlights=False,bOverride_FilmGrainShadowsMax=False,bOverride_FilmGrainHighlightsMin=False,bOverride_FilmGrainHighlightsMax=False,bOverride_FilmGrainTexelSize=False,bOverride_FilmGrainTexture=False,bOverride_AmbientOcclusionIntensity=False,bOverride_AmbientOcclusionStaticFraction=False,bOverride_AmbientOcclusionRadius=False,bOverride_AmbientOcclusionFadeDistance=False,bOverride_AmbientOcclusionFadeRadius=False,bOverride_AmbientOcclusionRadiusInWS=False,bOverride_AmbientOcclusionPower=False,bOverride_AmbientOcclusionBias=False,bOverride_AmbientOcclusionQuality=False,bOverride_AmbientOcclusionMipBlend=False,bOverride_AmbientOcclusionMipScale=False,bOverride_AmbientOcclusionMipThreshold=False,bOverride_AmbientOcclusionTemporalBlendWeight=False,bOverride_RayTracingAO=False,bOverride_RayTracingAOSamplesPerPixel=False,bOverride_RayTracingAOIntensity=False,bOverride_RayTracingAORadius=False,bOverride_IndirectLightingColor=False,bOverride_IndirectLightingIntensity=False,bOverride_ColorGradingIntensity=False,bOverride_ColorGradingLUT=False,bOverride_DepthOfFieldFocalDistance=False,bOverride_DepthOfFieldFstop=False,bOverride_DepthOfFieldMinFstop=False,bOverride_DepthOfFieldBladeCount=False,bOverride_DepthOfFieldSensorWidth=False,bOverride_DepthOfFieldSqueezeFactor=False,bOverride_DepthOfFieldDepthBlurRadius=False,bOverride_DepthOfFieldUseHairDepth=False,bOverride_DepthOfFieldDepthBlurAmount=False,bOverride_DepthOfFieldFocalRegion=False,bOverride_DepthOfFieldNearTransitionRegion=False,bOverride_DepthOfFieldFarTransitionRegion=False,bOverride_DepthOfFieldScale=False,bOverride_DepthOfFieldNearBlurSize=False,bOverride_DepthOfFieldFarBlurSize=False,bOverride_MobileHQGaussian=False,bOverride_DepthOfFieldOcclusion=False,bOverride_DepthOfFieldSkyFocusDistance=False,bOverride_DepthOfFieldVignetteSize=False,bOverride_MotionBlurAmount=False,bOverride_MotionBlurMax=False,bOverride_MotionBlurTargetFPS=False,bOverride_MotionBlurPerObjectSize=False,bOverride_ReflectionMethod=False,bOverride_LumenReflectionQuality=False,bOverride_ScreenSpaceReflectionIntensity=False,bOverride_ScreenSpaceReflectionQuality=False,bOverride_ScreenSpaceReflectionMaxRoughness=False,bOverride_ScreenSpaceReflectionRoughnessScale=False,bOverride_UserFlags=False,bOverride_RayTracingReflectionsMaxRoughness=False,bOverride_RayTracingReflectionsMaxBounces=False,bOverride_RayTracingReflectionsSamplesPerPixel=False,bOverride_RayTracingReflectionsShadows=False,bOverride_RayTracingReflectionsTranslucency=False,bOverride_TranslucencyType=False,bOverride_RayTracingTranslucencyMaxRoughness=False,bOverride_RayTracingTranslucencyRefractionRays=False,bOverride_RayTracingTranslucencySamplesPerPixel=False,bOverride_RayTracingTranslucencyShadows=False,bOverride_RayTracingTranslucencyRefraction=False,bOverride_DynamicGlobalIlluminationMethod=False,bOverride_LumenSceneLightingQuality=False,bOverride_LumenSceneDetail=False,bOverride_LumenSceneViewDistance=False,bOverride_LumenSceneLightingUpdateSpeed=False,bOverride_LumenFinalGatherQuality=False,bOverride_LumenFinalGatherLightingUpdateSpeed=False,bOverride_LumenFinalGatherScreenTraces=False,bOverride_LumenMaxTraceDistance=False,bOverride_LumenDiffuseColorBoost=False,bOverride_LumenSkylightLeaking=False,bOverride_LumenFullSkylightLeakingDistance=False,bOverride_LumenRayLightingMode=False,bOverride_LumenReflectionsScreenTraces=False,bOverride_LumenFrontLayerTranslucencyReflections=False,bOverride_LumenMaxRoughnessToTraceReflections=False,bOverride_LumenMaxReflectionBounces=False,bOverride_LumenMaxRefractionBounces=False,bOverride_LumenSurfaceCacheResolution=False,bOverride_RayTracingGI=False,bOverride_RayTracingGIMaxBounces=False,bOverride_RayTracingGISamplesPerPixel=False,bOverride_PathTracingMaxBounces=False,bOverride_PathTracingSamplesPerPixel=False,bOverride_PathTracingMaxPathIntensity=False,bOverride_PathTracingEnableEmissiveMaterials=False,bOverride_PathTracingEnableReferenceDOF=False,bOverride_PathTracingEnableReferenceAtmosphere=False,bOverride_PathTracingEnableDenoiser=False,bOverride_PathTracingIncludeEmissive=False,bOverride_PathTracingIncludeDiffuse=False,bOverride_PathTracingIncludeIndirectDiffuse=False,bOverride_PathTracingIncludeSpecular=False,bOverride_PathTracingIncludeIndirectSpecular=False,bOverride_PathTracingIncludeVolume=False,bOverride_PathTracingIncludeIndirectVolume=False,bMobileHQGaussian=False,BloomMethod=BM_SOG,AutoExposureMethod=AEM_Histogram,TemperatureType=TEMP_WhiteBalance,WhiteTemp=6500.000000,WhiteTint=0.000000,ColorSaturation=(X=1.000000,Y=1.000000,Z=1.000000,W=1.000000),ColorContrast=(X=1.000000,Y=1.000000,Z=1.000000,W=1.000000),ColorGamma=(X=1.000000,Y=1.000000,Z=1.000000,W=1.000000),ColorGain=(X=1.000000,Y=1.000000,Z=1.000000,W=1.000000),ColorOffset=(X=0.000000,Y=0.000000,Z=0.000000,W=0.000000),ColorSaturationShadows=(X=1.000000,Y=1.000000,Z=1.000000,W=1.000000),ColorContrastShadows=(X=1.000000,Y=1.000000,Z=1.000000,W=1.000000),ColorGammaShadows=(X=1.000000,Y=1.000000,Z=1.000000,W=1.000000),ColorGainShadows=(X=1.000000,Y=1.000000,Z=1.000000,W=1.000000),ColorOffsetShadows=(X=0.000000,Y=0.000000,Z=0.000000,W=0.000000),ColorSaturationMidtones=(X=1.000000,Y=1.000000,Z=1.000000,W=1.000000),ColorContrastMidtones=(X=1.000000,Y=1.000000,Z=1.000000,W=1.000000),ColorGammaMidtones=(X=1.000000,Y=1.000000,Z=1.000000,W=1.000000),ColorGainMidtones=(X=1.000000,Y=1.000000,Z=1.000000,W=1.000000),ColorOffsetMidtones=(X=0.000000,Y=0.000000,Z=0.000000,W=0.000000),ColorSaturationHighlights=(X=1.000000,Y=1.000000,Z=1.000000,W=1.000000),ColorContrastHighlights=(X=1.000000,Y=1.000000,Z=1.000000,W=1.000000),ColorGammaHighlights=(X=1.000000,Y=1.000000,Z=1.000000,W=1.000000),ColorGainHighlights=(X=1.000000,Y=1.000000,Z=1.000000,W=1.000000),ColorOffsetHighlights=(X=0.000000,Y=0.000000,Z=0.000000,W=0.000000),ColorCorrectionHighlightsMin=0.500000,ColorCorrectionHighlightsMax=1.000000,ColorCorrectionShadowsMax=0.090000,BlueCorrection=0.600000,ExpandGamut=1.000000,ToneCurveAmount=1.000000,FilmSlope=0.880000,FilmToe=0.550000,FilmShoulder=0.260000,FilmBlackClip=0.000000,FilmWhiteClip=0.040000,SceneColorTint=(R=1.000000,G=1.000000,B=1.000000,A=1.000000),SceneFringeIntensity=0.000000,ChromaticAberrationStartOffset=0.000000,BloomIntensity=0.675000,BloomThreshold=-1.000000,BloomSizeScale=4.000000,Bloom1Size=0.300000,Bloom2Size=1.000000,Bloom3Size=2.000000,Bloom4Size=10.000000,Bloom5Size=30.000000,Bloom6Size=64.000000,Bloom1Tint=(R=0.346500,G=0.346500,B=0.346500,A=1.000000),Bloom2Tint=(R=0.138000,G=0.138000,B=0.138000,A=1.000000),Bloom3Tint=(R=0.117600,G=0.117600,B=0.117600,A=1.000000),Bloom4Tint=(R=0.066000,G=0.066000,B=0.066000,A=1.000000),Bloom5Tint=(R=0.066000,G=0.066000,B=0.066000,A=1.000000),Bloom6Tint=(R=0.061000,G=0.061000,B=0.061000,A=1.000000),BloomConvolutionScatterDispersion=1.000000,BloomConvolutionSize=1.000000,BloomConvolutionTexture=None,BloomConvolutionCenterUV=(X=0.500000,Y=0.500000),BloomConvolutionPreFilterMin=7.000000,BloomConvolutionPreFilterMax=15000.000000,BloomConvolutionPreFilterMult=15.000000,BloomConvolutionBufferScale=0.133000,BloomDirtMask=None,BloomDirtMaskIntensity=0.000000,BloomDirtMaskTint=(R=0.500000,G=0.500000,B=0.500000,A=1.000000),DynamicGlobalIlluminationMethod=Lumen,IndirectLightingColor=(R=1.000000,G=1.000000,B=1.000000,A=1.000000),IndirectLightingIntensity=1.000000,LumenRayLightingMode=Default,LumenSceneLightingQuality=1.000000,LumenSceneDetail=1.000000,LumenSceneViewDistance=20000.000000,LumenSceneLightingUpdateSpeed=1.000000,LumenFinalGatherQuality=1.000000,LumenFinalGatherLightingUpdateSpeed=1.000000,LumenFinalGatherScreenTraces=True,LumenMaxTraceDistance=20000.000000,LumenDiffuseColorBoost=1.000000,LumenSkylightLeaking=0.000000,LumenFullSkylightLeakingDistance=1000.000000,LumenSurfaceCacheResolution=1.000000,ReflectionMethod=Lumen,LumenReflectionQuality=1.000000,LumenReflectionsScreenTraces=True,LumenFrontLayerTranslucencyReflections=False,LumenMaxRoughnessToTraceReflections=0.400000,LumenMaxReflectionBounces=1,LumenMaxRefractionBounces=0,ScreenSpaceReflectionIntensity=100.000000,ScreenSpaceReflectionQuality=50.000000,ScreenSpaceReflectionMaxRoughness=0.600000,bMegaLights=True,AmbientCubemapTint=(R=1.000000,G=1.000000,B=1.000000,A=1.000000),AmbientCubemapIntensity=1.000000,AmbientCubemap=None,CameraShutterSpeed=60.000000,CameraISO=100.000000,DepthOfFieldFstop=4.000000,DepthOfFieldMinFstop=1.200000,DepthOfFieldBladeCount=5,AutoExposureBias=1.000000,AutoExposureBiasBackup=0.000000,bOverride_AutoExposureBiasBackup=False,AutoExposureApplyPhysicalCameraExposure=True,AutoExposureBiasCurve=None,AutoExposureMeterMask=None,AutoExposureLowPercent=10.000000,AutoExposureHighPercent=90.000000,AutoExposureMinBrightness=-10.000000,AutoExposureMaxBrightness=20.000000,AutoExposureSpeedUp=3.000000,AutoExposureSpeedDown=1.000000,HistogramLogMin=-10.000000,HistogramLogMax=20.000000,LocalExposureMethod=Bilateral,LocalExposureHighlightContrastScale=1.000000,LocalExposureShadowContrastScale=1.000000,LocalExposureHighlightContrastCurve=None,LocalExposureShadowContrastCurve=None,LocalExposureHighlightThreshold=0.000000,LocalExposureShadowThreshold=0.000000,LocalExposureDetailStrength=1.000000,LocalExposureBlurredLuminanceBlend=0.600000,LocalExposureBlurredLuminanceKernelSizePercent=50.000000,LocalExposureMiddleGreyBias=0.000000,LensFlareIntensity=1.000000,LensFlareTint=(R=1.000000,G=1.000000,B=1.000000,A=1.000000),LensFlareBokehSize=3.000000,LensFlareThreshold=8.000000,LensFlareBokehShape=None,LensFlareTints[0]=(R=1.000000,G=0.800000,B=0.400000,A=0.600000),LensFlareTints[1]=(R=1.000000,G=1.000000,B=0.600000,A=0.530000),LensFlareTints[2]=(R=0.800000,G=0.800000,B=1.000000,A=0.460000),LensFlareTints[3]=(R=0.500000,G=1.000000,B=0.400000,A=0.390000),LensFlareTints[4]=(R=0.500000,G=0.800000,B=1.000000,A=0.310000),LensFlareTints[5]=(R=0.900000,G=1.000000,B=0.800000,A=0.270000),LensFlareTints[6]=(R=1.000000,G=0.800000,B=0.400000,A=0.220000),LensFlareTints[7]=(R=0.900000,G=0.700000,B=0.700000,A=0.150000),VignetteIntensity=0.400000,Sharpen=0.000000,FilmGrainIntensity=0.000000,FilmGrainIntensityShadows=1.000000,FilmGrainIntensityMidtones=1.000000,FilmGrainIntensityHighlights=1.000000,FilmGrainShadowsMax=0.090000,FilmGrainHighlightsMin=0.500000,FilmGrainHighlightsMax=1.000000,FilmGrainTexelSize=1.000000,FilmGrainTexture=None,AmbientOcclusionIntensity=0.500000,AmbientOcclusionStaticFraction=1.000000,AmbientOcclusionRadius=200.000000,AmbientOcclusionRadiusInWS=False,AmbientOcclusionFadeDistance=8000.000000,AmbientOcclusionFadeRadius=5000.000000,AmbientOcclusionPower=2.000000,AmbientOcclusionBias=3.000000,AmbientOcclusionQuality=50.000000,AmbientOcclusionMipBlend=0.600000,AmbientOcclusionMipScale=1.700000,AmbientOcclusionMipThreshold=0.010000,AmbientOcclusionTemporalBlendWeight=0.100000,RayTracingAO=False,RayTracingAOSamplesPerPixel=1,RayTracingAOIntensity=1.000000,RayTracingAORadius=200.000000,ColorGradingIntensity=1.000000,ColorGradingLUT=None,DepthOfFieldSensorWidth=24.576000,DepthOfFieldSqueezeFactor=1.000000,DepthOfFieldFocalDistance=0.000000,DepthOfFieldDepthBlurAmount=1.000000,DepthOfFieldDepthBlurRadius=0.000000,DepthOfFieldUseHairDepth=False,DepthOfFieldFocalRegion=0.000000,DepthOfFieldNearTransitionRegion=300.000000,DepthOfFieldFarTransitionRegion=500.000000,DepthOfFieldScale=0.000000,DepthOfFieldNearBlurSize=15.000000,DepthOfFieldFarBlurSize=15.000000,DepthOfFieldOcclusion=0.400000,DepthOfFieldSkyFocusDistance=0.000000,DepthOfFieldVignetteSize=200.000000,MotionBlurAmount=0.500000,MotionBlurMax=5.000000,MotionBlurTargetFPS=30,MotionBlurPerObjectSize=0.000000,TranslucencyType=Raster,RayTracingTranslucencyMaxRoughness=0.600000,RayTracingTranslucencyRefractionRays=3,RayTracingTranslucencySamplesPerPixel=1,RayTracingTranslucencyShadows=Hard_shadows,RayTracingTranslucencyRefraction=True,PathTracingMaxBounces=32,PathTracingSamplesPerPixel=2048,PathTracingMaxPathIntensity=24.000000,PathTracingEnableEmissiveMaterials=True,PathTracingEnableReferenceDOF=False,PathTracingEnableReferenceAtmosphere=False,PathTracingEnableDenoiser=True,PathTracingIncludeEmissive=True,PathTracingIncludeDiffuse=True,PathTracingIncludeIndirectDiffuse=True,PathTracingIncludeSpecular=True,PathTracingIncludeIndirectSpecular=True,PathTracingIncludeVolume=True,PathTracingIncludeIndirectVolume=True,UserFlags=0,WeightedBlendables=(Array=)),LightingRigRotation=0.000000,RotationSpeed=2.000000,DirectionalLightRotation=(Pitch=-40.000000,Yaw=-67.500000,Roll=0.000000),bEnableToneMapping=False,bShowMeshEdges=True) + diff --git a/Config/DefaultEngine.ini b/Config/DefaultEngine.ini index 3a9a11f1..a6bd8bcd 100644 --- a/Config/DefaultEngine.ini +++ b/Config/DefaultEngine.ini @@ -57,18 +57,18 @@ r.DynamicGlobalIlluminationMethod=1 r.ReflectionMethod=1 r.ReflectionCaptureResolution=128 r.ReflectionEnvironmentLightmapMixBasedOnRoughness=True -r.Lumen.HardwareRayTracing=True +r.Lumen.HardwareRayTracing=False r.Lumen.HardwareRayTracing.LightingMode=0 r.Lumen.TranslucencyReflections.FrontLayer.EnableForProject=False r.Lumen.TraceMeshSDFs=1 r.Lumen.ScreenTracingSource=0 -r.Lumen.Reflections.HardwareRayTracing.Translucent.Refraction.EnableForProject=True +r.Lumen.Reflections.HardwareRayTracing.Translucent.Refraction.EnableForProject=False r.MegaLights.EnableForProject=False r.RayTracing.Shadows=False r.Shadow.Virtual.Enable=1 -r.RayTracing=True +r.RayTracing=False r.RayTracing.UseTextureLod=False -r.PathTracing=True +r.PathTracing=False r.GenerateMeshDistanceFields=True r.DistanceFields.DefaultVoxelDensity=0.200000 r.Nanite.ProjectEnabled=True @@ -87,7 +87,7 @@ r.CustomDepthTemporalAAJitter=True r.PostProcessing.PropagateAlpha=False r.Deferred.SupportPrimitiveAlphaHoldout=False r.DefaultFeature.Bloom=True -r.DefaultFeature.AmbientOcclusion=True +r.DefaultFeature.AmbientOcclusion=False r.DefaultFeature.AmbientOcclusionStaticFraction=True r.DefaultFeature.AutoExposure=False r.DefaultFeature.AutoExposure.Method=0 @@ -99,10 +99,10 @@ r.DefaultFeature.MotionBlur=False r.DefaultFeature.LensFlare=False r.TemporalAA.Upsampling=True r.AntiAliasingMethod=2 -r.MSAACount=4 +r.MSAACount=1 r.DefaultFeature.LightUnits=1 r.DefaultBackBufferPixelFormat=4 -r.ScreenPercentage.Default=100.000000 +r.ScreenPercentage.Default=85.000000 r.ScreenPercentage.Default.Desktop.Mode=1 r.ScreenPercentage.Default.Mobile.Mode=0 r.ScreenPercentage.Default.VR.Mode=0 diff --git a/Content/IndustrialPipesM/textures/pipes_m_ao.uasset b/Content/IndustrialPipesM/textures/pipes_m_ao.uasset index c7ca0a18..59ab7b9c 100644 --- a/Content/IndustrialPipesM/textures/pipes_m_ao.uasset +++ b/Content/IndustrialPipesM/textures/pipes_m_ao.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c1be447de15d92fdec6c973c5fdfdbd98dca2d642edaa752ca8bfed809af7426 -size 10695116 +oid sha256:3ccea16ead75672348651211524c102645c91842737a241a6e43620762a89487 +size 7879853 diff --git a/Content/IndustrialPipesM/textures/pipes_m_diffuse_skin1.uasset b/Content/IndustrialPipesM/textures/pipes_m_diffuse_skin1.uasset index 19a63cb5..6532cf6e 100644 --- a/Content/IndustrialPipesM/textures/pipes_m_diffuse_skin1.uasset +++ b/Content/IndustrialPipesM/textures/pipes_m_diffuse_skin1.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fb4ef7d0ada41bba1cc6e7ad4a405e1a8103318f62cb00b054ac9014b4f0d7ea -size 31995057 +oid sha256:d0ed3a1d79ac8545163a7965961183fda40c8374f01a136c5d8353497232628b +size 30143658 diff --git a/Content/IndustrialPipesM/textures/pipes_m_diffuse_skin3.uasset b/Content/IndustrialPipesM/textures/pipes_m_diffuse_skin3.uasset index c4ac747e..8721fc2c 100644 --- a/Content/IndustrialPipesM/textures/pipes_m_diffuse_skin3.uasset +++ b/Content/IndustrialPipesM/textures/pipes_m_diffuse_skin3.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4c39cd87aa6a8d74406129146168a2169e488643399deaa57113bf4071abec91 -size 28377007 +oid sha256:d9b13995dd5d72b90ed568a10cc451d5eb7db341bd51932605b64d7aff299c31 +size 26531422 diff --git a/Content/Levels/House01/Maps/LoftLevel.umap b/Content/Levels/House01/Maps/LoftLevel.umap index 51972fb6..5de5d756 100644 --- a/Content/Levels/House01/Maps/LoftLevel.umap +++ b/Content/Levels/House01/Maps/LoftLevel.umap @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:142ec7cc19b50ac5ce045727a74e241e7f5d502ef39a783dc78f519b410c66dc -size 3489772 +oid sha256:a618d788129eb01ace98d991b0de369ad20b7ba239613ba0b32bba2d9dc1e92c +size 3384089 diff --git a/Content/Levels/House01/Mesh/SM_AI_vol8_05_armchair_01.uasset b/Content/Levels/House01/Mesh/SM_AI_vol8_05_armchair_01.uasset index dd5ae331..11435470 100644 --- a/Content/Levels/House01/Mesh/SM_AI_vol8_05_armchair_01.uasset +++ b/Content/Levels/House01/Mesh/SM_AI_vol8_05_armchair_01.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5eca77ec5d4810ac8fe84c4af0b674d74b50b12ca24aee1f0def5ed593873528 -size 15687995 +oid sha256:9c745da47dafc0428cf8feaf1773b9c067684daa139f935b6993cfb638f3f309 +size 15675381 diff --git a/Content/Levels/House01/Mesh/SM_AI_vol8_05_chair_garden_01.uasset b/Content/Levels/House01/Mesh/SM_AI_vol8_05_chair_garden_01.uasset index bb35ddea..37e2437a 100644 --- a/Content/Levels/House01/Mesh/SM_AI_vol8_05_chair_garden_01.uasset +++ b/Content/Levels/House01/Mesh/SM_AI_vol8_05_chair_garden_01.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ea204ddc2d48cd312fb09ad83a10b9de4f58379b45b77c55170d7a7ba80f5b35 -size 19797219 +oid sha256:de972d678d8e06fe3092642b7310d2043975d6f08229f475d87e01a431ede21a +size 19783468 diff --git a/Content/Levels/House01/Mesh/SM_AI_vol8_05_flower_01.uasset b/Content/Levels/House01/Mesh/SM_AI_vol8_05_flower_01.uasset index 7c3b08ab..df6a380c 100644 --- a/Content/Levels/House01/Mesh/SM_AI_vol8_05_flower_01.uasset +++ b/Content/Levels/House01/Mesh/SM_AI_vol8_05_flower_01.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:88cb43c31873080b2cc4d22dc86b506482b809efb2d8c7429078a1e7e8a5e9cc -size 24657602 +oid sha256:e54bcad271f7c954230473b4825841ed07dd7a5dcf0c91b3a815e4c9280e1c63 +size 24642646 diff --git a/Content/Levels/House01/Mesh/SM_AI_vol8_05_grass_decorative_01.uasset b/Content/Levels/House01/Mesh/SM_AI_vol8_05_grass_decorative_01.uasset index b3d25ab5..989185f9 100644 --- a/Content/Levels/House01/Mesh/SM_AI_vol8_05_grass_decorative_01.uasset +++ b/Content/Levels/House01/Mesh/SM_AI_vol8_05_grass_decorative_01.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fcd2067c2c2b00b72e9aae1995ea3dbffad783a3482bc03d704d84277573da5f -size 4601861 +oid sha256:daf69c05382dae66e4d9e2731edb9db7fa56abe3018bc415c916916c3ca74b55 +size 4587687 diff --git a/Content/Levels/House01/Mesh/SM_AI_vol8_05_grass_decorative_02.uasset b/Content/Levels/House01/Mesh/SM_AI_vol8_05_grass_decorative_02.uasset index d9f4a85e..5f5677cf 100644 --- a/Content/Levels/House01/Mesh/SM_AI_vol8_05_grass_decorative_02.uasset +++ b/Content/Levels/House01/Mesh/SM_AI_vol8_05_grass_decorative_02.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:489dd6a4f3805cfde47ebcdf7998dff2e9ac8d161fd2affbab6588afc83a1f1d -size 4574324 +oid sha256:e848239cdd57867b42c16ed8bebbd63c10368b0067d6858da4ee82865a5417be +size 4560076 diff --git a/Content/Levels/House01/Mesh/SM_AI_vol8_05_grass_decorative_03.uasset b/Content/Levels/House01/Mesh/SM_AI_vol8_05_grass_decorative_03.uasset index 57c3d530..a57dabe8 100644 --- a/Content/Levels/House01/Mesh/SM_AI_vol8_05_grass_decorative_03.uasset +++ b/Content/Levels/House01/Mesh/SM_AI_vol8_05_grass_decorative_03.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1b2aaec8d93f03a24eb2cb9ddc03cb2315136a6135390b2f2fc8eacca0701fa8 -size 940660 +oid sha256:7733c73c71c8f2a668728b46e3ae7bc235208c481061b2dbf95643fabd5841e8 +size 928020 diff --git a/Content/Levels/House01/Mesh/SM_AI_vol8_05_hedge_01.uasset b/Content/Levels/House01/Mesh/SM_AI_vol8_05_hedge_01.uasset index 1319567c..1838ef66 100644 --- a/Content/Levels/House01/Mesh/SM_AI_vol8_05_hedge_01.uasset +++ b/Content/Levels/House01/Mesh/SM_AI_vol8_05_hedge_01.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0c5a7e81bf14a9db41e95cb1d64310561caed9a08b422d4ef44e9d1e2080084c -size 3379753 +oid sha256:2ade3addb6b1372b2b79ea022bb1d61268eda72dc949164283aef31acc450359 +size 3364438 diff --git a/Content/Levels/House01/Mesh/SM_AI_vol8_05_lamp_halogen_01.uasset b/Content/Levels/House01/Mesh/SM_AI_vol8_05_lamp_halogen_01.uasset index 48e6530b..96078dba 100644 --- a/Content/Levels/House01/Mesh/SM_AI_vol8_05_lamp_halogen_01.uasset +++ b/Content/Levels/House01/Mesh/SM_AI_vol8_05_lamp_halogen_01.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ed4b5be0b25bc18938497d678f5ef30f7f92529b8a778e1afdfcbec207764255 -size 1467333 +oid sha256:cfb5a85c75e5e7d01507d8c2a4f7330fdb45a74dffaa5c17146831bce2b33f30 +size 1451489 diff --git a/Content/Levels/House01/Mesh/SM_AI_vol8_05_rocking_chair_01.uasset b/Content/Levels/House01/Mesh/SM_AI_vol8_05_rocking_chair_01.uasset index 1e1b26ac..2ff26762 100644 --- a/Content/Levels/House01/Mesh/SM_AI_vol8_05_rocking_chair_01.uasset +++ b/Content/Levels/House01/Mesh/SM_AI_vol8_05_rocking_chair_01.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bc4b768c5b953e680b4c80bae401adb568c6b796d60a32c30203f9424b836b2a -size 24157177 +oid sha256:8bde58a7ca2eea8be93a39f74ea2b45a2efcf80a674ccaeb2886b31578bf901b +size 24140574 diff --git a/Content/Levels/House01/Mesh/SM_AI_vol8_05_shelf_01.uasset b/Content/Levels/House01/Mesh/SM_AI_vol8_05_shelf_01.uasset index 69568b28..f90a7b10 100644 --- a/Content/Levels/House01/Mesh/SM_AI_vol8_05_shelf_01.uasset +++ b/Content/Levels/House01/Mesh/SM_AI_vol8_05_shelf_01.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bd6e73eaf8993e5547738b8ca91576939f4fe313ad792785012bd5f03ab4579f -size 6426080 +oid sha256:3d4718ab7d2fc417f7c1c3fc6cba071a232dace0ceb8f76220ed49b6b32c9172 +size 6412945 diff --git a/Content/Levels/House01/Mesh/SM_AI_vol8_05_sofa_03.uasset b/Content/Levels/House01/Mesh/SM_AI_vol8_05_sofa_03.uasset index 396c8fc8..73f48222 100644 --- a/Content/Levels/House01/Mesh/SM_AI_vol8_05_sofa_03.uasset +++ b/Content/Levels/House01/Mesh/SM_AI_vol8_05_sofa_03.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e23b2472cc618d51870f7d0a8e171a9f1029231f067b117310c37e450e0ef7e2 -size 52314373 +oid sha256:70806e83474f59a41fe61bc30cae41ae59a627603a972a8aadeb7ccf64744c4f +size 52297833 diff --git a/Content/Levels/House01/Mesh/SM_AI_vol8_05_sofa_fabric_01.uasset b/Content/Levels/House01/Mesh/SM_AI_vol8_05_sofa_fabric_01.uasset index 376c6cf6..1046f136 100644 --- a/Content/Levels/House01/Mesh/SM_AI_vol8_05_sofa_fabric_01.uasset +++ b/Content/Levels/House01/Mesh/SM_AI_vol8_05_sofa_fabric_01.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a47c3aa37dc49d07a860fdef64abd8b78b9f24fff7e241f3cf341236a2e162cd -size 27357642 +oid sha256:1ff06a513a173c1e128aecc549c0c580485c210e9b8bc085c1d6b632b0565cd5 +size 27347777 diff --git a/Content/Levels/House01/Mesh/SM_AI_vol8_05_sofa_pillows_01.uasset b/Content/Levels/House01/Mesh/SM_AI_vol8_05_sofa_pillows_01.uasset index 7aea1c30..a824d90e 100644 --- a/Content/Levels/House01/Mesh/SM_AI_vol8_05_sofa_pillows_01.uasset +++ b/Content/Levels/House01/Mesh/SM_AI_vol8_05_sofa_pillows_01.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8d93f1cdcc262a786c104617108c01faa7e9b491f527d08be5b11ea276a6d213 -size 13853256 +oid sha256:8474271e6e51a0a97010674f1331b28ecb4ab7a0083321243369971dff1fd1f5 +size 13831474 diff --git a/Content/Levels/House01/Mesh/SM_AI_vol8_05_sofa_thread_01.uasset b/Content/Levels/House01/Mesh/SM_AI_vol8_05_sofa_thread_01.uasset index ae8e9daf..6ef5408e 100644 --- a/Content/Levels/House01/Mesh/SM_AI_vol8_05_sofa_thread_01.uasset +++ b/Content/Levels/House01/Mesh/SM_AI_vol8_05_sofa_thread_01.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:275a6be00e34f37e1164f6240910a750cb82ee96e6c650b98b45eb20b6261dc5 -size 11587263 +oid sha256:a5b89a0364de557146496b52f3754c449ca81e6d170d480bd204e7fbd3244581 +size 11577304 diff --git a/Content/Levels/House01/Mesh/SM_AI_vol8_05_tree_01.uasset b/Content/Levels/House01/Mesh/SM_AI_vol8_05_tree_01.uasset index 116f10f5..8e42973c 100644 --- a/Content/Levels/House01/Mesh/SM_AI_vol8_05_tree_01.uasset +++ b/Content/Levels/House01/Mesh/SM_AI_vol8_05_tree_01.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:923b609c5bf8b97e24a9ece1242a74a4838dbca7cfd7c5d1b9e9e8304b54f1cd -size 4024160 +oid sha256:eb647dacfb9103c6cf5b596c2b64fcfbca43b96bef8056ecb62001f57a3aec2b +size 4013161 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_Vase_C_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_Vase_C_BC.uasset index 1b5bf5a7..f80ebea3 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_Vase_C_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_Vase_C_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6a65bd986a1415053afb4dfaf0c7f6088e46f8dbb632b3386cded20f2fe55418 -size 5469082 +oid sha256:a188a5b9d387ffc2f6795d2cf9455e54b97724257e2da1e61b050ad185920ce0 +size 4594690 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_Vase_C_M.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_Vase_C_M.uasset index 4a6fddd5..8d891101 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_Vase_C_M.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_Vase_C_M.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:678715da41586c0e14dc0f959fe842bc85cbf9fae4f73122bb7ef548786b7470 -size 2343132 +oid sha256:2e3d5dfeabc3553669ba39f80718fcd0e8b27169374ab2c621c2340b68607252 +size 1733792 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_Vase_C_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_Vase_C_N.uasset index 33633ac4..734005c1 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_Vase_C_N.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_Vase_C_N.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a8b14cde412f2ef686f41d7422d62b40aea115fa296d3558458c6479147abaa8 -size 3035555 +oid sha256:e8d69eadd0e2fb5dd89d7304e82abd68d9b25ce777eb79e047f5b2033acb4e54 +size 2368343 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_Vinyl_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_Vinyl_01_BC.uasset index cc377dd1..b02b1b66 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_Vinyl_01_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_Vinyl_01_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ef764aec18ae15968732eda4681a59d6f0e40e63c977ba85579e5b8d9cada6a1 -size 199264 +oid sha256:ceca3326e0b7501e1dbd33ca9355b66f4cf86f3dcd8c3fbe322dd423ec3dc47e +size 199918 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_Vinyl_02_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_Vinyl_02_BC.uasset index 262086e9..fa990d9c 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_Vinyl_02_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_Vinyl_02_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8d5a3e5714ca5a808db729612d7b657ac0aaecf97103b1f3de50ba815756355e -size 313070 +oid sha256:9c5b75499b155c7ef1c392f1f195dba26342641c5c9c4ddb94e58ec989423ee1 +size 313724 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_Vinyl_03_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_Vinyl_03_BC.uasset index f9af3ff2..801d02f7 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_Vinyl_03_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_Vinyl_03_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c03f575268986d5b4c820b728be5cce1531e9676a923456775e8ff0d43660188 -size 223540 +oid sha256:c2794d460fcc6d9b22d9d2d413b3f76188aa72b1a87748fa4cba9e324b879034 +size 224194 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_Vinyl_04_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_Vinyl_04_BC.uasset index fd2ec5de..21cab0ac 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_Vinyl_04_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_Vinyl_04_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:403ce946a4abdfdc3a0765d835878caf542fcfd3bb18d8815bc576cddd29fa1f -size 264856 +oid sha256:408968224d4d42c106fbf304b52718ff85ae394aa776293797fa85225e0ba4c3 +size 265510 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_Vinyl_05_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_Vinyl_05_BC.uasset index 30add04a..6e3317ef 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_Vinyl_05_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_Vinyl_05_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6547e188e4c4d9e9ffd038f0b5027c3446a5ba49ed31498a95217b9416f91b13 -size 219702 +oid sha256:0094feb2728252c484db133e0fc7904b24dd39afa41c6839e25888bb0f76623f +size 220356 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_Vinyl_06_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_Vinyl_06_BC.uasset index 4d77a8a7..24062097 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_Vinyl_06_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_Vinyl_06_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b8b54a4869b0ba746530982fdd1eda2c83bb3b0b401867f5c1a457f8fccc7f0f -size 181937 +oid sha256:5db1e16936d1402b3b879a3b8457bca69290fcdfb35e42864bbaaceebb8f198a +size 182591 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_Vinyl_07_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_Vinyl_07_BC.uasset index d5827932..04a374be 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_Vinyl_07_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_Vinyl_07_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:70e067932798b11270721f63ced8d27f59bf8301d2b9ad28d4128d5a073385f7 -size 139630 +oid sha256:ff1c1000a958c71e55b35603452e12a840293b57f560e4fb4f9a95533376b62f +size 140284 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_air_conditioning_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_air_conditioning_01_BC.uasset index 2d3afcd1..85c34339 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_air_conditioning_01_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_air_conditioning_01_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ccea054b86cf1068d0edf82f7c95d5b23679847e2ae7478c28ba5e3eaeb06935 -size 1462911 +oid sha256:c11b1fde8e4bfdfd13e090ece13d7318866e83e1c8e7cbd8f8262a503b375444 +size 1061018 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_air_conditioning_01_M.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_air_conditioning_01_M.uasset index 06603fc4..1531fc1c 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_air_conditioning_01_M.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_air_conditioning_01_M.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:510199445d33c04398b2ec7994067decaca133e87fe33f3d8966ebe9aeb7ddfb -size 4716471 +oid sha256:7cc8716d9debd78051c07599a5cd9739621ddaa7cc5bb9f8446cb2792d8f3a81 +size 3916838 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_air_conditioning_01_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_air_conditioning_01_N.uasset index 295e5477..b4d651ea 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_air_conditioning_01_N.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_air_conditioning_01_N.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2eb2fee6ace8ce657e31be85c00f7f800c246ec77f2e18604d89d08a28f087c6 -size 1644844 +oid sha256:e188496f72c4b509e505b829be070145bb0815f1f53da0dcef7a4edf3676c855 +size 1214235 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_air_museum_playground_4k_HDR.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_air_museum_playground_4k_HDR.uasset index f2343660..d85d6397 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_air_museum_playground_4k_HDR.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_air_museum_playground_4k_HDR.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a3f0437770ac1ec75c90b6e5bf1d2a17fa468b981e9b17fcd51a112dd29cedc9 -size 21720875 +oid sha256:ae353df9232ecedd7114d40abb7e643d3b50d7b6c90875b06c1c66d8e5cf6270 +size 20829549 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_albums_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_albums_BC.uasset index a46b8722..f8c160e9 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_albums_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_albums_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7d01db0c0aaadf819a1af367e92b4c8e518036a5dcfe7d35c638b993104d19d1 -size 5823162 +oid sha256:9858b3af62edbdc9755bcd538e213fb9b1945052c80d1c1d70ee984bdef1e4bd +size 5209133 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_albums_M.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_albums_M.uasset index 59b6bf64..b45326b3 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_albums_M.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_albums_M.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b2efefe558ac6fbda7efccc2a9036b867fa6d1130f230d73c141e5c381c2c681 -size 3800807 +oid sha256:97f6c29da992d987c724dd8266c305fae5a3c57e9e62babb9a2d53efb89a197b +size 2937660 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_albums_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_albums_N.uasset index d5f37107..2404c593 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_albums_N.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_albums_N.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0442520413b8c44bc1c8c6f1a5f818202331f8c8771cca593251f98d5497b08d -size 5319854 +oid sha256:495e989307593a6bb39f34801546a1d1171e72d519ac3170a129d2c3aae22f96 +size 4323416 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_archidrawing_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_archidrawing_01_BC.uasset index ba8d48d7..b4d796b5 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_archidrawing_01_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_archidrawing_01_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:19d24adde8520c032f520ffded5f1f20a316be953d8adb60625e0dcef9a527a0 -size 386501 +oid sha256:a6bcb7deb4088b43bc3b06bcbae88ec9971961a780de2d0beef011bfdfcac138 +size 386935 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_bag_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_bag_01_BC.uasset index 29f5c046..cc278789 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_bag_01_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_bag_01_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:32619fb174a363be87d438248bb1ab09bf86a84e66a939aeee57cbf35280d693 -size 5638618 +oid sha256:704a55d0eb0488b8336f099498a50598d5533b304ccc8add65fca50d06c8baf4 +size 4934434 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_bag_01_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_bag_01_N.uasset index d3c23ecf..583de84b 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_bag_01_N.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_bag_01_N.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4429582912674896e0083b3aea7eb2965b1ded4d6a98c8ee3dfee9d0c4ae9767 -size 2380394 +oid sha256:d011f0331870886b51606dc2595726c618dba782b661e66ae0ea8ba3db780cd8 +size 2117247 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_bag_01_R.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_bag_01_R.uasset index 771b4564..ec2ad25b 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_bag_01_R.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_bag_01_R.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f7b1eae8d076e46a020e26df6093e54f4fbb23307dc652d3208f6aa34ab57c23 -size 592328 +oid sha256:6213353f7e3324494b5c915749a8b42740492571c654e317a0e121943a349c3b +size 569457 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_bag_02_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_bag_02_BC.uasset index a8eb4255..eabcf30a 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_bag_02_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_bag_02_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:443a161305845f325bb41b204cf22e866da0fa5f72ba4367a85763898d703afc -size 119128 +oid sha256:c280b6e55336e23e6ee31905b8a365e2f92b86d76fe111f8efc21720ba98fb21 +size 105752 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_bag_02_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_bag_02_N.uasset index cab276df..d529f85b 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_bag_02_N.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_bag_02_N.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4f1b5369a2a773837706ff353f254e7b735e16ff07111bab6766f81c928f5e53 -size 1320776 +oid sha256:44276f205b6f9a3947deeece3cbc8384d8cbd3470b7a610ba3ae1acb8b1146f1 +size 1347358 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_black_tiles_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_black_tiles_BC.uasset index 40ea52c8..0a8f4d3e 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_black_tiles_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_black_tiles_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2c18f96dd226491416f26a5d93adda7c0b48b411e07a0ddd2343511c1d0706ee -size 4528647 +oid sha256:689f01a2567017e1e1819ffbea431acd64b290d13ef8e235f2188927b9ff05ad +size 3488149 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_black_tiles_M.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_black_tiles_M.uasset index e2a887a7..7aedaa04 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_black_tiles_M.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_black_tiles_M.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fae68d75031e379599422445ae0bfd69ccae140f8adb7ced761936192215c20f -size 2618934 +oid sha256:6ed3f17dbd414a82e10c0b46d5131af55eae33750e129d13b82c3b60eb960ccc +size 1813387 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_black_tiles_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_black_tiles_N.uasset index e7d14c06..4e86eaf6 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_black_tiles_N.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_black_tiles_N.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a3bfdeacb8f7ae051201778a361c73fe9d0471f981406ba11a98a3500aab4f8b -size 5506332 +oid sha256:50f16fbb51e5bfa36a70098da3193568f01a32188cfb9754a9d5393ec01f7870 +size 4675384 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_boc_container_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_boc_container_01_BC.uasset index e8cdff10..0ad9a07b 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_boc_container_01_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_boc_container_01_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:66b689398e73ba9903d1a044c4e3523e3ae8b92ef3f6754da666e1f6d2f72369 -size 7450796 +oid sha256:9826e66aa28d5cd32c512ee78d32ca10efeb532e3a6bb5128a6d59073f059538 +size 6557649 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_boc_container_01_M.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_boc_container_01_M.uasset index bb3f8110..5e11131b 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_boc_container_01_M.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_boc_container_01_M.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:78d6998a2626aa27560a4aec34669540435084d1f817c71cfbfd915a79da83e5 -size 4651735 +oid sha256:2fad51298f015552b083662826ad42fefc797460a28ab2ab22f76936cc7ee313 +size 3954406 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_boc_container_01_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_boc_container_01_N.uasset index 05ebc4df..e51e7d6d 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_boc_container_01_N.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_boc_container_01_N.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:072019ab69c7b97df0cafa3ef6308f3c3e1f527ef5d2944d9d0b15c9e2352855 -size 5999422 +oid sha256:157bf56c1001314115247b3ccf684a21eff346610f7421d8dfb69423a0656578 +size 5988333 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_01_BC.uasset index 77999489..e461026c 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_01_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_01_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4d2babfb008df83bc8dadf4ff7b1629476a549d9149c1931ed38f4e0b25bee5f -size 550416 +oid sha256:3bbb890adec8095f6c86e4da5911cb9ef5ee06b4c2dc8e3d85c947cce811e078 +size 572358 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_02_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_02_BC.uasset index d0f4c233..1c646f5c 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_02_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_02_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:461cd210f6735b98d2a97090990c03e5c4432e708a9329ff23d1b2e8b4b09b1c -size 17717 +oid sha256:89bb2b2b048571bce0da6aea0c17629f96aaf31f1caf52c4a6f1a9266cf2e85e +size 13063 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_03_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_03_BC.uasset index a3694fda..d89e0232 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_03_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_03_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e2c041103a33baab8e4202f0348691ccd5c61b22120143947a387358733f6a24 -size 393746 +oid sha256:21cf81b9d3a0b8a0689c203529023c567f5975fb7675c34211ed930b0695b418 +size 363262 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_04_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_04_BC.uasset index 6a9193d7..3f3d4e9c 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_04_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_04_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:156fce1671e29e06001ee6d546bcfa8002b5060430271463305040b38114506d -size 544327 +oid sha256:befc1d67923b729a9a323a98b8301ec0adc74121eb106da203b57bac52244dd0 +size 477220 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_07_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_07_BC.uasset index 234e7e26..238d98e9 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_07_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_07_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:83f7aaf4b92cf4925e3cd257a6a59ec94120c792b5f4673efa06198012fda176 -size 1675651 +oid sha256:f5ac65a8d726476f1d05ca63357b75ec86d78def54d868659b5b2568b7df9922 +size 1507242 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_08_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_08_BC.uasset index 97e06be4..f3b4ddd3 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_08_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_08_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9df66296fdf9aeff6fad258ecc8a0f7ef3e9b57fe2c3701ec5f047a2b8c4ca0b -size 545956 +oid sha256:7554ff1097d3fc27698e8510f38ef4addba31e5010e43c25b58f1fb83a054f35 +size 510742 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_09_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_09_BC.uasset index f60137c4..14b1f5da 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_09_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_09_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bfbee9aafab2b144400e7eaa0aab3d339afcb3cfc0106eedd701a3d94ecc2c5f -size 566920 +oid sha256:276b545b9e1e587b27603dc06a9cab718f57ac67f5ba144d271a0650c0669a23 +size 565702 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_10_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_10_BC.uasset index 53b7fdac..09679381 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_10_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_10_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:96556efb3f3a4a3620c1bfff74222c17ed225586a55add471daf31a45a2fab72 -size 440353 +oid sha256:7340add0cb90be6593ff82ad6993304deb7d98c2cd47d46519598d5b5e440c45 +size 398356 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_11_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_11_BC.uasset index 4df37cae..d20183f8 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_11_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_11_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5401749b474d0abb6c72b7dddac37cd103aecb808e3bac6cb2b9a1332f32ff56 -size 521593 +oid sha256:92ce55290c734de20047d4e09a8b15a9c4dc1de416520bbdcde7671bdeee69f1 +size 443118 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_12_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_12_BC.uasset index c622fd40..beb227c6 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_12_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_12_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c5b356bb44272fd9930116b30da8466b02724a3cb445951424b96467a3bc6c59 -size 493261 +oid sha256:8eae4e570fc2a72bd0eb72c8614dbb2d7d9ee9caea14283ca8f238eb4fdb01d8 +size 419498 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_13_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_13_BC.uasset index be4bc303..a140f274 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_13_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_13_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:43261ff540867702f134255a049c1fb18d115102ea42f6733c58284eeab3629e -size 206972 +oid sha256:9205dce6dc62978578bef8c916e0f269db2e45d660d1d24a4f537d7f88815620 +size 201710 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_14_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_14_BC.uasset index 85d203f8..96ba8a9f 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_14_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_14_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4c6ba822420c61b90e9c8eb18181d0aa13421ebc76d8b4c71f7daf72ff82f85e -size 292332 +oid sha256:740b7fc5cb80596ba993c44a341d0ef45db83e55e246281f37b18961b29772a4 +size 230377 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_16_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_16_BC.uasset index 9273fcf6..6df9c227 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_16_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_16_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4fd28696063169eafcdd3a453123637e49d349cb5865d120c3856cbef80909c3 -size 130534 +oid sha256:c3578ee223120b0bf2f351cacb3c76015bbe866ac61c3edfadc4e80e3913bc2b +size 112833 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_17_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_17_BC.uasset index 9b3ec28c..b47a914e 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_17_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_17_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e03068af77b48c8bcf74921f2eeb30042f793850b30af9eaa5d2416343dee38d -size 83460 +oid sha256:4ff4a51d1e706c1ab0ca151a7d8ddc360ca30ac0141beb1b59d1236069fb75ee +size 69021 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_18_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_18_BC.uasset index 28e37cdd..94c83d6d 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_18_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_18_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:384b1a25db4ea43b7fe95fd2fbe7d5c88d23101507e0e0fa5772b137478526f6 -size 376899 +oid sha256:85bfe2ae6223302fe143662257ca0733b464ac411845db931c6c98aff54066fc +size 384167 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_19_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_19_BC.uasset index f817f219..25f083d7 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_19_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_19_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d4be4c39ad799f746ba12a095dc222329b55367b91d7198a461179a90ebfa4b5 -size 661295 +oid sha256:623636b96c3cf07bf45c7c478b8e2e486dbdd91f03087a62a96d4257415ea66b +size 624695 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_20_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_20_BC.uasset index 0bb233c2..72868da5 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_20_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_20_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cfb5a4ecc36825655593ce0a843219d0a79242b544e95267865745c67f6ff9b1 -size 160028 +oid sha256:68fb970bd9600d2006b282fb31d5dc0910048261bb91686f1d6af024f8769022 +size 140859 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_21_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_21_BC.uasset index f131b5b2..f40bffb1 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_21_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_21_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2c8c58fd078f8aeaf82a27ab77dc2b16567eaa02ddac247e93d4b4c3c83175f7 -size 79821 +oid sha256:f093a0a0915062d2d6d029d93258a72b7d7775cf772bcaf397aa0272844b305e +size 69802 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_22_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_22_BC.uasset index fabad463..96b7f3dc 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_22_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_22_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bb5ae68497fd8ac6a8fac98497a33576aef819d961fac2f9a278b6757e093af7 -size 150758 +oid sha256:01f5f7e188a875e723be385a8a38b24ffe3ee677ffe1c8c564d50f3d8c5cf600 +size 123470 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_23_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_23_BC.uasset index 7988b6a8..1605feef 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_23_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_23_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a39c40740948d1eb6de99cc5d2d6a635e0b79b7fc09367cac9937695830e4acb -size 99248 +oid sha256:19d012b7fe50f9f26bdda78fd25469a02d3580e79292aa4032d83eada0545a63 +size 81301 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_24_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_24_BC.uasset index 2501d9a2..51ec28fe 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_24_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_24_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:dbe475b7047ccb9d445c3460c65f34fc39400fd3b34d3598e2a6c33aebfa92a2 -size 115179 +oid sha256:7507cdd1ea0fde7d6aea1f25427c1747c530223e09b3937854858b40285ab065 +size 98340 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_25_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_25_BC.uasset index e6b0c40a..f9f066a3 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_25_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_25_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:04aabf6f232a8d229ec71f4a478a601c8a4066246f3955ab19637b3bd86b814a -size 69958 +oid sha256:6b13ef70e3fb0ab431d140b2e3e19c5f6a222a32364749700451adda2201935b +size 59202 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_26_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_26_BC.uasset index f6950603..739cd90e 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_26_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_26_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6ffb58640c99408101e4c3c8cf91ff232b6d2cdcea537c42b137a72803791197 -size 86857 +oid sha256:de11cd1e9e605c177f5e69bf4af0b016e5953fc89634e945602579ca437e8d59 +size 74219 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_27_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_27_BC.uasset index 0cb5eaca..47a90cec 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_27_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_27_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e4efd2d335a4186de5848695c39953077770dc8bdc5cded18c7e4b34a574421f -size 117388 +oid sha256:49997fb197791c155b975dbdacbf5060e966feb91f2e0a90c6ac486c6ea0da30 +size 99322 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_28_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_28_BC.uasset index f48f8893..9ce34acb 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_28_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_28_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1ce144e4fe0999bd6ca09faeaafcbe67ea7fbf1d94ffad7ed9e535f3205ac693 -size 151961 +oid sha256:4e13390492c2e7fed74314bd51e5665c0b29300b2fba1945433c93bddc8d28cc +size 137180 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_29_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_29_BC.uasset index 895a9dd6..fc4f0764 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_29_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_29_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:265eb6f2c19953e3e53b6fd124cb34b503de842f6329dc7a127e730cb5fa9cee -size 102599 +oid sha256:6b5a552370fe1d777362e8c0644426647483c363efb80f2d772f25186d24036d +size 87338 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_30_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_30_BC.uasset index e67861aa..f22685a3 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_30_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_30_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:851d0e93ca669864f6df87fef3f9bb0eb490531544d0a07e1c6223e473bfe900 -size 123109 +oid sha256:03eb548df9a53f9f639d008ce02cb51fc4c785352a4fc9fd5d3cae8d5c740cc8 +size 107245 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_31_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_31_BC.uasset index 92f4c4a7..80a395ab 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_31_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_31_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d21433b7075cf3940745e0d3d2424abe52689b676107484c5fccc849a199d6ad -size 110292 +oid sha256:8e80e4a42430ac68c040fb71dc25555fecc2e7efbf8a4aad236d3bed89a1e0e6 +size 94974 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_32_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_32_BC.uasset index c210da88..59bea094 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_32_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_32_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f36083702b7e9d9efb2c5d88969bb1b815cddca2a71d1823f3ba8a5660b1463f -size 96995 +oid sha256:0142b6210bff75e764c241de353a56054492f2bfac742b4de909a8d1e49bef14 +size 83261 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_33_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_33_BC.uasset index 4f86edc4..b1807e56 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_33_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_33_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:88224eeec60b2a6068bfa441d9596d47ca7614272480137dc6ad5c640299e033 -size 479018 +oid sha256:1780981a8a1f9c11f6d22ed766b055cdd198aefe251409bab11db06956b93532 +size 413136 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_34_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_34_BC.uasset index fda2802f..cf3ea3cf 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_34_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_34_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:366c84745801937f179ee18ecc69ab2b88785f1632d6cea82c2b63d8fc94c062 -size 323824 +oid sha256:3eebb9b5263264e89c12317a3d8ea46fde2d07254633ec06432350c32bb4496b +size 256305 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_35_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_35_BC.uasset index c0d03f6c..f096cd13 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_35_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_35_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ff317ea0d0c30a9f49aaa625f895e4292344fca8d389dfe26c6334b67c3414ab -size 343424 +oid sha256:7e20b87705ca9ab06f5ce7e17d32a0f2505439b0e65d30d2fea5e509919d3d16 +size 274850 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_36_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_36_BC.uasset index 0a3d23c7..162858b9 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_36_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_36_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fcbdcdeead651634f70d6eeded828cf5a2294705b1501ae59fdd0ea9ee278f76 -size 350681 +oid sha256:873682ef5157ed5a28cc03cd560665fb03f8657b06792fa1e0b2aabea9e2982a +size 280624 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_37_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_37_BC.uasset index 9578070c..f60bd21e 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_37_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_37_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e01ffb9f2ac0f8d08a06850a57d798db5e7533257d08c7d444babe822dbba93a -size 342196 +oid sha256:5a8001532eff143578341fe463023d600b8090451cf017765c549ca59fe7b1ac +size 274465 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_38_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_38_BC.uasset index 8f87ca27..16d7367a 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_38_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_38_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:21d1e2c064d57e80466acacfb75027626c6a50fece7b36ceeb78812b0dbeab16 -size 342777 +oid sha256:cc22d93a7a2bbc9d4f9227db41d52f5ef998eef9d94ff8dc99788a1408b45f06 +size 279203 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_39_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_39_BC.uasset index 747b8e8a..90f8d039 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_39_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_39_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f85292c82497b7327b2306fb99c1857d70719d4519693ee6bfb91b46c34dea9c -size 291072 +oid sha256:32ea88afc0dd7558a68c1e2c6192299a1af0b098e7e9b59a42124359a20a6ace +size 242190 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_41_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_41_BC.uasset index 6824b7bb..18c1b8e0 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_41_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_41_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:745a991aff4db9f2f3397b3e341673cfeba9568e6ad1d6ede0ccb2baad31e877 -size 384602 +oid sha256:de02f655c276ef65713b23a949e5f57fe2f8a2d6155e90ec621b51c5b1bcefce +size 315968 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_42_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_42_BC.uasset index eab0777a..0b558cce 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_42_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_42_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c5037a7e8395a7b4ea8e761eb0349f23dcf87e997b7ab2f5ac12ec3dbed82d21 -size 268944 +oid sha256:ce619a1c7a902ee4e4d35744eb6a7102b6f595e73d8f2da7e01f2a67fc351a81 +size 224827 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_43_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_43_BC.uasset index 1863244c..ec3607d0 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_43_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_43_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7c3c95ab92fb82a7d14c7514aa94b0a6f11bb2afd53bc778e9090827f3f8e5f3 -size 305834 +oid sha256:7f7f21d22169f60b06750a92973a0e89cdf2ba1a44517503ad0e2058a14bfa64 +size 249510 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_44_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_44_BC.uasset index c9a9dfaf..f52acd16 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_44_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_44_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bc3d837a85499b1f8f98509b62a6a753f7b58047a6252e5e0920e5632279e2cc -size 513352 +oid sha256:b7e96569e21e249337135a765d842935c0498c2bf5af4c3b5f04b6bc7d0a0141 +size 465930 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_45_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_45_BC.uasset index 761ce222..c21591a5 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_45_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_45_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f976405e8e8b3408b7cb8bc1562322733645dfbbb281ea99f8a78ceaba213fb2 -size 398418 +oid sha256:e2d3ed421673b079860c188d857c22aeab9cb34227912a42cfef4c32d6f603d4 +size 321805 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_46_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_46_BC.uasset index 191e4780..6d4f3e59 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_46_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_46_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e76d295570d6a35cf13d97590669661f7ac4d85c093357bc0edf32e3a401a9db -size 283278 +oid sha256:78ad18c6add63a854a25c9aae3e49cf569c111d834753eaa809ece8b582949d2 +size 236434 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_47_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_47_BC.uasset index 598a44e1..c7f4b078 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_47_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_47_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:630ef17d3e4edcd81d975f0abc43b32d0481b40542a07c41434ef26d5f3b423e -size 287082 +oid sha256:c6bf6fbecfb9f53dbf6643ccc3ba68dcee2b3c345faec27483c391c0774e4eaa +size 240286 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_48_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_48_BC.uasset index 75a4ef4a..04a1c176 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_48_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_48_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9a7cd1a31019419423c0b8c58f1e9089f6e746cf76f2c28aad1269b5bb618936 -size 270363 +oid sha256:b7dc6ddfc3c30330327977561b208b687045e48e541ab6b5a4b5c48a72cb641a +size 224115 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_49_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_49_BC.uasset index af12763d..2240f190 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_49_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_49_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cb2e9c4f4ef3dd2d84750b7ef70a60c21b64b48447b7a93cb3499e78fb369b46 -size 279678 +oid sha256:cef1a75aba56d2244add1627ca973048fb74209b4ffb7fb861dfbfeefefad7b8 +size 234203 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_50_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_50_BC.uasset index 9d50c8f4..2a20ea7b 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_50_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_50_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c4057970f3bd684d92c745f27b2e4fc5d18a1a2a21015813861066adcca14379 -size 283982 +oid sha256:08e34c1c33d2f3471ce97ca448306b5a735710b4934952cb5f95f0ff7f838c9e +size 235043 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_51_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_51_BC.uasset index 4daef2ce..f01dca1b 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_51_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_51_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9e8759aeaf197c86b7e0fdf0c0621848178d2bac017d61fde4f7b202c1442e5e -size 323129 +oid sha256:ff4951cc630ece40fb04cc5438d9dd0710ee97d9de94d60de759fea7b774b994 +size 286285 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_52_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_52_BC.uasset index acda0813..50cf3500 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_52_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_52_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3d8d26d543881cc5a67a3fc9d3a3a7e13b059e180366f78630f1c6d0823ec81e -size 322271 +oid sha256:2a3f3fbabb8212850eff36127854663efab761ba1cbe2cae1321c3b6c0089424 +size 284842 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_53_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_53_BC.uasset index d30401aa..a4218887 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_53_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_53_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f7867a200cfe9c6ccb7c5942043e50ac08b3e918d609b5f7746a89b6c04e28b1 -size 316500 +oid sha256:a2c5b227419b6cb8b7c7a5209612e58b3bfd17dd96e15deebfcb6a15283385fa +size 272443 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_54_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_54_BC.uasset index 89be7549..9250bd92 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_54_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_54_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:949aa7496693bf23730b54385cad5cb6044f9c88c8b682150b206bd436ea787a -size 304700 +oid sha256:27bd6705bf5129bf272d646d62b7e47a71feb90aca8c2a26cc85e34b3974ed8b +size 263914 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_55_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_55_BC.uasset index 58f06532..55ecfaf7 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_55_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_55_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:770ab4fba0c4e0e0eb757ca448dc79126863bfc3f728b9e1f44525c2c99250bc -size 116262 +oid sha256:658a4632f5f313e55119bbfc4a6c1a9e85a8a40c678ba701929f69e057a17a9b +size 96600 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_56_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_56_BC.uasset index 039f5b04..a7eb932e 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_56_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_56_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:eaba41c3be1d6cbc6900d66ad6958700acbb47672e5b28d474998183fd6396c8 -size 328226 +oid sha256:71a03dfa414bbee85b4ceedbf19b1bcca34b209c0c6c93c0a6db8a6975788377 +size 283516 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_57_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_57_BC.uasset deleted file mode 100644 index 7c59b14c..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_57_BC.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c3e71f84d09b7f5d7df0ea25da5f1ef038fa7bfd3a6465f81e908107cf8d37c2 -size 87506 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_58_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_58_BC.uasset index 7a45d903..836618a3 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_58_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_58_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cd8822f2fb1949261c8e82f1dc93ca0e0675cb0b6820206e29aa8e676b69eb22 -size 1029366 +oid sha256:b9ef136537e87d4d699aa6486cf79d60aab748d66a343d26a530ecbc691e3424 +size 1092962 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_59_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_59_BC.uasset deleted file mode 100644 index bc794a37..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_59_BC.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:27f57d609db861d78b91726fccc687874688eed447f9d86879ce65f5a8943c3f -size 633781 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_60_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_60_BC.uasset index ac3f4c62..cb0b9d53 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_60_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_60_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3c035fd86584b9c83bf79dd8833a9eca620d2803f71826afe3c8fd2b25929718 -size 963114 +oid sha256:d5dc49a4e8f1000c47bbbf3003603c90e0078cad3504c5afb0947556b9b3ce92 +size 1009582 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_61_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_61_BC.uasset index 521a96ab..d4f1fc7b 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_61_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_61_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b37a918f4db51743c25b14f0e14d8fe84d09fbfb9f373a4376b884b3b0e979b7 -size 7030120 +oid sha256:de668275cffae9130e04e46f89e8d5b003b56b3ab427c60282557a78f0a54dc6 +size 6330637 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_61_M.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_61_M.uasset index 2a8276f9..6abf73a1 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_61_M.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_61_M.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:49ac906b1ff6c38f7f32d00f0b62e3c55beae7583ddd0de821952acc8c9a70d7 -size 4182433 +oid sha256:452e18c108bbe611149fad16e864a5efa9c88db54e2af577992793c8ede8033a +size 3166844 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_61_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_61_N.uasset index 53b79460..97a8d9d7 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_61_N.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_61_N.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d5e8380208f41b38f25c82e316bffcc226e6d56b9f756e71298f8bdcd32398eb -size 6357501 +oid sha256:e2203eac387da16bd07fce86bd88895df9164fec2513145999cab7446b91dc8b +size 5443834 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_62_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_62_BC.uasset index e985749d..fa2bbcd0 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_62_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_62_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9aadbd519114b1d272052d2fc9feb9b6e2ada05066163ef1a23c26344c83fd55 -size 1018500 +oid sha256:b0f87503a83b074d8556eba8081028e04364e01bd66ca6227ddbdb020c1da2e4 +size 828740 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_63_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_63_BC.uasset index b2b775b1..2bda2b4c 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_63_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_book_63_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ba70e499386ca85add2e4b32548e0c8d8491a3d721e61b0f3742f9b68cdf59bd -size 4019139 +oid sha256:7af329cf97eb5e4a447d2f42c7bae83ec3b3d969050ae5a11917b5bcd741eea9 +size 4012469 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_book_63_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_book_63_N.uasset deleted file mode 100644 index 132c3adc..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_book_63_N.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c4ba1f90b5746c4b48572c0fa5fdadcf76c08e64ce0f51c77feb940484fad77a -size 650460 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_books_pages_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_books_pages_01_BC.uasset deleted file mode 100644 index 2061498d..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_books_pages_01_BC.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fd41a58c97f81b07e27fe91c5cc4bd3f861e7c94907bd6d5d419cf65b576414d -size 67528 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_books_pages_02_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_books_pages_02_BC.uasset deleted file mode 100644 index ee8f16a8..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_books_pages_02_BC.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1330272811909e0c98a19d475346022744fee91243651b8573bf1d6a10823af2 -size 33603 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_books_pages_03_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_books_pages_03_BC.uasset deleted file mode 100644 index 41e9738b..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_books_pages_03_BC.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:279f5e18d5f7b1338ad575194cb800be93ffc72599c78c9b4e6d92506b938016 -size 50096 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_books_pages_05_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_books_pages_05_BC.uasset deleted file mode 100644 index 327e1ba4..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_books_pages_05_BC.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1bbd6d983d57e8f444fdd0db82fc5eeaeb3403df28f0e5e6431b8ea7a0028098 -size 65376 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_bottle_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_bottle_01_BC.uasset index e2472c6a..dd99dcaf 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_bottle_01_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_bottle_01_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:35d435a2cf3507e35f68553b17edb36d7913e32d4e2922a44043f79fb83fcad1 -size 3245379 +oid sha256:e388477010b9ba4980c3c447627b6510f2a52e76b534a5b3e4f4e435cc85b66e +size 3438666 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_bottle_01_M.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_bottle_01_M.uasset index 44289257..fb5374f6 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_bottle_01_M.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_bottle_01_M.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b91531404c4e3b9015a3ba539a52bd705bde4661277d74f5421340101b69b6aa -size 2574578 +oid sha256:632b55b71e6a52cd927c4b065800e8221b16e7b8947f713321fa886ade4ccdd8 +size 1857865 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_bowl_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_bowl_01_BC.uasset index a2b7c757..0be8108e 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_bowl_01_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_bowl_01_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:70d261d011af17648ea6c23533fa812e303b9b4587bc51b1401a6ff3a85ad606 -size 1684898 +oid sha256:7cf8d648bb674c5c18f2c1f799772bc7bedb069100864d296aa84f885d66687c +size 1459124 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_bowl_01_M.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_bowl_01_M.uasset index f05195ad..4eb435e8 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_bowl_01_M.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_bowl_01_M.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:772081a7076ff7c368719484301918cc351273eb2cc99138f37ae5de4558056e -size 1406878 +oid sha256:ed2c749a6504ae5c378ca91c8ff257f15f17fb2e75f102da2a1f37c5e71b70b6 +size 1120402 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_bowl_01_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_bowl_01_N.uasset index b524aea4..5d98a96b 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_bowl_01_N.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_bowl_01_N.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:293d8990e0e13a57da232e1e20d7cee8a1a0b53addbcbb1175523acc895bb935 -size 1642546 +oid sha256:ecf3e6ab47e7eae2e52454783e4804d2b082f7e73c424de58cd91c1c54c9950a +size 1483742 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_chair_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_chair_01_BC.uasset index 9ce586cf..bcaa6701 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_chair_01_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_chair_01_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1bca109a85f501233371da6a1c4a9000c64ac3828f3d9025bd716a3022fdd068 -size 7648696 +oid sha256:945a29338ac74ecd158faa55adc3b40d31870bf8fb1de81a23e25b7c44a562bc +size 6683900 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_chair_01_M.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_chair_01_M.uasset index f606550e..8015051b 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_chair_01_M.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_chair_01_M.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7bdf706dd3a29ea84e1cfa59845836b263f6f610eb77c6d4e73834d761d0957d -size 2929748 +oid sha256:3541283ae24574354df571b5525ae5cdb606d3a341b5071c57ebcccbab29c283 +size 2123771 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_chair_01_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_chair_01_N.uasset index 0b138e26..d88a243c 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_chair_01_N.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_chair_01_N.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7e0e8a5db590adafa77950854264a0475bee098b329ca264052ee5dc10005950 -size 5090545 +oid sha256:9deca477e7d4ae5f7b55d814c16917f2e50de29db973f1a4bb3ce447995d5cb2 +size 4163286 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_circle_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_circle_N.uasset index 45de416e..1f175f83 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_circle_N.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_circle_N.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fc0ebe7d52ae5b5363917a124b9201c0f65f41f2c0591c85e53c98aaa02dd738 -size 6464148 +oid sha256:d36d65ec73f81e05385a75a0908b22156f59e5f46a53543970860a1a3a2ef0d7 +size 5163362 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_clothes_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_clothes_01_BC.uasset index e826512a..9b9d01ff 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_clothes_01_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_clothes_01_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8a4b22fa7855ce4893a66c70ecaa411bdca702c17afd24545450e82ed76fcde8 -size 4601033 +oid sha256:afe9e648ce72c951e13275be9b01ab3f1e0c9e126e7f5b3ea15b32e5f2079fb3 +size 4093750 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_clothes_01_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_clothes_01_N.uasset index d2752718..7cd34c53 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_clothes_01_N.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_clothes_01_N.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7868df382eeb66efbed035a65dff136db82461b09ddb5a5a3a145a4f16fc1df5 -size 3384397 +oid sha256:838e11f2c16ad65937da4867759dba85bd616fa28df0683288d1ed796f8b0c99 +size 3161201 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_coffee_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_coffee_01_BC.uasset index 13894f05..1fbe00d6 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_coffee_01_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_coffee_01_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:822baed62ed03e1b0d34058a931966fca993f24b02e705613bf0b1845b97bce9 -size 5126601 +oid sha256:0cc352ff2626d5e276576e892c7ebd9642754ec00f046a9d6b8d07dda5143f62 +size 4372969 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_coffee_01_M.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_coffee_01_M.uasset index 0baeccfe..7cf01e38 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_coffee_01_M.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_coffee_01_M.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bba8a3e9090692f47fcc52f9480fa84ecd8c8ce74a60a62b51efb4b890c3eacb -size 5255836 +oid sha256:804ec0233b8b52fc2d22130f301e821c18f561a0529a1b15dcfe21ad8f812b9a +size 4221688 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_coffee_01_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_coffee_01_N.uasset index 0938e1c4..d34c4d05 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_coffee_01_N.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_coffee_01_N.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:96f985b22d060686f52d2a1557768fea88d873273f7a377108b6a21b15d009e4 -size 3804700 +oid sha256:672b084948da23a90e93ae84483d3580c9423305282e8e3c2e52bf077dc5eb79 +size 3042746 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_cooker_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_cooker_01_BC.uasset deleted file mode 100644 index de97511e..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_cooker_01_BC.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ae4e108b91a4b0ba5a9d3f4b26fca380d37429105a8178b49b01f0e7676484e6 -size 50866 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_cooker_led_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_cooker_led_01_BC.uasset deleted file mode 100644 index 63c1673f..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_cooker_led_01_BC.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1c757296d3ef3199701cd5a1d5b84922e4f073aea92e03780687b77ef2041ec6 -size 116190 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_cookie_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_cookie_01_BC.uasset index d6b07139..aa223915 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_cookie_01_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_cookie_01_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b884906eafeae329bb4139dd0d782833b66c40b6ba8915da296973bafe2ed410 -size 744339 +oid sha256:ffc0562f349da3a262cd771d90957f693040d0bc0ef1f3a4f4557fcd0c949d3f +size 743496 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_cookie_01_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_cookie_01_N.uasset deleted file mode 100644 index 0a6451bd..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_cookie_01_N.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7bcd1e5e82b8599e416b032bbfacef7e53fc2d474828bd88b2c21afcbe90d75e -size 511728 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_curtain_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_curtain_BC.uasset deleted file mode 100644 index 6a5584b2..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_curtain_BC.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3e9a8936c86009bae1c42d7ca182bcb72d648147202f266c61f584cf54696b37 -size 681172 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_decal_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_decal_01_BC.uasset index e9a0f5ae..b69c8f90 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_decal_01_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_decal_01_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fc14ec3b7a80a8e1102607a5ba5eff7661fd8fbc158148accde25355675f3c8a -size 3177464 +oid sha256:c8117d719ba34c257acc9f7d8593570e421e2bc2e635ebb841d8e28f43c297a8 +size 3034505 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_default_OP.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_default_OP.uasset deleted file mode 100644 index 2f2bcdaa..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_default_OP.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9068661fa0380aa11f8c9a84563fc5814adbaab2e01368f490892a42049abddc -size 5692 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_detail_normal_02_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_detail_normal_02_N.uasset index a925c6a5..0da1d57b 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_detail_normal_02_N.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_detail_normal_02_N.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:58d65ec8a422ee2b454fd2dad08b207b710019488c739a6089c63bbe1edacb83 -size 15204823 +oid sha256:0db4e302d7e76709ba8587916ae24cef1e3e5e2e3d1ba1f92d9f7d9252a19cda +size 13376405 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_detail_normal_03_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_detail_normal_03_N.uasset index 2d2a6609..f1ef6e2b 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_detail_normal_03_N.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_detail_normal_03_N.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f7e57c34a5e56d6d846ea23894f5d1ae1d7e5ad0546006ecd74b7ad5900f8c24 -size 3721329 +oid sha256:19e4e97fc3a8d80da1be33f5078f49a7d95032be4d312e51b7ee95c55ad504e9 +size 3154533 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_detail_normal_04_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_detail_normal_04_N.uasset index 3d8981da..831b9e89 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_detail_normal_04_N.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_detail_normal_04_N.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:be3f76882708accee88538873e60c80fcd84791828e8a31f8a5ffa04d9290db8 -size 6842645 +oid sha256:2065b74f555e77ba64dbfea04e07eba8081bb64b6de61ff3582bcd96d6586674 +size 6418900 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_detail_normal_06_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_detail_normal_06_N.uasset index b49a85f4..43683041 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_detail_normal_06_N.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_detail_normal_06_N.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6ab0fbc3bd5876b3bf21c8ba047e21eb3aac741fcf24ce014f304c9042a8a76e -size 9855759 +oid sha256:5a9603fb985fac1f6fd9151859568bcd032388fe414575661f23b8cecc584174 +size 8716884 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_dirt_02_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_dirt_02_BC.uasset index f44dac30..c4b20701 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_dirt_02_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_dirt_02_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:747b2880443e44606bfa9b539b13869eedaa3959d2090cc01f36e435cf2e5225 -size 11537618 +oid sha256:1ad7d57bb6e2f787bc8cf865a4bd4722d6dd1b4bec7e7c64cb1835cd474de96d +size 12296687 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_dirt_grunge_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_dirt_grunge_BC.uasset index 6c6dfd49..9770ae07 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_dirt_grunge_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_dirt_grunge_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:97649323090f58ac688d4b6c19c7d2fb20c51097b2352a004412a781d1c19d22 -size 11832382 +oid sha256:aa28e728348e02a02d7adb6c36b96946ab0a44f39de85812951c5f2be4541687 +size 12519447 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_dirt_grunge_fingers_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_dirt_grunge_fingers_01_BC.uasset index c5b601ac..298f5771 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_dirt_grunge_fingers_01_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_dirt_grunge_fingers_01_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4f9fb35962cef1b2f2afe7a4f5a1933de69d72622c65c496f63fb0a312c74d45 -size 8290817 +oid sha256:79f10794f89fa7239ea43006d7312d1a111b366c7aff8ff31d2015a1fe4c696d +size 9138826 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_dirt_stripes_M.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_dirt_stripes_M.uasset deleted file mode 100644 index be9faf20..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_dirt_stripes_M.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5d88961c93a46e0fba3da7fe2e5fbe8967a05c727adbee7f3aa442319e8e5552 -size 158313 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_electric_cooker_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_electric_cooker_01_BC.uasset deleted file mode 100644 index 397e13e9..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_electric_cooker_01_BC.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7652de43e96f4428d9dac9e47288e682eef7493f6990151d9b34a3c1c7c618fc -size 645890 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_01_BC.uasset index bad9271b..e9b0d035 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_01_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_01_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c9467b48722e7322afb6121df5bc2b319d13bad1832adb9f0d64ef0c61c35fde -size 1054070 +oid sha256:022a155b847452d8b5074e33e64fb822fd57fceae2fc53848459f6530992fcda +size 1054724 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_01_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_01_N.uasset index 3615820e..5ce47775 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_01_N.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_01_N.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0b6e5b096980095407356b5f988b439dbe91d981b7492ebc560cf599c6573867 -size 1749921 +oid sha256:d6a8698242b700f7edd4751f8758da65d656831abb607be2b430ee26f7416cc1 +size 1467625 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_02_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_02_BC.uasset deleted file mode 100644 index 963766b6..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_02_BC.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f40ae4cff603c4eef810232841caf70b406824aff179c5b0cbf7626c61cd7fa5 -size 336434 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_03_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_03_BC.uasset index 06278831..d7a942e2 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_03_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_03_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:453485c6fb68a9bc77782c3657d9f2b91ad40796def88879044eefd67cd91a28 -size 1096465 +oid sha256:d4cb46ea835dceacb3c38618839168a346593e184ef1dc5fa3769dd584df6675 +size 1097119 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_04_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_04_BC.uasset deleted file mode 100644 index 872dd589..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_04_BC.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9bb88dd75140ae8bd643eb547b2932c24336a408ffad3a65c58b528b5a3ac367 -size 327352 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_05_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_05_BC.uasset index 4c004962..0b3f0d2a 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_05_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_05_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:42890fbcd910d971a4e40de15897b33ab457865b3c1195424ca24b78241e945b -size 886790 +oid sha256:14fbc6a58bf8b5bfef65383f0afdf4f580920a9e7ed0e154d73c87ceda7886f1 +size 887444 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_beaded_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_beaded_01_BC.uasset index 69fe63b3..8f7bea37 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_beaded_01_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_beaded_01_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ec5a82ba7011a8ff8b4da4e2b797fd388a0ef35971140e6039ea377bc90787fc -size 1131596 +oid sha256:085de96c5c129ee1600a93ea972e619b6af164f4ebee844bbadd6c38372158e8 +size 1108835 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_beaded_01_M.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_beaded_01_M.uasset index 1c6f6590..b227f83c 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_beaded_01_M.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_beaded_01_M.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6f5937270ef2646fcf30d837c35c5beefdc8830c874a435e7ed37abde735038c -size 1283427 +oid sha256:2c6310f2bd0225a3fd69260c06a9f77ef24b5f8a74a7f4d4671acf9e8d97b17b +size 1266789 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_beaded_01_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_beaded_01_N.uasset index 1d073d85..e575bc08 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_beaded_01_N.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_beaded_01_N.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e0fa067dca37ad93b75c5d39b89ed6b337bf7b7e17ca487cbb992b7fd8f4de8d -size 3118605 +oid sha256:e0a284dadf80f7718cf954d1df416b75f40ea0b3620637f42c5f6e8957c91a8a +size 3242257 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_linen_box_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_linen_box_01_BC.uasset index 8ef41e39..86afd20f 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_linen_box_01_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_linen_box_01_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c36d062df4f562a60951c93006d474d482fcaa50b5b6166362c3ed235b546ace -size 7077934 +oid sha256:ef2ce9f040628c860ccb6ae0328c696816534152123fa1c103ec7e7832f5b624 +size 6207301 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_linen_box_01_M.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_linen_box_01_M.uasset index e626a7f1..f69d5a4e 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_linen_box_01_M.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_linen_box_01_M.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7e7ed400185ab169d9914c76ed9352a3b95c70fa2699c80229b725ed7435c275 -size 4606118 +oid sha256:c6eda9febd614ff602595d49d34c041d7ebf9eb04f8461caad23a92735216085 +size 3883620 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_linen_box_01_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_linen_box_01_N.uasset index e385334b..183cba86 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_linen_box_01_N.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_linen_box_01_N.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5c082b89692a10ef55f8c14433903620de288a03556b9c4dd04db6c50e00388b -size 5190343 +oid sha256:dbdb4425dd75b39ced08c3404a2a3934b6ef5e46c6a0233518b5f943746f3af9 +size 5141083 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_linen_box_02_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_linen_box_02_BC.uasset index 2c63315e..e96bae06 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_linen_box_02_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_linen_box_02_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:dc9e41a9d6ec188902d95dd47d79f703dda8e92a3500bb34c5b546e29e5970c7 -size 8549232 +oid sha256:211e7a77e31682511691f936e3827938380505d61c438885e3f25a330c0393f8 +size 7370707 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_linen_box_02_M.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_linen_box_02_M.uasset index 17c6678a..0b8a4710 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_linen_box_02_M.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_linen_box_02_M.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0558a9564a10fd65c3fa5d0a94a33f20ad018a519473103105a12c96b445476b -size 5422854 +oid sha256:601d762d1cdca972a9101c6b9123b5375f0d1f5fc21864dbfc4c2cc6d5b414ce +size 4555065 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_linen_box_02_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_linen_box_02_N.uasset index d8a5d130..024b0d5c 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_linen_box_02_N.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_linen_box_02_N.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9e2fd1bb6f301a51f16604b8c53375e3f5fd39012da5abedcf59327f6de0cbeb -size 5886753 +oid sha256:c12006f9161d8067557af604ab761551e3efe6cac5a84bb315190f36ae2cea42 +size 5838129 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_linen_woven_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_linen_woven_01_BC.uasset index 746f3380..1e997681 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_linen_woven_01_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_linen_woven_01_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:42bdeb61807c08111d59456be32fd55a610d167c1bb44ef976bc437cff91e99c -size 8889477 +oid sha256:dc1e81ae39f7308e6a23ef6fc0a786ce845e612922906974b4d977d4253c2ff1 +size 7539533 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_linen_woven_01_M.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_linen_woven_01_M.uasset index 8cbbc8e3..72014d1d 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_linen_woven_01_M.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_linen_woven_01_M.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e0c241537bc83fb08c5c4c77ff9b4870b1c5a4dec7ed7038901d16cbe13e0728 -size 1085113 +oid sha256:549c46b71cc0cd476f1f23c8abd3686e15d08e0ce8fa10d432d7890b987324b1 +size 827456 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_linen_woven_01_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_linen_woven_01_N.uasset index 7adc79e2..010989e9 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_linen_woven_01_N.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_linen_woven_01_N.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9a7430e2a57f4920b8e3403c54a08d3f7e3cd8c9349449dc81369431753e5f5c -size 10390775 +oid sha256:97adffb49753cd241c7512cd70b8ec9d55a75c629e70b3cd128d8b13e5a68895 +size 10730374 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_moleskin_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_moleskin_01_BC.uasset index 88a8c1df..cef83f14 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_moleskin_01_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_moleskin_01_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0028ed8a0f885e999e54183f8dba34b9e4c8d4f6946f0d436f0890fdcefe669b -size 7527856 +oid sha256:848e03c5e14a75b7cdce51362fa7d59dc14ea161000fcdf6411385ee7ef7d824 +size 7141562 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_moleskin_01_M.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_moleskin_01_M.uasset index 35c0e6e2..b6c5ca86 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_moleskin_01_M.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_moleskin_01_M.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:95a4c0eb4b28a1548dcacf71dfcc715f0cced3d707de0ebfbabfd5e667b55730 -size 4213211 +oid sha256:f6bc9c47fb03df6e87bf5bb2a76058ed7d1ad06d7fd94179d0ee4963db770c65 +size 4212657 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_moleskin_01_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_moleskin_01_N.uasset index 27bfcd64..1db5e2ff 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_moleskin_01_N.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_moleskin_01_N.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:99d85b68e22f621d7e1d57e20f5f730a97b49ccdff14a594f862330b41b04e9c -size 11707951 +oid sha256:fba58cf0501b11f5addd9ac5ab70bb8f4af26b883aa24ce5b50e36fa06250521 +size 12653586 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_towel_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_towel_01_BC.uasset index 142c67a9..ad518551 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_towel_01_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_towel_01_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3126c2f9d9241243f520e771323266cdd75d433e69ef46c90be39180c846c5e1 -size 1709961 +oid sha256:99134fbba6901a2550affbe4684c3d6a018bcaf70a6e8a86b34e63cc554e6cbd +size 1710615 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_weave_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_weave_BC.uasset index bf39424b..33a65ecc 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_weave_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_fabric_weave_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:589fbbc5fa8f6c605401c24f88e0caff2e2b85b32d00ef2e16ab3bbcd421789e -size 5754823 +oid sha256:c8ea715ad5e9c64d67444fdb0b0a46d4312de58e4f6af8edad58884da6f5d51c +size 4711709 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_flower_cactus_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_flower_cactus_01_BC.uasset index 144d914d..49b6045b 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_flower_cactus_01_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_flower_cactus_01_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e8749e793b4b137dbdd50810cb2e3de28d6a81d131a94860dd3648175b6a25a9 -size 5352361 +oid sha256:9d82e91e22a93c7196129fa70e3a7164a3272724dc05c6d2bee02ddc2d37d483 +size 5234359 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_flower_cactus_01_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_flower_cactus_01_N.uasset index 9f758b08..a5977d84 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_flower_cactus_01_N.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_flower_cactus_01_N.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c4c7f0c03e159ddf593ef972591ecb7c6e20af1eb085b141c7e1302e6dfaa988 -size 1629091 +oid sha256:5f19619797887cd6e2aa3aed5b6a2b2bf251a80d9564527387c4430ab90efcdd +size 1710780 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_flower_olive_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_flower_olive_BC.uasset deleted file mode 100644 index d153c043..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_flower_olive_BC.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7edc3bdb6c5742ce1cca5d2cd3cc44c7fa4c7d4b290f24a25c16f9ddb37b1d60 -size 710834 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_flower_olive_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_flower_olive_N.uasset index 02e15388..8a9259a7 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_flower_olive_N.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_flower_olive_N.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:03dc3bd0081ba936a50fa03590a1d8848b34fbea6cbb7a3f7dca5df15fc1a587 -size 688879 +oid sha256:6a4838b7eb0b8672f93769678ae9887b281247b1d8df896e3ec7c3bc76d7fec2 +size 767254 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_flower_olive_OP.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_flower_olive_OP.uasset deleted file mode 100644 index fdadb49d..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_flower_olive_OP.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1898d8616e87729f38b615804dce6e2f81ed76ce6c983578ca633f6dfddc8335 -size 35095 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_flower_pot_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_flower_pot_01_BC.uasset index 05a13789..be346260 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_flower_pot_01_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_flower_pot_01_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e1a53b902dc872c98a41de4c3148a8ec493a249bcb9249faf832e76b529be3c4 -size 1644514 +oid sha256:f35ace7177b79976e1008fff71bf4a6972678d146dd963be8337ebe81765079b +size 1533080 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_flower_pot_01_M.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_flower_pot_01_M.uasset deleted file mode 100644 index b53e0ac5..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_flower_pot_01_M.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:07c203fa562e4411525a92966544491c4132ae91a6fa72f757a3203cb369a202 -size 854544 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_flower_pot_01_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_flower_pot_01_N.uasset index 4e02d4fd..6dbcf723 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_flower_pot_01_N.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_flower_pot_01_N.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c8b236b2eff1f4ecdce3504152e77e0caa7fe5a7ec6a3d3b74156feb51dedf69 -size 1856245 +oid sha256:3c96d5e2be5bd8c5014ea1f5d95d24780d8f2b269b3493721bd036538071ef83 +size 1628747 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_flower_pot_02_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_flower_pot_02_BC.uasset index c2a4cc0c..83a25fd4 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_flower_pot_02_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_flower_pot_02_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ebfc3ebc84863f24fc82e473df7ac62da16b3190abf8672c7e64e8d80d197b16 -size 898425 +oid sha256:afcf0a69ad8b48fe57194ace5fab91a4e35eca9d790664d45b29e6ab01d11402 +size 912942 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_flower_pot_03_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_flower_pot_03_BC.uasset index 2b82d871..e0d5770a 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_flower_pot_03_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_flower_pot_03_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e10ffa0a7bd2f01e133d8b557dbf925394b4d045b1822859f2b8aad7a0105f68 -size 20627066 +oid sha256:89899e38bea6a72cdc3bcb1df0c40cef96d7d981feaf980c678482f42a373b2c +size 9371353 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_flower_pot_03_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_flower_pot_03_N.uasset index 893a77ce..0766a385 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_flower_pot_03_N.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_flower_pot_03_N.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fd8fd7ca88e48c4a4e0f5fb94e47dfd90c849e87888a069ff588cdc335081ef2 -size 22367584 +oid sha256:631f58188fcca2549cf1bdb12daffb53f7a2e47c590efa73c2b10335a333a9f2 +size 22750168 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_02_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_02_BC.uasset index 93ce83f5..f5132d14 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_02_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_02_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8c51b085567b51c08564cc847fdaa5d7c606bad32235872761f719f0e45b1b49 -size 1940447 +oid sha256:2d52a09f3fa590417bc931f088c63711da0ab59a6e54d348aef1397807e2fec3 +size 1905843 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_02_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_02_N.uasset index 760828a7..53fc4ec3 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_02_N.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_02_N.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:88bcff494340156f11b1efa1992666bda005468ddcb17221146314a4e9eef1bd -size 2663166 +oid sha256:f64270e7716401c9fabee4230423773e0bf72831695be0249bb794625b5c01a4 +size 2770485 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_fikus_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_fikus_01_BC.uasset deleted file mode 100644 index 45a977ce..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_fikus_01_BC.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a5f7d9e76ce4e6831b552f8841274c67bdaa52f223d601af86a166047f82e3b4 -size 156413 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_grass_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_grass_01_BC.uasset index 6a50088d..d1c2973c 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_grass_01_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_grass_01_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:61ceba3b273d2400e415ade4551ed90313ea75cb57dd58c2f8a4622e48d6214e -size 2514708 +oid sha256:d6f1f27f6b364dccbe5a8250df62915d713757ce5e135eed7fcb4af3d97ce9bb +size 2718032 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_hedge_02_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_hedge_02_BC.uasset deleted file mode 100644 index a4f7acbb..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_hedge_02_BC.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1d5e3c25c014c88df2e243253fbd3526e888ee1eecbb8658d376f6dd0c7c3838 -size 442152 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_hedge_03_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_hedge_03_BC.uasset deleted file mode 100644 index 37ceb542..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_hedge_03_BC.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:59236c4c397b6a3ba3feeb0d9dd6b0ff933a48ad107b8a6a9edb87a1439592e9 -size 342584 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_ivy_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_ivy_01_BC.uasset index 9e78f48b..93b22827 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_ivy_01_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_ivy_01_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7a3016c0c04436b8343e83b21ae23fd8452a6ace76144facc1c7f641eaf1bb4e -size 775634 +oid sha256:957fa35f4995130b13ae0e564f2265e286f550b61859a863aa3d82f63d44bcc9 +size 785329 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_ivy_01_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_ivy_01_N.uasset index 63d221dc..31697307 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_ivy_01_N.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_ivy_01_N.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7b49d74e93ee0cc5282ab8828441fb0c24c5731b11988b40f2721dc52ddc1960 -size 783442 +oid sha256:59081fa8281197665995debf31156900180d60b6056e3d512ef981269351b55c +size 816149 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_leaf_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_leaf_01_BC.uasset index 23e6f2f1..79c54c4d 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_leaf_01_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_leaf_01_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7de4cf1404b6622658711a100ac6e6996c84746e156d7a0a8c701e94d8c1cff4 -size 1435399 +oid sha256:a43de31916357797185ea487c89a7daa16eeadfd835a0965972c6e87501fdf55 +size 1254368 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_leaf_01_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_leaf_01_N.uasset index 3a0ffbef..3ea2a0b7 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_leaf_01_N.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_leaf_01_N.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:340f44613e0b1c4320d5dcc6f0ab26f356bbefaa26a975e66a1569961892b44c -size 1209884 +oid sha256:c2816fe0e13cea7beb8fbc1a7875d9420e35041b7e25471192de0603c4c68cb4 +size 905078 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_leaf_02_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_leaf_02_BC.uasset index 343c34f4..9b6c53b4 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_leaf_02_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_leaf_02_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6b44acff907ad2f9742e078364c2ae5cf30b742730736a16066545a3f268740c -size 1321174 +oid sha256:ffc4bb093f60423a16953a744b17357a10886dbdd0b41dc6a8eb2c2b974afb61 +size 1310377 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_leaf_02_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_leaf_02_N.uasset index 38dd82bd..f01324c2 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_leaf_02_N.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_leaf_02_N.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4f771eb07e62b19b175ec980696d8d96297d2ec4fcd84fd721861b962249a6c0 -size 1192586 +oid sha256:ad06d9eb518c04556142859f83b84aba267c33c7da1018e5f3cc836849b0087a +size 952149 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_leaf_03_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_leaf_03_BC.uasset index 8ba39c15..f3d7b58e 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_leaf_03_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_leaf_03_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7b8dd68ebba56e0d29955eade1fbb53159e8122e7c9d4a12e9bee78a2b24ba39 -size 2112347 +oid sha256:706cf26b13440cbc76279a3ffc5b67a478365cb440e039120be8f912da121f0c +size 1646880 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_leaf_03_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_leaf_03_N.uasset index 4c531ea8..eb88254c 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_leaf_03_N.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_leaf_03_N.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:06131bb437b8169f98cf0305f9d24039c2684d0615692fb35bec10c7b5ff5166 -size 1472482 +oid sha256:92b63ecaef95a6b823b2ba954c8fbb3d091db064d974f060b396c6ef38836195 +size 1278152 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_leaf_04_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_leaf_04_BC.uasset index 2374f8d4..9c81e6d7 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_leaf_04_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_leaf_04_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b08c5feb9135fe39329a5d00e3f72a831bb71eef9dd68f64561d1015cea27cc6 -size 967334 +oid sha256:cb531e7f2eddcb47183657ce20c929c36a1bbb391268ba96574fa1cc7e9474fd +size 984261 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_leaf_04_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_leaf_04_N.uasset index a6bf69b4..21e75dc4 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_leaf_04_N.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_leaf_04_N.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:10ac968b7e2a66526d22c9c409cf397adb7a4ea98ae170d4ed92c35397613278 -size 664034 +oid sha256:97a6936ec1df27211db09e0663d0c944f40b35f24a5dc9fa81e78aedff66bc79 +size 778035 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_succulent_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_succulent_01_BC.uasset index 3acd18b7..f6f15b33 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_succulent_01_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_foliage_succulent_01_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fcd55c1dc889ecf815cbeae394d23b918396d2b5fafe63f61375c6e7bbcfb0f3 -size 2902833 +oid sha256:50f4af5a967bdacb8bc46a300637fa628679444969d41c51c583d1562c6bf0f2 +size 2903487 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_garlic_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_garlic_BC.uasset index fdd310a1..3b27a3be 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_garlic_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_garlic_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:829cc990e9da06d0b22c2b257c3d49469385d8bba2b1bcbee0c7ce2285114503 -size 8116872 +oid sha256:3405a0b876e5cc92afb89c9723527afdf22834ee4d432a4f0f6e06343d7682eb +size 7593909 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_garlic_M.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_garlic_M.uasset index 99bb2a49..b5b2f8c3 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_garlic_M.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_garlic_M.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0603eed94a653175efe4b3990136599929f38333e72a9482cdb232de3aede87b -size 3536704 +oid sha256:81b2f485332318fb3159a3127228a25a02186a8574a2ae0a22258285e689de16 +size 2777786 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_garlic_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_garlic_N.uasset index f16d019a..dd63ccb0 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_garlic_N.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_garlic_N.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a58e227a1c197068eca5e337b7c9143fc8b842249cda90a6ec1e816224b191f8 -size 5218885 +oid sha256:44c8e29f8848a8bbd74ebe87fd0ffb350e33406e184dc3cf2daa79cdb8966bdb +size 4548248 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_garlic_tray_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_garlic_tray_BC.uasset index 76171d9e..a7b5996c 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_garlic_tray_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_garlic_tray_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:acf1ed0f5a8d80b96ec749fedb02035d184b03bbc7c286a4c45727166c73aa24 -size 4356143 +oid sha256:3208cc91c3cf26f801ec2c03a049d658742e8aa4fe0bdf7d6756e17f8324e138 +size 3842374 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_garlic_tray_M.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_garlic_tray_M.uasset index fe8d6a09..cc0b2186 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_garlic_tray_M.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_garlic_tray_M.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:29964e9f597458fd00d1f22650e4f25e4ecf85dbe67a28c23a27c2efb55c92af -size 2345980 +oid sha256:ada96069033313fd0404cfbd8494407e93899bf05da7ab1c9881cd92362f827a +size 1701207 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_garlic_tray_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_garlic_tray_N.uasset index 3465aa32..06e82fef 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_garlic_tray_N.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_garlic_tray_N.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fcf952c9bc22b3add786f852aa670545750f60374ab548750dd5291323a7f257 -size 3985862 +oid sha256:27ef94d7f1a89ed35ab73a2ea5ce2f5c5fa888fffff92a989e05c2f7e45f6d54 +size 3182248 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_gramophone_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_gramophone_01_BC.uasset index 9220ca29..70b58f3f 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_gramophone_01_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_gramophone_01_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:53787bbe513457002242b4eab811f5d165eacc97d764335f9b0a9f6e33dc3008 -size 918535 +oid sha256:83781590b27269edf56a0e25c1c331baed618ce3749263e555c1181c522b6919 +size 877013 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_gramophone_01_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_gramophone_01_N.uasset index 3d87fa9a..c21abd49 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_gramophone_01_N.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_gramophone_01_N.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e83eb082f18a204c1f72d0b309b2d696747593e30b6ec340fdabf31ad2b76aff -size 3090679 +oid sha256:e27f5aaca29ec44bee54a20615f8b9bd4a0d7d53d5bd1d423d7e3e66f3a67416 +size 3177293 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_gramophone_01_R.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_gramophone_01_R.uasset index f33c9d74..fc6f169f 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_gramophone_01_R.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_gramophone_01_R.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b1df1925734b728d7e260d2fb12ba1587b552b2f2b030873044252871b061fa2 -size 1571092 +oid sha256:f31956de73de6f280684a1d419cf7bfbde069a8d3b7ee38831528c81c1d18a04 +size 1518490 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_grass_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_grass_01_BC.uasset index 92368afe..e2e5709e 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_grass_01_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_grass_01_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4092495617d9aacaf8422b3f9de4e4be57d6845bbf5ad06976f5d585682eb23c -size 3500281 +oid sha256:6e5d5e345a476df24e61523be0d597e823d2ec325b3db0429907329444a05338 +size 3500890 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_grass_decorative_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_grass_decorative_01_BC.uasset index fb417b67..5d518408 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_grass_decorative_01_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_grass_decorative_01_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fb21729c1ffea7766cad0019e20aa0ba2e83e83a5e2cb401957764757b1b229c -size 88362 +oid sha256:9c8e0f09823939be9ccda464d672baace6740aa8f9b269cae3c156496186c1c7 +size 89016 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_grass_decorative_02_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_grass_decorative_02_BC.uasset index 531a6b78..f6b6a023 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_grass_decorative_02_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_grass_decorative_02_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d2d0cc3052d099bc613387ed5734c2d8be5a09c892a283b4f638e038d79f1e2e -size 162659 +oid sha256:4ba45298d212bf02d26b0b25e78e225c2c9200c1f35a2460cd0b140cf1466709 +size 163313 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_grass_decorative_03_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_grass_decorative_03_BC.uasset index 76a44c34..4164a168 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_grass_decorative_03_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_grass_decorative_03_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8734eb3365691ef7d4bcac764aff8e0d73be7e1a943af512f929e5d5728616d3 -size 191803 +oid sha256:43cea1ea52a6fe98076ed574b333c16de32894abae40dd857bc6666f84361801 +size 192457 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_grass_decorative_04_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_grass_decorative_04_BC.uasset index 7ee6b923..ad5b0c90 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_grass_decorative_04_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_grass_decorative_04_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:434b922e82a9912a6d70c84f53108e1ee8492b2631089ffe09b63de6097bbe9f -size 151019 +oid sha256:0edb0d2ad3eb63e0c46926935821b84ee28bdf5b2e5e2b91f835237e53a497e4 +size 151673 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_keyboard_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_keyboard_01_BC.uasset index 6aa3a9a0..3d6efdf5 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_keyboard_01_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_keyboard_01_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6f139d3adb35c3def440e21774dc3bbdfd527b9001878f3780352a7e83f6a7c7 -size 146535 +oid sha256:db56b547de8e0344e040aebf9a32b9afbc1a71e4e80e0130dcb352d38d43003f +size 101886 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_label_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_label_01_BC.uasset index 156674a8..6e0802e3 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_label_01_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_label_01_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:37c9ad5ccf6357cd996b89c02013e7331d8cbf11514b9631ff88bc5ccef3693a -size 855471 +oid sha256:e53f3251a1951171446e645dbaa6ef5b7b2444b9ccc05ab53234bbe5149e1013 +size 856133 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_label_02_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_label_02_BC.uasset index c7af8fce..20047b58 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_label_02_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_label_02_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:428501da2d81ea4452aeebfec38237e3d1a2dddf1514e71956391b3affd7d51c -size 824220 +oid sha256:94221905a9b803b08a169eb8798348c9692d5801f76c69016f721d601469ccc0 +size 824882 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_label_02_R.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_label_02_R.uasset index 4d5d9385..2367ca25 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_label_02_R.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_label_02_R.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:36d2c3babd970a18db6a4d038627bf446e3c35da6d2d800efff922bd94997317 -size 617993 +oid sha256:22af3527845f5201ad68a48f58f35f3accde6cc5723cc00eddc27bc0205dc0b9 +size 618655 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_label_03_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_label_03_BC.uasset index 8506ac42..c8b7ecf1 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_label_03_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_label_03_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:69e67156063cee867ded8569a2cd2eec8c346e4cb8dc44c49906072d2e93b568 -size 526155 +oid sha256:ad1e635f5a735fcf1130ec7c9f4205ac6e18af649dfcc27cc3a348e35f4ed6cb +size 441995 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_label_04_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_label_04_BC.uasset index 887ec590..311b2489 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_label_04_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_label_04_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ac0a20c0581b0edeb3f3a9e735cd4d1f0d67c59e3f9aed0d691494f258fb315f -size 177086 +oid sha256:50ee193618758a71fe62913f10099e5cbc413209538b6a91a38a58f5577cd6bb +size 177748 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_latte_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_latte_01_BC.uasset index b0a6e429..859be468 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_latte_01_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_latte_01_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:506b2a87d419277602e78c00ec881405330a089002364e93fc701f9b449b8ec2 -size 450222 +oid sha256:65ed8bf630aa6d88966527c25e7c4e57e59810cba127f245103499e07d967091 +size 423017 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_latte_02_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_latte_02_BC.uasset index 3df9d67e..ba19f699 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_latte_02_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_latte_02_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:947c2cffa6b7c5e4364846d3b36ae72d7707a7380ff697f9cdba88977fdf0990 -size 452878 +oid sha256:2fa3f027bf4acec0856439e8c3a23341264a4635fefb548c7d9f7df0406ae3ef +size 419326 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_leather_nappa_01_M.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_leather_nappa_01_M.uasset index a18296b4..aed5fc0d 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_leather_nappa_01_M.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_leather_nappa_01_M.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5b2e4ced932891bb416ed1a6e4cf4cfc46790b24facd240458845b2cbfcf5063 -size 854447 +oid sha256:19dee60044f07015e24efe0e7069d322d01ad438f66303b86d208b7de5786eb6 +size 639371 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_leather_nappa_01_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_leather_nappa_01_N.uasset index 74e7a555..9b92609b 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_leather_nappa_01_N.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_leather_nappa_01_N.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9e4821d91dfa3962877b77b4ffe63ccc1f86166b464442e28283ae031e1ff64d -size 10085827 +oid sha256:f7b0f3777cacb936af70c050f008f312390ff662474d7f99fd0a34550a2ed72a +size 10045599 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_magazine_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_magazine_01_BC.uasset index 79e67524..c5592cde 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_magazine_01_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_magazine_01_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:870164408d4605018409ad10ad09e52abceadff8f4293749672cf226aae0ed9a -size 2789346 +oid sha256:641cf7bd6c2edc8bb18fa44c7163cf08b2338b7711eb7893338ffd1591929e96 +size 2381021 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_metal_bronze_yellow_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_metal_bronze_yellow_BC.uasset index ce685137..39db97cb 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_metal_bronze_yellow_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_metal_bronze_yellow_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6127f9433c11bef482b98c44844ab53f3301b535100d7ef8adbb4580c0e5f662 -size 1641073 +oid sha256:c0b31f76a8f6e46b79082bb4342101b1543082de930cb03616d2070c68666ae6 +size 1605550 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_metal_bronze_yellow_M.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_metal_bronze_yellow_M.uasset index 0e1acfdb..9f4ef371 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_metal_bronze_yellow_M.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_metal_bronze_yellow_M.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d37ca082db8754e1c2482b95878fbe155a42e0651718d7c4389b9faa31223e67 -size 470533 +oid sha256:16f57b94f66482e0cdacab9b3883940a6ef8c6e0da2e102d04666a953eb06360 +size 315996 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_metal_bronze_yellow_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_metal_bronze_yellow_N.uasset index 833ad3c9..99075f55 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_metal_bronze_yellow_N.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_metal_bronze_yellow_N.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:11b8e4ce96fc51a55cedef8db627d4522771d0ebd29943a407078cd03447c940 -size 1364755 +oid sha256:c58c414722867d65f34fd974e0f2af0f6b7a4325ac7e30a5d30804bffc2d8214 +size 1083299 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_metal_forged_iron_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_metal_forged_iron_BC.uasset index fcd7fe13..38aebf0a 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_metal_forged_iron_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_metal_forged_iron_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:78b58bd8210a863daa68a17da4228ba7aaef71aabacb8509f046335333295968 -size 1365876 +oid sha256:915952d51e2a648723e4e4b6460d8bd2a575b1f818074b9dbe263c3244e3d29c +size 1171448 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_metal_forged_iron_M.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_metal_forged_iron_M.uasset index faa3ddfb..bb46dfe7 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_metal_forged_iron_M.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_metal_forged_iron_M.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2dcc164382ff57e367fb40c1e634c54875b59dcf476d548a04ea7c81822264c7 -size 1468635 +oid sha256:fc117be1cb69985a2ef8dcc60bbb55ea3f4a81f9e5c9e4ae949215386ff275de +size 1189689 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_metal_forged_iron_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_metal_forged_iron_N.uasset index 212c21ed..bbb1fcff 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_metal_forged_iron_N.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_metal_forged_iron_N.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0a5899884ee4d58939f1afc5fdb3e21d4077f6555fca2e763f0cf8db7c0fb7eb -size 1690194 +oid sha256:6ba5c51af076d550cd7f3fe58d7c7a0c3f485303f0d574efcaa42fdcdb5abdf3 +size 1440192 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_metal_steel_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_metal_steel_01_BC.uasset index eeadb6ad..860f1157 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_metal_steel_01_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_metal_steel_01_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5a05dde5382c67bae4cd2b3618a71f54d4cfe25b14bb48476a75a5e660810d48 -size 466211 +oid sha256:e022f32fbe8e09a42b4e25f76fadb1e398705cf33993244fdabaceba054c406a +size 215927 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_metal_steel_01_M.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_metal_steel_01_M.uasset index fca3210b..1b2ae3cb 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_metal_steel_01_M.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_metal_steel_01_M.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:dcb2718709847a8f046f2f77bb072b346aa55dbdf6dce67ca46788b187c0daf7 -size 454363 +oid sha256:e2d936939b1df89f5d1be179d9f87ecf0c39945d1ba16f0d31586998bf47a61b +size 222356 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_metal_steel_01_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_metal_steel_01_N.uasset index 0c6ee599..02c65f01 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_metal_steel_01_N.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_metal_steel_01_N.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:895beb49dfa25d69327c14119c5e977a906d1d27e15d4c1f1d827c543284b8e6 -size 5470 +oid sha256:b6bc61efe2ef3a42acebdf67b2b97e600a4729283988dc6af0b498e7c719a967 +size 7399 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_oil_label_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_oil_label_01_BC.uasset index 279b6d2f..f9eb4ca5 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_oil_label_01_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_oil_label_01_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:277e7b61ab5ae6560d62305eda30f09a21749d3bded9281774a9098b183fbe42 -size 6356822 +oid sha256:7a6d1cf2feac0cd9347fcf0f06742c6fdbc52d607963572d96301e4dddaf4fcf +size 5270349 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_oil_label_01_M.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_oil_label_01_M.uasset index 9974f82d..7d7f7678 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_oil_label_01_M.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_oil_label_01_M.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f3e22945680516e16354dc17827f9c7c1ab984102fa05556736a1b2e047016bd -size 1618927 +oid sha256:4bff0a28f09d5acfaca7afd1eae87d7ec7fa9412eec388d0e90e0a38c06522c7 +size 1029364 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_oil_label_01_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_oil_label_01_N.uasset index 8cf59dd9..b609f3c1 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_oil_label_01_N.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_oil_label_01_N.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a0754a3e323c188293d189181104035c605349adca8c6a3c965af85359378c47 -size 3615664 +oid sha256:4ce27d8223ff5ce5a90595cdbd4009562481e19e23e25228336a80b03e4561dd +size 2900989 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_oil_label_02_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_oil_label_02_BC.uasset index c0984946..1d237897 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_oil_label_02_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_oil_label_02_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:653773338c1924b2703f62cec5e88e66defe9c461d0903475a72845d9c1820c9 -size 5270617 +oid sha256:0d0e82a738498566fd66a015116d0397fb694e64c7a3420dfcb6e0d4f299f515 +size 4394131 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_oil_label_02_M.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_oil_label_02_M.uasset index 5c87bd3a..ad3d99e2 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_oil_label_02_M.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_oil_label_02_M.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a7f97f047bf8c808122bba8736cbf8239277c2295a1a6b0e30459470c2fad5ef -size 1618927 +oid sha256:f8781c92c00c05c5b511ef7faefefb0ef70269c92befa07440259fb523865ae3 +size 1029364 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_oil_label_02_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_oil_label_02_N.uasset index 529e409b..d6444ec7 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_oil_label_02_N.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_oil_label_02_N.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:33e53030b0863a068b3ff47678ec57fbc876adfdef1654d7f9a28233767258ee -size 3616741 +oid sha256:afed8bfdfbb4d9117abbb99576359a5a78e6cf7a8cf949f928d7d597f867dea6 +size 2901366 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_panels_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_panels_01_BC.uasset index 6c636b0f..61479249 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_panels_01_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_panels_01_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:084dd6c09d2d2c111f426da655c1329ccfa6825deb3661d9e935040f2e43c466 -size 5621993 +oid sha256:926efdb629d09bfd023100b56ad27e6bbaf7eb6a3befffa326926b7f6b41bf54 +size 4793047 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_panels_01_M.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_panels_01_M.uasset index c7c8ab02..7ddf73c4 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_panels_01_M.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_panels_01_M.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f66ef5493626f0a3ca51cddcf542a32b4964256df4dbfa7ace94573e8ebf5c67 -size 3088057 +oid sha256:31068d394acc26645e7431515f73d428bf4bca313b350d29f515b51ef5e7e35e +size 2255921 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_panels_01_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_panels_01_N.uasset index 423f91de..ef68f48b 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_panels_01_N.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_panels_01_N.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3a9abf11e94296e565a41417ad196f170f5e5f960a5ab9002d36b9a2f0159210 -size 7268736 +oid sha256:653959273b895369f5e932f6642937e737f70e86d063fc530afd2865679daf14 +size 6261772 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_pebbles_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_pebbles_01_BC.uasset index f77dcfa5..98fae091 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_pebbles_01_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_pebbles_01_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2408104473d0a20ef4e2730aab0dc28c241fc7369c24f1ead872fdbca7261b99 -size 16056966 +oid sha256:76ced41d290ea74699fb1ff893b359d0f6aacadc066d4ff0bdd4e7c249a50541 +size 16057632 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_pebbles_01_H.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_pebbles_01_H.uasset index a50c59f8..af4e223f 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_pebbles_01_H.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_pebbles_01_H.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5772b9c5788691f07986711f045a18c1134d3b0db62e8e29ba7b1c6e459c5b00 -size 3889791 +oid sha256:b89d045ee43cf5f0ef1e5c8da4e24b434c427054b402ae9efec83a21ac5228c9 +size 3890445 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_pebbles_01_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_pebbles_01_N.uasset index 9ae27538..868e9e98 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_pebbles_01_N.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_pebbles_01_N.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f5c453a4735bd72a00cd33c7dbddc9126a5cc90c32d415fe6e5be5ea60d92c79 -size 10196833 +oid sha256:92f0724de61367d65e57234572a803f484d6c39889749b46c834ec323bbba255 +size 10888254 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_photoframe_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_photoframe_01_BC.uasset index 5268ae0e..d7c1a50b 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_photoframe_01_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_photoframe_01_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ee5c549fe2207545b6e0d08925e9265a7f865830a1593aa09ffa793920baa17c -size 4016434 +oid sha256:029b77f25299c117b574520939e141be152d6f77ff246443bdcd550c978bca43 +size 3995326 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_photoframe_01_M.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_photoframe_01_M.uasset index c2a17da4..803837f3 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_photoframe_01_M.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_photoframe_01_M.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1c7451f219fa3ac113ec5f0299d3f92198c2fee7a32884a821a6e3209e49f50b -size 4416059 +oid sha256:06634c07cd7e0652d92e1e7e5b6c7389e3e841aec82923938cd15b709e097a9c +size 3781134 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_photoframe_01_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_photoframe_01_N.uasset index 47145535..a1ca5438 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_photoframe_01_N.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_photoframe_01_N.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:380f9c215a01a0689b715b429a6e64bca173323f79da56449c8d3caf1943720f -size 3214047 +oid sha256:dd198ed8270a4d29714e35e5a1615f8a7111ed8a8276ebf0bdc248b070e78496 +size 2622000 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_picture_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_picture_01_BC.uasset index 300cc353..a857ffa0 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_picture_01_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_picture_01_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:285e9af09a99627d578501f88c85f69a266543475e93df72d6a7246aaaf22896 -size 247599 +oid sha256:823ad8ec5a8ef9ae14c65348e71e885875f258e3db7200345e0f4fc9fd818e86 +size 186713 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_picture_02_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_picture_02_BC.uasset index 0801ce27..b665215a 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_picture_02_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_picture_02_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f45edc1471363b1d83950cfbd2e62d745e242e1ce710b74feba05b4e198245dd -size 1268262 +oid sha256:ec804707ba84d0b9d26243fddebdb4f83d1d3deb87930d6d9f1e86f9376e1933 +size 1090690 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_picture_03_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_picture_03_BC.uasset index 68b560a3..12fa8f12 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_picture_03_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_picture_03_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c0b3eb621416e2f477407a5e7a82ea007e0555a08df4f2e0d9397a1a7da4b0df -size 865152 +oid sha256:17a24002942775a6f55c08d04d303b61b08a2bd8025d753e85316052a58b17c0 +size 838478 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_picture_04_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_picture_04_BC.uasset index e9e95472..4bb03fb4 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_picture_04_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_picture_04_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e4a375577e5cad5f272af3c8244bca771afc3236978082b5ceab126b9a516dc8 -size 1092916 +oid sha256:b3d809a719c05a93167902b3de75f812d13d0219d214fc24fdbf9411c21b6105 +size 1119708 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_picture_05_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_picture_05_BC.uasset index dde4303e..e78f4b34 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_picture_05_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_picture_05_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9e69187bbee5a6ec88175f6c7f472d42d341f4fdffe612d2468fdd115c6c7c54 -size 1296604 +oid sha256:3b818af671037bfa4214c4bc5fae5e48fb94cd2f9fdfd3cb972118039d6767b7 +size 1226703 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_picture_06_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_picture_06_BC.uasset index 0a8d1e1e..9f8c7245 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_picture_06_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_picture_06_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:89bb5a5d497e64f9667325c1c4ee454a1e8cffe6161bcd20b714e5658829cb7e -size 770916 +oid sha256:098e860f54266810782bcc6b54239e7084c8b3917851a150134206eae3208111 +size 766226 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_pillow_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_pillow_01_BC.uasset index 8b8bc4c9..86bd3391 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_pillow_01_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_pillow_01_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6f83c0aac471de478e62458e748078d4e70d0705ec43bf62493bb69f10755e64 -size 7990914 +oid sha256:dd60064acdd98c3662d61d6c06ac4b4cdd237afc5e07834784eeca7b33c0a755 +size 6999295 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_pillow_01_M.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_pillow_01_M.uasset index 943f5ad9..1d7a06d6 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_pillow_01_M.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_pillow_01_M.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:37ac44219554c6f819030e5aafd6e9b3024716f1310171acabb332eb3fb6ae72 -size 4535379 +oid sha256:32c242d6733dafd698dee7d322eae9e51065e741e2d882408bf8331156b4d492 +size 3541460 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_pillow_01_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_pillow_01_N.uasset index 9b5726dd..10472157 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_pillow_01_N.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_pillow_01_N.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b31dc8d6bcc21879f85bbcb08191c71800170b09675a38f5d50372ce3dc6eb19 -size 12793880 +oid sha256:58678572f3399a45b7c7647151d79a3a3c6d11b0a9d5e07bf1d6e5aa877abbe2 +size 12529668 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_screen_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_screen_01_BC.uasset index 833fbbb2..3a54d999 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_screen_01_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_screen_01_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fe85a36b94e021617c3541f6edbb0dd3060feb5bbf398b8c218e46549ba7cd1f -size 1398721 +oid sha256:cfe166186c7ae08ef8557ec2bcad5faf8abcf42dbea51cd209b84f1ed6df3356 +size 1369260 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_sculpture_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_sculpture_01_BC.uasset index c36cae53..e3e955ee 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_sculpture_01_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_sculpture_01_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:da64ad578ad86cee38a54edc9cab63369f5612a901b98f704a12cfaae9fff346 -size 3212481 +oid sha256:51725b933488c8be292d0f5fe50a08c4d5fee90222e95292a248d38a0c1ca1b8 +size 3070458 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_shoe_2_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_shoe_2_01_BC.uasset index 3baf2f69..79c7092f 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_shoe_2_01_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_shoe_2_01_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bf2fa4e2299cc6111eeda2cda3234e939a4b255107820099077abfaf65e8adce -size 5863058 +oid sha256:4b1bd18100f1ec076821a7cb1f5e5a7b0263100b52c47901a31a9993ae9d1357 +size 5221905 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_shoe_2_01_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_shoe_2_01_N.uasset index 1e510d16..4f82d398 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_shoe_2_01_N.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_shoe_2_01_N.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7bf47d3135beef4df4fe44d08bea4e3a3a25aa7d936a22e9df8629fb09322777 -size 10387313 +oid sha256:fa7724b05cf1f7e3c3af4ce43363b56102c026ef866c1f0a609b44ff94408540 +size 9827641 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_sofa_leather_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_sofa_leather_01_BC.uasset index 98094863..be82f44e 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_sofa_leather_01_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_sofa_leather_01_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d3c112db2f39e50c8013f175aecbe68b60741b46cc37e834fa57d373973354da -size 6120105 +oid sha256:c3aed375caa86f234312f8173c103b832e56698f643a0a6ecae38c765158abea +size 5751770 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_sofa_leather_01_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_sofa_leather_01_N.uasset index 823aeec1..08caddc8 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_sofa_leather_01_N.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_sofa_leather_01_N.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:40ceee775e08ffae6f39b8dcec831980a90df37ecf7c9bdfe74f65e8c2d625c4 -size 5169806 +oid sha256:8e15f21af31e06de1e490b4600ff6fb03259d2218600bef2edc668d1261a3763 +size 5325972 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_sofa_leather_01_R.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_sofa_leather_01_R.uasset index 18400b10..64b3d5ed 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_sofa_leather_01_R.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_sofa_leather_01_R.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8bd00d4a0e77adfbbe0df648e380d317d43448185e629d1de385e603a6a6dd05 -size 3110163 +oid sha256:8708694db8b23e9014f3ab8179c52b2e004122bd15fb0865e702f90018bae35e +size 3007152 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_soil_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_soil_01_BC.uasset index 1bfa4d36..0a0355e2 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_soil_01_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_soil_01_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:671a34ea9f6e4ef68da2a7c92c107626340c56e978be797fd19e9cd4490ed0b2 -size 2464132 +oid sha256:a9a53af80b5262fedc568ec514e7ae1b3b00bfb95d6d395b82b7bee6e1b413cb +size 2270770 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_soil_01_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_soil_01_N.uasset index 5513c570..932b7832 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_soil_01_N.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_soil_01_N.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2e34c048876e7632b1ca88389aa581a3813d7bf6b4b2911c61ab696d26672653 -size 1705079 +oid sha256:dce64a32095af8bff38e6f22e06f4fdc710b70ecab48dab2a1da886894d4aeb0 +size 2023800 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_spices_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_spices_01_BC.uasset index ed1f65bd..69e572fd 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_spices_01_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_spices_01_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:12eb739e18889c20548337ea19f5e3689ac091537c3343e3e3e0d76f44c3a264 -size 578922 +oid sha256:f9ee5261c8117b02bebc3c4b687d5a0e2af440b7e6abb6ed37317cb3b7128309 +size 579576 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_spices_01_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_spices_01_N.uasset index 003cf1c6..3feb8aba 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_spices_01_N.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_spices_01_N.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:dff09e038d5f237462a633546be2ad831caf1455c78b395061ca8da0d6074b54 -size 269721 +oid sha256:457aeb09c2de39a54ec771d7e8356d07839290aff54c857ffcad9603526d21f9 +size 270333 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_stone_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_stone_01_BC.uasset index 1741b3db..b6465135 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_stone_01_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_stone_01_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:47d52d4b7f116439530fb1942a93f7cf2aaecb5b755ff443ef598946c0251708 -size 9269299 +oid sha256:53ce6bb494930aeef62b18ee5c067fe788d3bd145a1c6bf1b2fd73d76ea062cd +size 9479002 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_stone_01_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_stone_01_N.uasset index 7e3fe543..0854b674 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_stone_01_N.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_stone_01_N.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:79af7cc8bc18c3df4ecb53e3c857602590649e98b1b7de4b347768bf8ece5b9e -size 4273115 +oid sha256:24a808b9d5fe6f36bd012c9b8604a6765e9e870859b36f01663fa526d35ed867 +size 5536880 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_stone_01_R.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_stone_01_R.uasset index 6af818ae..59d0cd5a 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_stone_01_R.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_stone_01_R.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0eba05c992b402a9ac375516758dd1efe4687944e753b305acf2209982d87ee4 -size 4843179 +oid sha256:cac64ea87ae6ba3439b1c2d5fd160625772dd3de8ed18a53f0d49afb06138601 +size 4700513 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_stool_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_stool_01_BC.uasset index 4629cb14..bb9ba6d7 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_stool_01_BC.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_stool_01_BC.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7262859f179b79b2c619638e977d94c5d8914e84561ee5a1233d18b412180b5b -size 5743595 +oid sha256:8b0c95d9b41ff63d8b364ef534bc83bcf1821c2e323581e9d9609fb78a85c888 +size 5179426 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_stool_01_M.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_stool_01_M.uasset index d84e3a9e..814b0c69 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_stool_01_M.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_stool_01_M.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3affb8cd0d79214d86952d6ebee1bfdb6576b9864f4b9b3b3de6d0781acd81ba -size 4853469 +oid sha256:ee737847e3013065a580fd5d123ba0d2f3b8e76d80027f89574030196ed30ee9 +size 4123053 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_stool_01_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_stool_01_N.uasset deleted file mode 100644 index e30eec1b..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_stool_01_N.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a51365ee64a4815ff246fd6552b112eb0d289aeb849d910f8317cd4a9db859f0 -size 6659994 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_stool_02_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_stool_02_BC.uasset deleted file mode 100644 index 9853016f..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_stool_02_BC.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e853ed63b603aaac897d100597682dee062de2e30d7cb2a7ee00fd2c8938a1d4 -size 5748849 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_stool_02_M.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_stool_02_M.uasset deleted file mode 100644 index 4ffa2a2d..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_stool_02_M.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:80164455c8bced6b9b3394b3d5ccbdef8ef2d9bd8e2f837ceb55630f84c4b02d -size 4660677 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_stool_02_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_stool_02_N.uasset deleted file mode 100644 index f620e7e6..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_stool_02_N.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e2ae81777e2e068865937820f9def4de07a463230cb556e47f30283e33878781 -size 5293730 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_tea_tins_A_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_tea_tins_A_BC.uasset deleted file mode 100644 index 9b1af072..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_tea_tins_A_BC.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:10d85ca241b57b2011926005233cabaf9ff7465dbb4c62b6bb5329c1a76a4b76 -size 6131012 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_tea_tins_B_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_tea_tins_B_BC.uasset deleted file mode 100644 index f3e2ea2c..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_tea_tins_B_BC.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2c9fc0a4ecbe8164b0e520207e80b4df12f55745c023e2411bf18ec4c3d425b2 -size 5047453 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_tea_tins_C_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_tea_tins_C_BC.uasset deleted file mode 100644 index 0ba288b4..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_tea_tins_C_BC.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0a9cc9f70f0b90d703f2b16b81783f409f58cf29643602f8574423b51235a458 -size 6502023 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_tea_tins_D_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_tea_tins_D_BC.uasset deleted file mode 100644 index b34cbd1d..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_tea_tins_D_BC.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:36ba6b65fa3fbb86a6e66eb76613f55d122a0e7aa11c1927a28ebe5f9a92db2f -size 6399404 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_tea_tins_E_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_tea_tins_E_BC.uasset deleted file mode 100644 index ab468831..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_tea_tins_E_BC.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e063e0cb5e92a970c489e3549109e6ebfc724ea4f984522a594009f644209240 -size 6409031 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_tea_tins_M.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_tea_tins_M.uasset deleted file mode 100644 index c85e4984..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_tea_tins_M.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:32d6a1105195b14846eda1eb3d50e6d96cba424a79c2d7bf26b49cbc30cde5e2 -size 1949914 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_tea_tins_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_tea_tins_N.uasset deleted file mode 100644 index 7ee5e02c..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_tea_tins_N.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f94d8ff4cfa4623dda40655ef7bcbc41690329da28956345ae1a8f5216358f10 -size 1617838 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_toaster_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_toaster_01_BC.uasset deleted file mode 100644 index a772ee03..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_toaster_01_BC.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a1f34760274e8cee13104dcedaf92533b119aea87bf06443de68ef64b03a77ba -size 3020817 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_toaster_01_M.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_toaster_01_M.uasset deleted file mode 100644 index 995f42a9..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_toaster_01_M.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ad6a965f375c8e9099ffc199f13ee89e717974ab7560c23a45531405dd2a6c45 -size 3098136 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_toaster_01_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_toaster_01_N.uasset deleted file mode 100644 index 21848134..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_toaster_01_N.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:35e1b441448531143c1dba973094d14701dbb6c96bb99a3ed9396ece09606d79 -size 1877736 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_trunk_18_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_trunk_18_BC.uasset deleted file mode 100644 index 70948746..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_trunk_18_BC.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:301ff0a18ffcdb43bded05fa55d2c4734694c7f34a038bb264dff1f018246f42 -size 7429092 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_trunk_18_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_trunk_18_N.uasset deleted file mode 100644 index 74a7d062..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_trunk_18_N.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:82baa39f46c499d0da4446c5323b4cac80e5404ae963bef9cadebce22fbaba17 -size 11504607 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_trunk_32_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_trunk_32_BC.uasset deleted file mode 100644 index 3643e2b8..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_trunk_32_BC.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:667ad0f695b22f4b765e80a27a0dd8adb07ce31f2dbb553abb2fee567ed9b9df -size 6320816 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_trunk_32_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_trunk_32_N.uasset deleted file mode 100644 index 26bd8e4f..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_trunk_32_N.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c3b3e219a5961737f86ba700d77b0a28e75fdb4e7643de3485ebd63b694356d6 -size 8729715 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_turning_area_hdr_01_HDR.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_turning_area_hdr_01_HDR.uasset index b8c715ed..acbffce1 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_turning_area_hdr_01_HDR.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_turning_area_hdr_01_HDR.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:147b142e05cab8fdaeaba14d1c6d701f0c69034ada48c37bf04b5ffd3c5a256e -size 18157683 +oid sha256:99b5248f6c83221c1cd79816fa5abca7a18762de28f0a65d1fabbefe3d8b403e +size 18507917 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_tv_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_tv_01_BC.uasset deleted file mode 100644 index 1b0f787d..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_tv_01_BC.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6014ff38b66db4d88a79037c75faa80bf98071c4239d38698e203634ee688aba -size 1843851 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_tv_01_M.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_tv_01_M.uasset deleted file mode 100644 index 62264f00..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_tv_01_M.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a1c9ee01960e4b392534d4bba4edad22aad40767e2b85fa6e3df5c40ab1cae5b -size 2211857 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_tv_01_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_tv_01_N.uasset deleted file mode 100644 index 83df4bf1..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_tv_01_N.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:cf66a7b2b5ebedaed9fe82f97b9fadd1d78c769303392f4929e0c5a73cf00bc3 -size 3636187 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_tv_02_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_tv_02_BC.uasset deleted file mode 100644 index 7a032e99..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_tv_02_BC.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ae9749a9aab30c859e67bb29818664f111bea5d0a6e9c65f50ec6ccc59083000 -size 52912 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_tv_02_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_tv_02_N.uasset deleted file mode 100644 index d01ea705..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_tv_02_N.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:deeec3fe43b53b75d923af9515b3fecc0d8b748a03c64c8e7593f77b8b7800f2 -size 505980 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_tv_02_R.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_tv_02_R.uasset deleted file mode 100644 index 95d55aa9..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_tv_02_R.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:815ac8a98d33ad297099288c5639cb7408d49b75237b9d6bed71ac661b41b9e3 -size 583612 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_wood_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_wood_01_BC.uasset deleted file mode 100644 index 6643dd2c..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_wood_01_BC.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2f28fe11ac1abbc1409bacfae487854758de2bdc70b8a297930712969e1fe8c8 -size 8407228 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_wood_01_M.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_wood_01_M.uasset deleted file mode 100644 index fd421e62..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_wood_01_M.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a1f87f9d9961087d14703a472eebfccb4c11f06fb8a513d45c38f7f71a8dc694 -size 2745953 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_wood_01_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_wood_01_N.uasset deleted file mode 100644 index f15b2afa..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_wood_01_N.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ed435399028f6749ca5153855ed582d84bbf26304194acf59abb67eb70a15432 -size 2955807 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_wood_03_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_wood_03_BC.uasset deleted file mode 100644 index b3edeb85..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_wood_03_BC.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:82709f61a71385b00f81c8772a9e7df1a2619a51988abb3bfe09f7e0f8900c30 -size 8068697 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_wood_03_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_wood_03_N.uasset deleted file mode 100644 index 04f5cdb2..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_wood_03_N.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:60169d3b878c9fa132069bad74792a5c57c2b214e1a380e07c548511046dd0ad -size 8788017 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_wood_03_R.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_wood_03_R.uasset deleted file mode 100644 index 04530a4b..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_wood_03_R.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b9c47694ab0a580eb7765398b7590179371e3f66ae62e64b8c3b5c11e4470fdf -size 951270 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_wood_birch_light_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_wood_birch_light_01_BC.uasset deleted file mode 100644 index 8df3bbb1..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_wood_birch_light_01_BC.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:52baebcaa295e4bf53b784d33f10dad2b89885b36526470a541793d4d2ad6c34 -size 7588386 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_wood_birch_light_01_M.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_wood_birch_light_01_M.uasset deleted file mode 100644 index ea8815d9..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_wood_birch_light_01_M.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0f400c44a1a989625367507fa3cdf983a5b9562885446d4b243aa0ea55264346 -size 1530290 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_wood_birch_light_01_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_wood_birch_light_01_N.uasset deleted file mode 100644 index c1d84049..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_wood_birch_light_01_N.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:39ee8c0d6700831d8f2bd292c075439ff4d0d55e6c1f6b44a10a847d5efa39c6 -size 2881101 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_wood_oak_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_wood_oak_01_BC.uasset deleted file mode 100644 index 7ff23973..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_wood_oak_01_BC.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4ab69487353661af8721339080fb7c65e53c131d5a89d519483c3eea3633f4d9 -size 7140318 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_wood_oak_01_M.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_wood_oak_01_M.uasset deleted file mode 100644 index 966150c3..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_wood_oak_01_M.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7c6d1c82758aa6a1f8fb9e85bc21547414023f3bb72d2a70c704ec960fad4a2e -size 744176 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_wood_oak_01_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_wood_oak_01_N.uasset deleted file mode 100644 index 72980a9d..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_wood_oak_01_N.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:979781847ac1a102e21e17f60121e5f7a959eab3f2a9ea09f74c07060f94cbcb -size 3240617 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_wood_olive_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_wood_olive_BC.uasset deleted file mode 100644 index 418151cd..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_wood_olive_BC.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d1eb3a3be578d0d0668cd3db4f77c72ba0e5c769c03a46a16bee02028811c1e9 -size 8704952 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_wood_olive_N.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_wood_olive_N.uasset index a49b8ac6..cf225da5 100644 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_wood_olive_N.uasset +++ b/Content/Levels/House01/Textures/T_AI_vol8_05_wood_olive_N.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:569f74c516b181976a2fa0d1df304f374b3fa113e031a7c0894e17c90d49beb0 -size 28831111 +oid sha256:c6e263ff21b02be646b8a237b8d0e0a9836fa7c6bee2f62d62be8363cb2ac2d0 +size 26235561 diff --git a/Content/Levels/House01/Textures/T_AI_vol8_05_zebra_cake_01_BC.uasset b/Content/Levels/House01/Textures/T_AI_vol8_05_zebra_cake_01_BC.uasset deleted file mode 100644 index c24afa2a..00000000 --- a/Content/Levels/House01/Textures/T_AI_vol8_05_zebra_cake_01_BC.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9ddb96d9262a95ef3837ec23a0082507e48051b7a90897c01096d67d7dfe14d7 -size 1161711 diff --git a/Content/Levels/House01/Textures/T_Water_TilingNormal_With_Height_02_Softened1.uasset b/Content/Levels/House01/Textures/T_Water_TilingNormal_With_Height_02_Softened1.uasset deleted file mode 100644 index 27b24389..00000000 --- a/Content/Levels/House01/Textures/T_Water_TilingNormal_With_Height_02_Softened1.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:cf0634a88b8fe04b0992aacf6330d78c7c77323fc40b38215bcbfb86672cae04 -size 1861590 diff --git a/Content/Levels/Office/AIUE5_vol11_04/mesh/SM_AI_vol11_04_Desk_Chair_1_1.uasset b/Content/Levels/Office/AIUE5_vol11_04/mesh/SM_AI_vol11_04_Desk_Chair_1_1.uasset deleted file mode 100644 index 44f243d7..00000000 --- a/Content/Levels/Office/AIUE5_vol11_04/mesh/SM_AI_vol11_04_Desk_Chair_1_1.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:62898ea2d72710198d6f298fbac3b6c819e61a523ca0b67ab46d67ad67bea718 -size 13433666 diff --git a/Content/Levels/Office/AIUE5_vol11_04/textures/T_AI_vol11_04_Computer_Chair_OP.uasset b/Content/Levels/Office/AIUE5_vol11_04/textures/T_AI_vol11_04_Computer_Chair_OP.uasset deleted file mode 100644 index e11914d3..00000000 --- a/Content/Levels/Office/AIUE5_vol11_04/textures/T_AI_vol11_04_Computer_Chair_OP.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:994b7b437f548c35f8f57be56ac12b7b1b6e1fffe73f2288edf6e142b995dbb5 -size 1506480 diff --git a/Content/Levels/Office/AIUE5_vol11_04/textures/T_AI_vol11_04_Fabric_BC.uasset b/Content/Levels/Office/AIUE5_vol11_04/textures/T_AI_vol11_04_Fabric_BC.uasset deleted file mode 100644 index fd31561e..00000000 --- a/Content/Levels/Office/AIUE5_vol11_04/textures/T_AI_vol11_04_Fabric_BC.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:385f07ad4dc15b01093aea2964d71f0c1f6feaecdbe638366a8eb6f04a60ae83 -size 9563186 diff --git a/Content/Levels/Office/AIUE5_vol11_04/textures/T_AI_vol11_04_Fabric_N.uasset b/Content/Levels/Office/AIUE5_vol11_04/textures/T_AI_vol11_04_Fabric_N.uasset deleted file mode 100644 index 7d7ac1d0..00000000 --- a/Content/Levels/Office/AIUE5_vol11_04/textures/T_AI_vol11_04_Fabric_N.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:57d297e9eaaf5187a82610e8e8fa985e4f29099d6e03b1c91b5186882546e347 -size 48818524 diff --git a/Content/Levels/Office/AIUE5_vol11_04/textures/T_AI_vol11_04_Fabric_R.uasset b/Content/Levels/Office/AIUE5_vol11_04/textures/T_AI_vol11_04_Fabric_R.uasset deleted file mode 100644 index 44878349..00000000 --- a/Content/Levels/Office/AIUE5_vol11_04/textures/T_AI_vol11_04_Fabric_R.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5b7afdd4eab6ec19a69c713082ca5707691c3f745491dca3a29b6d091ae171b6 -size 4733978 diff --git a/Content/Maps/House02/Mesh/SM_AI_vol8_01_bed_01.uasset b/Content/Maps/House02/Mesh/SM_AI_vol8_01_bed_01.uasset deleted file mode 100644 index 2fe0c5b4..00000000 --- a/Content/Maps/House02/Mesh/SM_AI_vol8_01_bed_01.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0f0bc79230460d76bbd04ff5977084c3fd59bec45048b54f1bb4ea7499a9c275 -size 370772718 diff --git a/Content/Scanned3DPeoplePack/RP_Character/rp_carla_rigged_001_ue4/Materials/rp_carla_rigged_001_dif.uasset b/Content/Scanned3DPeoplePack/RP_Character/rp_carla_rigged_001_ue4/Materials/rp_carla_rigged_001_dif.uasset index 5cf9c15e..76cab199 100644 --- a/Content/Scanned3DPeoplePack/RP_Character/rp_carla_rigged_001_ue4/Materials/rp_carla_rigged_001_dif.uasset +++ b/Content/Scanned3DPeoplePack/RP_Character/rp_carla_rigged_001_ue4/Materials/rp_carla_rigged_001_dif.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:84c2cb3993a41b3c1114549d7a46f29c3322dbfdffdc820e1eba8cbbeb7e9401 -size 23314294 +oid sha256:06ed5512c055f8dcc7db2b5fba515caba3fbc760811a761d0d902f3c165459ce +size 19828480 diff --git a/Content/Scanned3DPeoplePack/RP_Character/rp_carla_rigged_001_ue4/Materials/rp_carla_rigged_001_gloss.uasset b/Content/Scanned3DPeoplePack/RP_Character/rp_carla_rigged_001_ue4/Materials/rp_carla_rigged_001_gloss.uasset deleted file mode 100644 index 93a3abf6..00000000 --- a/Content/Scanned3DPeoplePack/RP_Character/rp_carla_rigged_001_ue4/Materials/rp_carla_rigged_001_gloss.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:227b7e2a84ada8c527ed4204198a9dd75f2d27eb252e0f8aca48c9b2919e610e -size 2107397 diff --git a/Content/Scanned3DPeoplePack/RP_Character/rp_carla_rigged_001_ue4/Materials/rp_carla_rigged_001_mask01.uasset b/Content/Scanned3DPeoplePack/RP_Character/rp_carla_rigged_001_ue4/Materials/rp_carla_rigged_001_mask01.uasset deleted file mode 100644 index 512a53a6..00000000 --- a/Content/Scanned3DPeoplePack/RP_Character/rp_carla_rigged_001_ue4/Materials/rp_carla_rigged_001_mask01.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a65efcd734bf0078dc0a24e7df5b859fad12222d541e8f4bd3c51a8a185e51b0 -size 372055 diff --git a/Content/Scanned3DPeoplePack/RP_Character/rp_carla_rigged_001_ue4/Materials/rp_carla_rigged_001_mask02.uasset b/Content/Scanned3DPeoplePack/RP_Character/rp_carla_rigged_001_ue4/Materials/rp_carla_rigged_001_mask02.uasset deleted file mode 100644 index 40c034c3..00000000 --- a/Content/Scanned3DPeoplePack/RP_Character/rp_carla_rigged_001_ue4/Materials/rp_carla_rigged_001_mask02.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7d543389c1cc0ecd5e5e15ad3a78cb387015fd9c3590104b3c9bf51518d36f12 -size 312022 diff --git a/Content/Scanned3DPeoplePack/RP_Character/rp_carla_rigged_001_ue4/Materials/rp_carla_rigged_001_norm.uasset b/Content/Scanned3DPeoplePack/RP_Character/rp_carla_rigged_001_ue4/Materials/rp_carla_rigged_001_norm.uasset index 15a8685b..d701b12e 100644 --- a/Content/Scanned3DPeoplePack/RP_Character/rp_carla_rigged_001_ue4/Materials/rp_carla_rigged_001_norm.uasset +++ b/Content/Scanned3DPeoplePack/RP_Character/rp_carla_rigged_001_ue4/Materials/rp_carla_rigged_001_norm.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:663f73f6e25f565caee4306389879b356ebd4ec7f8cb540366ae7c6e31b4fe48 -size 32197156 +oid sha256:20698cc497f82bb6133e5d88fd1ab38ac2dec42b12cc6e60969d23e8760bc8d0 +size 29485936 diff --git a/Content/Scanned3DPeoplePack/RP_Character/rp_claudia_rigged_002_ue4/Materials/rp_claudia_rigged_002_dif.uasset b/Content/Scanned3DPeoplePack/RP_Character/rp_claudia_rigged_002_ue4/Materials/rp_claudia_rigged_002_dif.uasset index 92ecf455..b4a119de 100644 --- a/Content/Scanned3DPeoplePack/RP_Character/rp_claudia_rigged_002_ue4/Materials/rp_claudia_rigged_002_dif.uasset +++ b/Content/Scanned3DPeoplePack/RP_Character/rp_claudia_rigged_002_ue4/Materials/rp_claudia_rigged_002_dif.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1d9776599740c7c46d8751b91ce7250b2df4a21b4d9e0626eaac6b845e9b23bf -size 23801293 +oid sha256:bbd1f31834d723945c227493c2ddb60ef1ddb5962cc6d95ab342f6332bfa4217 +size 19958048 diff --git a/Content/Scanned3DPeoplePack/RP_Character/rp_claudia_rigged_002_ue4/Materials/rp_claudia_rigged_002_gloss.uasset b/Content/Scanned3DPeoplePack/RP_Character/rp_claudia_rigged_002_ue4/Materials/rp_claudia_rigged_002_gloss.uasset deleted file mode 100644 index cf9ec429..00000000 --- a/Content/Scanned3DPeoplePack/RP_Character/rp_claudia_rigged_002_ue4/Materials/rp_claudia_rigged_002_gloss.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:709c2a92079a49d8dd6e9fc788a854bb7bdf76dfb25816551f5234d222014c2f -size 1617678 diff --git a/Content/Scanned3DPeoplePack/RP_Character/rp_claudia_rigged_002_ue4/Materials/rp_claudia_rigged_002_mask01.uasset b/Content/Scanned3DPeoplePack/RP_Character/rp_claudia_rigged_002_ue4/Materials/rp_claudia_rigged_002_mask01.uasset deleted file mode 100644 index 172327a4..00000000 --- a/Content/Scanned3DPeoplePack/RP_Character/rp_claudia_rigged_002_ue4/Materials/rp_claudia_rigged_002_mask01.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0be5eb5de7f24a89a7ce1db89ae632a0c87ef5cf044dd56a708871c995e6ef3f -size 339015 diff --git a/Content/Scanned3DPeoplePack/RP_Character/rp_claudia_rigged_002_ue4/Materials/rp_claudia_rigged_002_mask02.uasset b/Content/Scanned3DPeoplePack/RP_Character/rp_claudia_rigged_002_ue4/Materials/rp_claudia_rigged_002_mask02.uasset deleted file mode 100644 index 0f7f80b2..00000000 --- a/Content/Scanned3DPeoplePack/RP_Character/rp_claudia_rigged_002_ue4/Materials/rp_claudia_rigged_002_mask02.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1f84ba30e5329d71b84827a98e5b1c8cd36586531cf69f75fc12598e9b01d2d2 -size 221010 diff --git a/Content/Scanned3DPeoplePack/RP_Character/rp_claudia_rigged_002_ue4/Materials/rp_claudia_rigged_002_norm.uasset b/Content/Scanned3DPeoplePack/RP_Character/rp_claudia_rigged_002_ue4/Materials/rp_claudia_rigged_002_norm.uasset index 2ce921fc..2445aa03 100644 --- a/Content/Scanned3DPeoplePack/RP_Character/rp_claudia_rigged_002_ue4/Materials/rp_claudia_rigged_002_norm.uasset +++ b/Content/Scanned3DPeoplePack/RP_Character/rp_claudia_rigged_002_ue4/Materials/rp_claudia_rigged_002_norm.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2b96921ae644e48f08dfc978e59802eae451efccd55a62354dc95917f332fbfa -size 34065986 +oid sha256:787c47ecdb34b0e208b631df4a662f75bc453a527a4f510c77d3224aa138d70a +size 31791785 diff --git a/Content/Scanned3DPeoplePack/RP_Character/rp_dennis_posed_004_ue4/Materials/rp_dennis_posed_004_dif.uasset b/Content/Scanned3DPeoplePack/RP_Character/rp_dennis_posed_004_ue4/Materials/rp_dennis_posed_004_dif.uasset deleted file mode 100644 index e349816a..00000000 --- a/Content/Scanned3DPeoplePack/RP_Character/rp_dennis_posed_004_ue4/Materials/rp_dennis_posed_004_dif.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:693a6ae3469297dd30738270bb94b6fce0dafaca5c4a19fae8703c38e4d84155 -size 15967089 diff --git a/Content/Scanned3DPeoplePack/RP_Character/rp_dennis_posed_004_ue4/Materials/rp_dennis_posed_004_gloss.uasset b/Content/Scanned3DPeoplePack/RP_Character/rp_dennis_posed_004_ue4/Materials/rp_dennis_posed_004_gloss.uasset deleted file mode 100644 index 14697603..00000000 --- a/Content/Scanned3DPeoplePack/RP_Character/rp_dennis_posed_004_ue4/Materials/rp_dennis_posed_004_gloss.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d214a27f617a99a2d06d5f52fe9f1748eb4bdfc294aaf9e615726ec98ce5a2b4 -size 1794366 diff --git a/Content/Scanned3DPeoplePack/RP_Character/rp_dennis_posed_004_ue4/Materials/rp_dennis_posed_004_mask01.uasset b/Content/Scanned3DPeoplePack/RP_Character/rp_dennis_posed_004_ue4/Materials/rp_dennis_posed_004_mask01.uasset deleted file mode 100644 index d22cf642..00000000 --- a/Content/Scanned3DPeoplePack/RP_Character/rp_dennis_posed_004_ue4/Materials/rp_dennis_posed_004_mask01.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9d75b1fedf0afa8d2698f90dc75d51d08543fde0510fa0c9c03a782ffdbac0e4 -size 439714 diff --git a/Content/Scanned3DPeoplePack/RP_Character/rp_dennis_posed_004_ue4/Materials/rp_dennis_posed_004_mask02.uasset b/Content/Scanned3DPeoplePack/RP_Character/rp_dennis_posed_004_ue4/Materials/rp_dennis_posed_004_mask02.uasset deleted file mode 100644 index f39bed9e..00000000 --- a/Content/Scanned3DPeoplePack/RP_Character/rp_dennis_posed_004_ue4/Materials/rp_dennis_posed_004_mask02.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e701c2ceffde7e0c4df36b99bffe252ab72130627191a834600c05414eefe510 -size 171051 diff --git a/Content/Scanned3DPeoplePack/RP_Character/rp_dennis_posed_004_ue4/Materials/rp_dennis_posed_004_norm.uasset b/Content/Scanned3DPeoplePack/RP_Character/rp_dennis_posed_004_ue4/Materials/rp_dennis_posed_004_norm.uasset index 78a11813..e0362e39 100644 --- a/Content/Scanned3DPeoplePack/RP_Character/rp_dennis_posed_004_ue4/Materials/rp_dennis_posed_004_norm.uasset +++ b/Content/Scanned3DPeoplePack/RP_Character/rp_dennis_posed_004_ue4/Materials/rp_dennis_posed_004_norm.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:586ca81ffe95e6ae40a5ede55491d49f454c11ea50608e15e4f0ad632f63b3ff -size 25930605 +oid sha256:34eafb6c055e127f882d3ac742c159cc16a49fb862a72b112d132b5f85bc5953 +size 23076552 diff --git a/Content/Scanned3DPeoplePack/RP_Character/rp_eric_rigged_001_ue4/Materials/rp_eric_rigged_001_dif.uasset b/Content/Scanned3DPeoplePack/RP_Character/rp_eric_rigged_001_ue4/Materials/rp_eric_rigged_001_dif.uasset deleted file mode 100644 index 8087436f..00000000 --- a/Content/Scanned3DPeoplePack/RP_Character/rp_eric_rigged_001_ue4/Materials/rp_eric_rigged_001_dif.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:dd12d18656f87ad7cf2ab7dfbc4ffbc09d82e2fbdec86800573379d0023e5468 -size 13799382 diff --git a/Content/Scanned3DPeoplePack/RP_Character/rp_eric_rigged_001_ue4/Materials/rp_eric_rigged_001_gloss.uasset b/Content/Scanned3DPeoplePack/RP_Character/rp_eric_rigged_001_ue4/Materials/rp_eric_rigged_001_gloss.uasset deleted file mode 100644 index 4eff3247..00000000 --- a/Content/Scanned3DPeoplePack/RP_Character/rp_eric_rigged_001_ue4/Materials/rp_eric_rigged_001_gloss.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a1a4e42c678c63819a7aa7c80b1a8c17d1f702c5e512c40877a05434fee00935 -size 3112186 diff --git a/Content/Scanned3DPeoplePack/RP_Character/rp_eric_rigged_001_ue4/Materials/rp_eric_rigged_001_mask01.uasset b/Content/Scanned3DPeoplePack/RP_Character/rp_eric_rigged_001_ue4/Materials/rp_eric_rigged_001_mask01.uasset deleted file mode 100644 index 2c9bc31f..00000000 --- a/Content/Scanned3DPeoplePack/RP_Character/rp_eric_rigged_001_ue4/Materials/rp_eric_rigged_001_mask01.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4a655c45eb1c82e81ee1fa94d88cafae3811cefd353ccde95aeaf70dd4c535b1 -size 394738 diff --git a/Content/Scanned3DPeoplePack/RP_Character/rp_eric_rigged_001_ue4/Materials/rp_eric_rigged_001_mask02.uasset b/Content/Scanned3DPeoplePack/RP_Character/rp_eric_rigged_001_ue4/Materials/rp_eric_rigged_001_mask02.uasset deleted file mode 100644 index d198aa24..00000000 --- a/Content/Scanned3DPeoplePack/RP_Character/rp_eric_rigged_001_ue4/Materials/rp_eric_rigged_001_mask02.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f9a2b4b62a8f0e9b5524b054661f4605d07ea89fb7f9cd996a658476970ad6d8 -size 319495 diff --git a/Content/Scanned3DPeoplePack/RP_Character/rp_eric_rigged_001_ue4/Materials/rp_eric_rigged_001_norm.uasset b/Content/Scanned3DPeoplePack/RP_Character/rp_eric_rigged_001_ue4/Materials/rp_eric_rigged_001_norm.uasset index d684d843..473603e8 100644 --- a/Content/Scanned3DPeoplePack/RP_Character/rp_eric_rigged_001_ue4/Materials/rp_eric_rigged_001_norm.uasset +++ b/Content/Scanned3DPeoplePack/RP_Character/rp_eric_rigged_001_ue4/Materials/rp_eric_rigged_001_norm.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5b16d61e274d8e09d98d91b5e3ee062f49655e28eade1c6a1e31f91fed301b88 -size 28987176 +oid sha256:9c868e41ea4fecb6356740ec8d44171f32c0beb159e6befaebc8e6f09004f18a +size 27331063 diff --git a/Content/Scanned3DPeoplePack/RP_Character/rp_fabienne_percy_posed_001_ue4/Materials/rp_fabienne_percy_posed_001_dif.uasset b/Content/Scanned3DPeoplePack/RP_Character/rp_fabienne_percy_posed_001_ue4/Materials/rp_fabienne_percy_posed_001_dif.uasset deleted file mode 100644 index 95fddb4d..00000000 --- a/Content/Scanned3DPeoplePack/RP_Character/rp_fabienne_percy_posed_001_ue4/Materials/rp_fabienne_percy_posed_001_dif.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3d089cbf3717a7a24ce6a761121608ea0c08bf98c6e1029db9885604dcfa9b37 -size 20159167 diff --git a/Content/Scanned3DPeoplePack/RP_Character/rp_fabienne_percy_posed_001_ue4/Materials/rp_fabienne_percy_posed_001_gloss.uasset b/Content/Scanned3DPeoplePack/RP_Character/rp_fabienne_percy_posed_001_ue4/Materials/rp_fabienne_percy_posed_001_gloss.uasset deleted file mode 100644 index d1d36a38..00000000 --- a/Content/Scanned3DPeoplePack/RP_Character/rp_fabienne_percy_posed_001_ue4/Materials/rp_fabienne_percy_posed_001_gloss.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:52b89c0915db083316c08f9503cee7e17626dfbaff19b05b387bb951ce35eecc -size 1766727 diff --git a/Content/Scanned3DPeoplePack/RP_Character/rp_fabienne_percy_posed_001_ue4/Materials/rp_fabienne_percy_posed_001_mask01.uasset b/Content/Scanned3DPeoplePack/RP_Character/rp_fabienne_percy_posed_001_ue4/Materials/rp_fabienne_percy_posed_001_mask01.uasset deleted file mode 100644 index 72997f67..00000000 --- a/Content/Scanned3DPeoplePack/RP_Character/rp_fabienne_percy_posed_001_ue4/Materials/rp_fabienne_percy_posed_001_mask01.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c055924c9da6f8e19d5dac666a89efebdc9007adb63e14bcdacb04c567ac5b0a -size 297383 diff --git a/Content/Scanned3DPeoplePack/RP_Character/rp_fabienne_percy_posed_001_ue4/Materials/rp_fabienne_percy_posed_001_mask02.uasset b/Content/Scanned3DPeoplePack/RP_Character/rp_fabienne_percy_posed_001_ue4/Materials/rp_fabienne_percy_posed_001_mask02.uasset deleted file mode 100644 index 2e72c8fe..00000000 --- a/Content/Scanned3DPeoplePack/RP_Character/rp_fabienne_percy_posed_001_ue4/Materials/rp_fabienne_percy_posed_001_mask02.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7ced14f1c40d089f2b82912d2346e8b8d61cefa6c8f702f02ea6ff03038837bf -size 364477 diff --git a/Content/Scanned3DPeoplePack/RP_Character/rp_fabienne_percy_posed_001_ue4/Materials/rp_fabienne_percy_posed_001_norm.uasset b/Content/Scanned3DPeoplePack/RP_Character/rp_fabienne_percy_posed_001_ue4/Materials/rp_fabienne_percy_posed_001_norm.uasset index 1a59c583..c9b24815 100644 --- a/Content/Scanned3DPeoplePack/RP_Character/rp_fabienne_percy_posed_001_ue4/Materials/rp_fabienne_percy_posed_001_norm.uasset +++ b/Content/Scanned3DPeoplePack/RP_Character/rp_fabienne_percy_posed_001_ue4/Materials/rp_fabienne_percy_posed_001_norm.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:15c33e0f974098c969c98466c55f8cb03425495fa62de46d72f2a3fe1e4c26d4 -size 29102318 +oid sha256:f2170bc5095a2cfbe4eae3a593d685be0d01363001aee060306c2db556392b45 +size 25679126 diff --git a/Content/Scanned3DPeoplePack/RP_Character/rp_manuel_rigged_001_ue4/Materials/rp_manuel_rigged_001_dif.uasset b/Content/Scanned3DPeoplePack/RP_Character/rp_manuel_rigged_001_ue4/Materials/rp_manuel_rigged_001_dif.uasset index ad37ef38..d12c4039 100644 --- a/Content/Scanned3DPeoplePack/RP_Character/rp_manuel_rigged_001_ue4/Materials/rp_manuel_rigged_001_dif.uasset +++ b/Content/Scanned3DPeoplePack/RP_Character/rp_manuel_rigged_001_ue4/Materials/rp_manuel_rigged_001_dif.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7211771aae70df041f097f7cc8ed11a221c9ddd2fb0a4d35fc747e12fc4fb35f -size 30329877 +oid sha256:4adfb2a594731c211ed7bbe5d2b5e5bc20e60a92baad01917d86546f62d4170c +size 27274617 diff --git a/Content/Scanned3DPeoplePack/RP_Character/rp_manuel_rigged_001_ue4/Materials/rp_manuel_rigged_001_gloss.uasset b/Content/Scanned3DPeoplePack/RP_Character/rp_manuel_rigged_001_ue4/Materials/rp_manuel_rigged_001_gloss.uasset deleted file mode 100644 index 619f673e..00000000 --- a/Content/Scanned3DPeoplePack/RP_Character/rp_manuel_rigged_001_ue4/Materials/rp_manuel_rigged_001_gloss.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:49bb5d887200963ecec0ff0428490320323372dda678284701e07e57c2175675 -size 3020545 diff --git a/Content/Scanned3DPeoplePack/RP_Character/rp_manuel_rigged_001_ue4/Materials/rp_manuel_rigged_001_mask01.uasset b/Content/Scanned3DPeoplePack/RP_Character/rp_manuel_rigged_001_ue4/Materials/rp_manuel_rigged_001_mask01.uasset deleted file mode 100644 index 411e3acb..00000000 --- a/Content/Scanned3DPeoplePack/RP_Character/rp_manuel_rigged_001_ue4/Materials/rp_manuel_rigged_001_mask01.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0ab965e463894c11ce9dbde710e506033d5f7f206d7e39731eea5fa806bee972 -size 338405 diff --git a/Content/Scanned3DPeoplePack/RP_Character/rp_manuel_rigged_001_ue4/Materials/rp_manuel_rigged_001_mask02.uasset b/Content/Scanned3DPeoplePack/RP_Character/rp_manuel_rigged_001_ue4/Materials/rp_manuel_rigged_001_mask02.uasset deleted file mode 100644 index 552f5a88..00000000 --- a/Content/Scanned3DPeoplePack/RP_Character/rp_manuel_rigged_001_ue4/Materials/rp_manuel_rigged_001_mask02.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2220b284b86be86c58b744b1ceca3ebe7329d5d34dbadfb389f622741a994ad4 -size 238797 diff --git a/Content/Scanned3DPeoplePack/RP_Character/rp_manuel_rigged_001_ue4/Materials/rp_manuel_rigged_001_norm.uasset b/Content/Scanned3DPeoplePack/RP_Character/rp_manuel_rigged_001_ue4/Materials/rp_manuel_rigged_001_norm.uasset index 9fe4d851..066ed41d 100644 --- a/Content/Scanned3DPeoplePack/RP_Character/rp_manuel_rigged_001_ue4/Materials/rp_manuel_rigged_001_norm.uasset +++ b/Content/Scanned3DPeoplePack/RP_Character/rp_manuel_rigged_001_ue4/Materials/rp_manuel_rigged_001_norm.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:68ece09357b4610e26b18db047fc6dbc9cf4c5446cc5c3410214d27790d89fde -size 37160212 +oid sha256:a920609af80def2d76e650b2b007066b4aad1251cb741116b5a0abb813c8a2d6 +size 35240435 diff --git a/Content/luckyBot/texture/Icons/CarMagazine.uasset b/Content/luckyBot/texture/Icons/CarMagazine.uasset deleted file mode 100644 index d799cb1a..00000000 --- a/Content/luckyBot/texture/Icons/CarMagazine.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8f221d24de18fdb2c93b6efef0f0fc9ef95dde29afbf7000e9661d30240e079c -size 47556 diff --git a/Content/luckyBot/texture/Icons/CoffeTable.uasset b/Content/luckyBot/texture/Icons/CoffeTable.uasset deleted file mode 100644 index 8d7e126d..00000000 --- a/Content/luckyBot/texture/Icons/CoffeTable.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:81c850dfab6a864057086c631761f6831ae4058496744261861e8d5ad775d019 -size 538775 diff --git a/Content/luckyBot/texture/Icons/Cupboard2.uasset b/Content/luckyBot/texture/Icons/Cupboard2.uasset deleted file mode 100644 index 78b62907..00000000 --- a/Content/luckyBot/texture/Icons/Cupboard2.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1d89f2eef463bb811ed8d5be98433dbb2e898ac3f3542f81dc84c53ead17c814 -size 462517 diff --git a/Content/luckyBot/texture/Icons/Eyeglasses.uasset b/Content/luckyBot/texture/Icons/Eyeglasses.uasset deleted file mode 100644 index 6f3d4a45..00000000 --- a/Content/luckyBot/texture/Icons/Eyeglasses.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:06e499d522797fdeffc5d83b41b0df16f8a55a4232c9209699f2b812967e68be -size 483495 diff --git a/Content/luckyBot/texture/Icons/Hanger1.uasset b/Content/luckyBot/texture/Icons/Hanger1.uasset deleted file mode 100644 index 2dd5d40b..00000000 --- a/Content/luckyBot/texture/Icons/Hanger1.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e8f90b5a463ddcdf2c79753f92b0e6de5255c5813d84cbd38bac85ec9b32178c -size 91168 diff --git a/Content/luckyBot/texture/Icons/HighresScreenshot00001.uasset b/Content/luckyBot/texture/Icons/HighresScreenshot00001.uasset deleted file mode 100644 index 30a1b415..00000000 --- a/Content/luckyBot/texture/Icons/HighresScreenshot00001.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6ee05616c224dfee71fc5518fb8a885ab858a504a8aff026c572dfe89320087a -size 215995