Compare commits
8 Commits
Author | SHA1 | Date | |
---|---|---|---|
2fe66c6071 | |||
|
1094e73c1c | ||
|
790467d3b1 | ||
|
ba98447176 | ||
|
0b4b220dd3 | ||
|
510adab5b2 | ||
b8facc78ec | |||
2c2219b3e8 |
103
.gitea/workflows/create-release.yml
Normal file
103
.gitea/workflows/create-release.yml
Normal file
@ -0,0 +1,103 @@
|
||||
name: Unreal Release
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
windows_build_path:
|
||||
description: 'Absolute path to the Windows build zip file'
|
||||
required: true
|
||||
default: 'E:\LuckyWorld\LuckyRobots\UNREAL_PROJECTS\Luckyrobots\Builds\Windows\LuckyRobots-Windows.zip'
|
||||
linux_build_path:
|
||||
description: 'Absolute path to the Linux build zip file'
|
||||
required: true
|
||||
default: 'E:\LuckyWorld\LuckyRobots\UNREAL_PROJECTS\Luckyrobots\Builds\Linux\LuckyRobots-Linux.zip'
|
||||
mac_build_path:
|
||||
description: 'Absolute path to the Mac build zip file'
|
||||
required: true
|
||||
default: 'E:\LuckyWorld\LuckyRobots\UNREAL_PROJECTS\Luckyrobots\Builds\Mac\LuckyRobots-Mac.zip'
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: windows
|
||||
steps:
|
||||
- name: Upload Linux Build Artifact
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: LuckyRobots-Linux
|
||||
path: ${{ github.event.inputs.linux_build_path }}
|
||||
retention-days: 365
|
||||
|
||||
- name: Upload Windows Build Artifact
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: LuckyRobots-Windows
|
||||
path: ${{ github.event.inputs.windows_build_path }}
|
||||
retention-days: 365
|
||||
|
||||
- name: Upload Mac Build Artifact
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: LuckyRobots-Mac
|
||||
path: ${{ github.event.inputs.mac_build_path }}
|
||||
retention-days: 365
|
||||
|
||||
- name: Get Release Tag
|
||||
shell: pwsh
|
||||
run: |
|
||||
# Fetch all tags
|
||||
git fetch --tags
|
||||
|
||||
# Get the latest version tag, if any
|
||||
# Uses Sort-Object with a version comparison scriptblock
|
||||
$latestTag = git tag -l "v[0-9]*.[0-9]*.[0-9]*" | Sort-Object -Property @{Expression={[version]($_ -replace 'v')}} | Select-Object -Last 1
|
||||
|
||||
$newVersion = "1.0.0" # Default start version
|
||||
|
||||
if ($null -ne $latestTag -and $latestTag -ne '') {
|
||||
Write-Host "Latest tag found: $latestTag"
|
||||
# Strip 'v' prefix
|
||||
$versionString = $latestTag -replace '^v'
|
||||
|
||||
# Split version into parts
|
||||
$versionParts = $versionString.Split('.')
|
||||
if ($versionParts.Length -eq 3) {
|
||||
$major = [int]$versionParts[0]
|
||||
$minor = [int]$versionParts[1]
|
||||
$patch = [int]$versionParts[2]
|
||||
|
||||
# Auto-increment patch version
|
||||
$patch++
|
||||
$newVersion = "$major.$minor.$patch"
|
||||
Write-Host "Auto-incremented patch version from $versionString to $newVersion"
|
||||
} else {
|
||||
Write-Host "Could not parse version from tag: $latestTag. Defaulting to 1.0.0"
|
||||
}
|
||||
} else {
|
||||
Write-Host "No previous version tags found, starting with 1.0.0"
|
||||
}
|
||||
|
||||
# Final tag with v prefix
|
||||
$tag = "v$newVersion"
|
||||
|
||||
# Set environment variable for subsequent steps
|
||||
echo "RELEASE_TAG=$tag" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
|
||||
Write-Host "Using release tag: $tag"
|
||||
|
||||
- name: Create Release
|
||||
uses: https://gitea.com/actions/gitea-release-action@main
|
||||
with:
|
||||
token: '${{ secrets.GITEA_TOKEN }}'
|
||||
title: 'Release ${{ env.RELEASE_TAG }}'
|
||||
body: |
|
||||
## LuckyRobots Game Release ${{ env.RELEASE_TAG }}
|
||||
|
||||
Windows, Linux and Mac builds are attached below.
|
||||
|
||||
### Build Information
|
||||
|
||||
- Build Number: #${{ github.run_number }}
|
||||
- Commit: ${{ github.sha }}
|
||||
- Branch: ${{ github.ref_name }}
|
||||
- Build Date: $(date -u +"%Y-%m-%d %H:%M:%S UTC")
|
||||
prerelease: ${{ github.ref != 'refs/heads/main' }}
|
||||
tag_name: '${{ env.RELEASE_TAG }}'
|
@ -31,13 +31,13 @@ jobs:
|
||||
|
||||
- name: Build for Windows
|
||||
run: |
|
||||
chmod +x ./win_build.sh
|
||||
./win_build.sh
|
||||
# Chmod command doesn't exist in Windows, use PowerShell to run the bash script
|
||||
& 'C:\Program Files\Git\bin\bash.exe' -c "./win_build.sh"
|
||||
|
||||
- name: Build for Linux
|
||||
run: |
|
||||
chmod +x ./linux_build.sh
|
||||
./linux_build.sh
|
||||
# Chmod command doesn't exist in Windows, use PowerShell to run the bash script
|
||||
& 'C:\Program Files\Git\bin\bash.exe' -c "./linux_build.sh"
|
||||
|
||||
- name: Package builds
|
||||
run: |
|
||||
@ -58,6 +58,22 @@ jobs:
|
||||
echo "=== Packaged releases ==="
|
||||
ls -la PackagedReleases/
|
||||
|
||||
- name: Upload Windows Build Artifact
|
||||
uses: actions/upload-artifact@v3
|
||||
if: success() && hashFiles('PackagedReleases/LuckyRobots-Windows.zip') != ''
|
||||
with:
|
||||
name: LuckyRobots-Windows
|
||||
path: PackagedReleases/LuckyRobots-Windows.zip
|
||||
retention-days: 365
|
||||
|
||||
- name: Upload Linux Build Artifact
|
||||
uses: actions/upload-artifact@v3
|
||||
if: success() && hashFiles('PackagedReleases/LuckyRobots-Linux.zip') != ''
|
||||
with:
|
||||
name: LuckyRobots-Linux
|
||||
path: PackagedReleases/LuckyRobots-Linux.zip
|
||||
retention-days: 365
|
||||
|
||||
- name: Create Tag
|
||||
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop'
|
||||
run: |
|
||||
@ -117,21 +133,88 @@ jobs:
|
||||
fi
|
||||
echo "RELEASE_TAG=$TAG" >> $GITHUB_ENV
|
||||
|
||||
- name: Create Build Info
|
||||
run: |
|
||||
# Create a build info JSON file
|
||||
echo '{
|
||||
"version": "${{ env.RELEASE_TAG }}",
|
||||
"buildNumber": "${{ github.run_number }}",
|
||||
"commit": "${{ github.sha }}",
|
||||
"branch": "${{ github.ref_name }}",
|
||||
"buildDate": "'$(date -u +"%Y-%m-%dT%H:%M:%SZ")'",
|
||||
"artifacts": {
|
||||
"windows": "https://luckyrobots.com/luckyrobots/luckyworld/actions/runs/${{ github.run_id }}/artifacts/LuckyRobots-Windows",
|
||||
"linux": "https://luckyrobots.com/luckyrobots/luckyworld/actions/runs/${{ github.run_id }}/artifacts/LuckyRobots-Linux"
|
||||
}
|
||||
}' > PackagedReleases/build-info.json
|
||||
|
||||
# Create a simple HTML download page
|
||||
echo '<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>LuckyRobots ${{ env.RELEASE_TAG }} Downloads</title>
|
||||
<style>
|
||||
body { font-family: Arial, sans-serif; max-width: 800px; margin: 0 auto; padding: 20px; }
|
||||
h1 { color: #333; }
|
||||
.download-btn {
|
||||
display: inline-block;
|
||||
background-color: #4CAF50;
|
||||
color: white;
|
||||
padding: 10px 20px;
|
||||
text-decoration: none;
|
||||
border-radius: 4px;
|
||||
margin: 10px 5px;
|
||||
}
|
||||
.download-btn:hover { background-color: #45a049; }
|
||||
.platform { margin-bottom: 30px; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>LuckyRobots Game - ${{ env.RELEASE_TAG }}</h1>
|
||||
<p>Build #${{ github.run_number }} - Built from commit: ${{ github.sha }}</p>
|
||||
|
||||
<div class="platform">
|
||||
<h2>Windows</h2>
|
||||
<p><a href="https://luckyrobots.com/luckyrobots/luckyworld/actions/runs/${{ github.run_id }}/artifacts/LuckyRobots-Windows" class="download-btn">Download Windows Build</a></p>
|
||||
</div>
|
||||
|
||||
<div class="platform">
|
||||
<h2>Linux</h2>
|
||||
<p><a href="https://luckyrobots.com/luckyrobots/luckyworld/actions/runs/${{ github.run_id }}/artifacts/LuckyRobots-Linux" class="download-btn">Download Linux Build</a></p>
|
||||
</div>
|
||||
|
||||
<footer>
|
||||
<p>Generated on '$(date -u +"%Y-%m-%d %H:%M:%S UTC")'</p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>' > PackagedReleases/downloads.html
|
||||
|
||||
- name: Create Release
|
||||
uses: https://gitea.com/actions/gitea-release-action@main
|
||||
with:
|
||||
files: |-
|
||||
PackagedReleases/*.zip
|
||||
PackagedReleases/build-info.json
|
||||
PackagedReleases/downloads.html
|
||||
token: '${{ secrets.GITEA_TOKEN }}'
|
||||
title: 'Release ${{ env.RELEASE_TAG }}'
|
||||
body: |
|
||||
## Automated release from CI build #${{ github.run_number }}
|
||||
## LuckyRobots Game Release ${{ env.RELEASE_TAG }}
|
||||
|
||||
This release includes builds for:
|
||||
- Windows
|
||||
- Linux
|
||||
### Download Links
|
||||
|
||||
Built from commit: ${{ github.sha }}
|
||||
Download builds from our CI artifacts:
|
||||
|
||||
- [Windows Build](https://luckyrobots.com/luckyrobots/luckyworld/actions/runs/${{ github.run_id }}/artifacts/LuckyRobots-Windows)
|
||||
- [Linux Build](https://luckyrobots.com/luckyrobots/luckyworld/actions/runs/${{ github.run_id }}/artifacts/LuckyRobots-Linux)
|
||||
|
||||
### Build Information
|
||||
|
||||
- Build Number: #${{ github.run_number }}
|
||||
- Commit: ${{ github.sha }}
|
||||
- Branch: ${{ github.ref_name }}
|
||||
- Build Date: $(date -u +"%Y-%m-%d %H:%M:%S UTC")
|
||||
prerelease: ${{ github.ref != 'refs/heads/main' }}
|
||||
tag_name: '${{ env.RELEASE_TAG }}'
|
||||
|
||||
@ -232,18 +315,35 @@ jobs:
|
||||
echo "Packaged releases:"
|
||||
ls -la PackagedReleases/
|
||||
|
||||
- name: Upload macOS Build Artifact
|
||||
uses: actions/upload-artifact@v3
|
||||
if: success()
|
||||
with:
|
||||
name: LuckyRobots-macOS
|
||||
path: PackagedReleases/*-macOS.zip
|
||||
retention-days: 365
|
||||
|
||||
- name: Create Release Note
|
||||
run: |
|
||||
echo "## macOS Build Completed" > release-note.md
|
||||
echo "" >> release-note.md
|
||||
echo "macOS build is available as an artifact." >> release-note.md
|
||||
echo "" >> release-note.md
|
||||
echo "Download from: [macOS Build](https://luckyrobots.com/luckyrobots/luckyworld/actions/runs/${{ github.run_id }}/artifacts/LuckyRobots-macOS)" >> release-note.md
|
||||
|
||||
- name: Create Gitea Release
|
||||
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop'
|
||||
uses: https://gitea.com/actions/gitea-release-action@main
|
||||
with:
|
||||
token: ${{ secrets.GITEATOKEN }}
|
||||
tag_name: ${{ env.RELEASE_TAG }}
|
||||
title: "Release ${{ env.RELEASE_TAG }}"
|
||||
title: "Release ${{ env.RELEASE_TAG }} - macOS"
|
||||
body: |
|
||||
## Automated release from CI build #${{ github.run_number }}
|
||||
## macOS Build Available as Artifact
|
||||
|
||||
This release includes builds for:
|
||||
- macOS
|
||||
The macOS build is available as an artifact due to its large file size.
|
||||
|
||||
[Download macOS Build](https://luckyrobots.com/luckyrobots/luckyworld/actions/runs/${{ github.run_id }}/artifacts/LuckyRobots-macOS)
|
||||
|
||||
Built from commit: ${{ github.sha }}
|
||||
files: PackagedReleases/*.zip
|
||||
files: release-note.md
|
BIN
Builds/Linux/LuckyRobots-Linux.zip
Normal file
BIN
Builds/Linux/LuckyRobots-Linux.zip
Normal file
Binary file not shown.
BIN
Builds/Windows/LuckyRobots-Windows.zip
Normal file
BIN
Builds/Windows/LuckyRobots-Windows.zip
Normal file
Binary file not shown.
@ -98,7 +98,7 @@ r.DefaultFeature.LocalExposure.ShadowContrastScale=0.800000
|
||||
r.DefaultFeature.MotionBlur=False
|
||||
r.DefaultFeature.LensFlare=False
|
||||
r.TemporalAA.Upsampling=True
|
||||
r.AntiAliasingMethod=2
|
||||
r.AntiAliasingMethod=4
|
||||
r.MSAACount=1
|
||||
r.DefaultFeature.LightUnits=1
|
||||
r.DefaultBackBufferPixelFormat=4
|
||||
@ -319,3 +319,15 @@ RuntimeGeneration=Dynamic
|
||||
[/Script/AIModule.CrowdManager]
|
||||
MaxAgentRadius=100.000000
|
||||
|
||||
[/Script/FFXFSR3Settings.FFXFSR3Settings]
|
||||
r.FidelityFX.FSR3.EnabledInEditorViewport=True
|
||||
r.FidelityFX.FSR3.UseSSRExperimentalDenoiser=True
|
||||
r.FidelityFX.FSR3.QualityMode=2
|
||||
r.FidelityFX.FSR3.Enabled=True
|
||||
|
||||
[/Script/DLSS.DLSSSettings]
|
||||
bEnableDLSSInEditorViewports=True
|
||||
bEnableDLSSD3D12=False
|
||||
bEnableDLSSD3D11=False
|
||||
bEnableDLSSVulkan=False
|
||||
|
||||
|
BIN
Content/Characters/Dog_Rottweiler/Rottweiler/Textures/T_Rottweiler_BaseColor1.uasset
(Stored with Git LFS)
BIN
Content/Characters/Dog_Rottweiler/Rottweiler/Textures/T_Rottweiler_BaseColor1.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Characters/Dog_Rottweiler/Rottweiler/Textures/T_Rottweiler_Metallic.uasset
(Stored with Git LFS)
BIN
Content/Characters/Dog_Rottweiler/Rottweiler/Textures/T_Rottweiler_Metallic.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Characters/Dog_Rottweiler/Rottweiler/Textures/T_Rottweiler_Normal.uasset
(Stored with Git LFS)
BIN
Content/Characters/Dog_Rottweiler/Rottweiler/Textures/T_Rottweiler_Normal.uasset
(Stored with Git LFS)
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Content/Characters/Scanned3DPeoplePack/RP_Character/00_rp_master/Mannequin/Textures/UE4_Logo_MASK.uasset
(Stored with Git LFS)
BIN
Content/Characters/Scanned3DPeoplePack/RP_Character/00_rp_master/Mannequin/Textures/UE4_Logo_MASK.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Characters/Scanned3DPeoplePack/RP_Character/00_rp_master/Mannequin/Textures/UE4_Logo_N.uasset
(Stored with Git LFS)
BIN
Content/Characters/Scanned3DPeoplePack/RP_Character/00_rp_master/Mannequin/Textures/UE4_Logo_N.uasset
(Stored with Git LFS)
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Content/Levels/House01/Mesh/SM_AI_vol8_05_chair_01.uasset
(Stored with Git LFS)
BIN
Content/Levels/House01/Mesh/SM_AI_vol8_05_chair_01.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_Vase_C_BC.uasset
(Stored with Git LFS)
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_Vase_C_BC.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_Vase_C_M.uasset
(Stored with Git LFS)
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_Vase_C_M.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_Vase_C_N.uasset
(Stored with Git LFS)
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_Vase_C_N.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_Vinyl_01_BC.uasset
(Stored with Git LFS)
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_Vinyl_01_BC.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_Vinyl_02_BC.uasset
(Stored with Git LFS)
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_Vinyl_02_BC.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_Vinyl_03_BC.uasset
(Stored with Git LFS)
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_Vinyl_03_BC.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_Vinyl_04_BC.uasset
(Stored with Git LFS)
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_Vinyl_04_BC.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_Vinyl_05_BC.uasset
(Stored with Git LFS)
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_Vinyl_05_BC.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_Vinyl_06_BC.uasset
(Stored with Git LFS)
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_Vinyl_06_BC.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_Vinyl_07_BC.uasset
(Stored with Git LFS)
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_Vinyl_07_BC.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_air_conditioning_01_BC.uasset
(Stored with Git LFS)
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_air_conditioning_01_BC.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_air_conditioning_01_M.uasset
(Stored with Git LFS)
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_air_conditioning_01_M.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_air_conditioning_01_N.uasset
(Stored with Git LFS)
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_air_conditioning_01_N.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_air_museum_playground_4k_HDR.uasset
(Stored with Git LFS)
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_air_museum_playground_4k_HDR.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_albums_BC.uasset
(Stored with Git LFS)
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_albums_BC.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_albums_M.uasset
(Stored with Git LFS)
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_albums_M.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_albums_N.uasset
(Stored with Git LFS)
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_albums_N.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_aluminium_01_BC.uasset
(Stored with Git LFS)
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_aluminium_01_BC.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_aluminium_01_M.uasset
(Stored with Git LFS)
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_aluminium_01_M.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_aluminium_01_N.uasset
(Stored with Git LFS)
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_aluminium_01_N.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_archidrawing_01_BC.uasset
(Stored with Git LFS)
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_archidrawing_01_BC.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_bag_01_BC.uasset
(Stored with Git LFS)
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_bag_01_BC.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_bag_01_N.uasset
(Stored with Git LFS)
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_bag_01_N.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_bag_01_R.uasset
(Stored with Git LFS)
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_bag_01_R.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_bag_02_BC.uasset
(Stored with Git LFS)
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_bag_02_BC.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_bag_02_N.uasset
(Stored with Git LFS)
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_bag_02_N.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_black_tiles_BC.uasset
(Stored with Git LFS)
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_black_tiles_BC.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_black_tiles_M.uasset
(Stored with Git LFS)
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_black_tiles_M.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_black_tiles_N.uasset
(Stored with Git LFS)
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_black_tiles_N.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_boc_container_01_BC.uasset
(Stored with Git LFS)
BIN
Content/Levels/House01/Textures/T_AI_vol8_05_boc_container_01_BC.uasset
(Stored with Git LFS)
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user