feat: update submodule, more proper 4JLibs checks
@@ -0,0 +1,69 @@
|
||||
param(
|
||||
[string]$ProjectDir,
|
||||
[string]$Platform,
|
||||
[string]$Configuration
|
||||
)
|
||||
|
||||
switch ($Platform) {
|
||||
"x64" { $LibsDir = Join-Path $ProjectDir "Windows64\4JLibs\"; $ExpectedCount = 4; $PlatformName = "Windows64" }
|
||||
"Durango" { $LibsDir = Join-Path $ProjectDir "Durango\4JLibs\"; $ExpectedCount = 4; $PlatformName = "Durango" }
|
||||
"Xbox 360" { $LibsDir = Join-Path $ProjectDir "Xbox\4JLibs\"; $ExpectedCount = 5; $PlatformName = "Xbox" }
|
||||
"PS3" { $LibsDir = Join-Path $ProjectDir "PS3\4JLibs\"; $ExpectedCount = 4; $PlatformName = "PS3" }
|
||||
"Orbis" { $LibsDir = Join-Path $ProjectDir "Orbis\4JLibs\"; $ExpectedCount = 4; $PlatformName = "Orbis" }
|
||||
"PSVita" { $LibsDir = Join-Path $ProjectDir "PSVita\4JLibs\"; $ExpectedCount = 4; $PlatformName = "PSVita" }
|
||||
default { Write-Host "4JLibs: Unknown platform: '$Platform'"; exit 1 }
|
||||
}
|
||||
|
||||
if ($Configuration -match "ContentPackage" -or $Configuration -match "Release") {
|
||||
$BuildConfig = "Release"
|
||||
} else {
|
||||
Write-Host "4JLibs: Configuration did not match Release or ContentPackage, defaulting to Debug"
|
||||
$BuildConfig = "Debug"
|
||||
}
|
||||
|
||||
if (-not (Test-Path $LibsDir)) {
|
||||
Write-Host "4JLibs: $PlatformName 4JLibs directory not found"
|
||||
exit 1
|
||||
} elseif (-not (Test-Path "$LibsDir\Headers\$PlatformName")) {
|
||||
Write-Host "4JLibs: $PlatformName 4JLibs Headers directory not found"
|
||||
exit 1
|
||||
} elseif (-not (Test-Path "$LibsDir\Headers")) {
|
||||
Write-Host "4JLibs: Headers directory not found"
|
||||
exit 1
|
||||
}
|
||||
|
||||
$incPath = Join-Path $LibsDir "inc"
|
||||
$libsPath = Join-Path $LibsDir "libs"
|
||||
|
||||
$incCount = (Get-ChildItem -Path $incPath -Filter "*.h" -ErrorAction SilentlyContinue).Count
|
||||
|
||||
if ($BuildConfig -eq "Release") {
|
||||
$libCount = (Get-ChildItem -Path $libsPath -Filter "*_r.lib" -ErrorAction SilentlyContinue).Count
|
||||
} else {
|
||||
$libCount = (Get-ChildItem -Path $libsPath -Filter "*_d.lib" -ErrorAction SilentlyContinue).Count
|
||||
}
|
||||
|
||||
if ($incCount -lt $ExpectedCount) {
|
||||
Write-Host "4JLibs: Copying header files for $PlatformName"
|
||||
xcopy "$LibsDir\Headers\$PlatformName\*" "$incPath" /E /I /Y
|
||||
} else {
|
||||
Write-Host "4JLibs: inc files already present, skipping copy."
|
||||
}
|
||||
|
||||
if ($libCount -lt $ExpectedCount) {
|
||||
Write-Host "4JLibs: Building 4JLibs for $PlatformName in $BuildConfig"
|
||||
|
||||
& "C:\Windows\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe" `
|
||||
(Join-Path $LibsDir "4JLibs.sln") `
|
||||
/p:Configuration=$BuildConfig `
|
||||
/p:Platform=$PlatformName `
|
||||
/v:minimal `
|
||||
/m
|
||||
|
||||
if ($LASTEXITCODE -ne 0) {
|
||||
Write-Host "4JLibs: Build failed with exit code: $LASTEXITCODE"
|
||||
exit $LASTEXITCODE
|
||||
}
|
||||
} else {
|
||||
Write-Host "4JLibs: libs already present, skipping build."
|
||||
}
|
||||
|
After Width: | Height: | Size: 18 KiB |
|
After Width: | Height: | Size: 1.0 MiB |
|
After Width: | Height: | Size: 60 KiB |
|
After Width: | Height: | Size: 196 KiB |
|
After Width: | Height: | Size: 18 KiB |
|
After Width: | Height: | Size: 1.0 MiB |
|
After Width: | Height: | Size: 60 KiB |
|
After Width: | Height: | Size: 196 KiB |
|
After Width: | Height: | Size: 45 KiB |
|
After Width: | Height: | Size: 1.0 MiB |
|
After Width: | Height: | Size: 57 KiB |
|
After Width: | Height: | Size: 189 KiB |
|
After Width: | Height: | Size: 18 KiB |
|
After Width: | Height: | Size: 1.0 MiB |
|
After Width: | Height: | Size: 60 KiB |
|
After Width: | Height: | Size: 196 KiB |
|
After Width: | Height: | Size: 308 KiB |
|
After Width: | Height: | Size: 254 KiB |
|
After Width: | Height: | Size: 252 KiB |
|
After Width: | Height: | Size: 252 KiB |
|
After Width: | Height: | Size: 254 KiB |
|
After Width: | Height: | Size: 253 KiB |
|
After Width: | Height: | Size: 254 KiB |
|
After Width: | Height: | Size: 255 KiB |
|
After Width: | Height: | Size: 253 KiB |
|
After Width: | Height: | Size: 254 KiB |
|
After Width: | Height: | Size: 255 KiB |
|
After Width: | Height: | Size: 255 KiB |
|
After Width: | Height: | Size: 260 KiB |
|
After Width: | Height: | Size: 80 KiB |
|
After Width: | Height: | Size: 253 KiB |
|
After Width: | Height: | Size: 252 KiB |
|
After Width: | Height: | Size: 253 KiB |
|
After Width: | Height: | Size: 252 KiB |
|
After Width: | Height: | Size: 254 KiB |
|
After Width: | Height: | Size: 252 KiB |
|
After Width: | Height: | Size: 250 KiB |
|
After Width: | Height: | Size: 254 KiB |
|
After Width: | Height: | Size: 251 KiB |
|
After Width: | Height: | Size: 1.9 MiB |
|
After Width: | Height: | Size: 2.0 MiB |
@@ -0,0 +1,29 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<gamePackage>
|
||||
<language id="00" modified="0">
|
||||
<speechRecognitionWords>
|
||||
<text>Minecraft</text>
|
||||
<pronunciation>m a j n k r a f t</pronunciation>
|
||||
</speechRecognitionWords>
|
||||
<speechRecognitionWords>
|
||||
<text>Minecraft</text>
|
||||
<pronunciation>m a j n k r e f t</pronunciation>
|
||||
</speechRecognitionWords>
|
||||
</language>
|
||||
<language id="01" modified="0">
|
||||
<speechRecognitionWords>
|
||||
<text>Minecraft</text>
|
||||
<pronunciation>m ay n k r ae f t</pronunciation>
|
||||
</speechRecognitionWords>
|
||||
<speechRecognitionWords>
|
||||
<text>Minecraft</text>
|
||||
<pronunciation>m ay n k r ax f t</pronunciation>
|
||||
</speechRecognitionWords>
|
||||
</language>
|
||||
<language id="18" modified="0">
|
||||
<speechRecognitionWords>
|
||||
<text>Minecraft</text>
|
||||
<pronunciation>m ih n k r aa f t</pronunciation>
|
||||
</speechRecognitionWords>
|
||||
</language>
|
||||
</gamePackage>
|
||||
|
After Width: | Height: | Size: 62 KiB |
|
After Width: | Height: | Size: 1.1 MiB |
@@ -0,0 +1 @@
|
||||
‰PNG
|
||||
|
After Width: | Height: | Size: 5.0 KiB |
|
After Width: | Height: | Size: 8.4 KiB |
|
After Width: | Height: | Size: 11 KiB |
|
After Width: | Height: | Size: 118 KiB |
|
After Width: | Height: | Size: 45 KiB |
|
After Width: | Height: | Size: 48 KiB |
|
After Width: | Height: | Size: 26 KiB |
@@ -0,0 +1,356 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<livearea style="a2" format-ver="01.03" content-rev="1">
|
||||
<livearea-background>
|
||||
<image>bg0.png</image>
|
||||
</livearea-background>
|
||||
|
||||
<gate>
|
||||
<startup-image>startup.png</startup-image>
|
||||
</gate>
|
||||
|
||||
<frame id='frame1'>
|
||||
<liveitem>
|
||||
<lang>da</lang>
|
||||
<text align='center' y="-175" origin="frame">
|
||||
<str size='22'>OVERFLADEPAKKER</str>
|
||||
</text>
|
||||
<image>item_1.png</image>
|
||||
<target>psts:browse?category=EP4433-PCSB00560_00-SKINPACKS</target>
|
||||
</liveitem>
|
||||
<liveitem>
|
||||
<lang>en</lang>
|
||||
<text align='center' y="-175" origin="frame">
|
||||
<str size='22'>SKIN PACKS</str>
|
||||
</text>
|
||||
<image>item_1.png</image>
|
||||
<target>psts:browse?category=EP4433-PCSB00560_00-SKINPACKS</target>
|
||||
</liveitem>
|
||||
<liveitem>
|
||||
<lang>en-gb</lang>
|
||||
<text align='center' y="-175" origin="frame">
|
||||
<str size='22'>SKIN PACKS</str>
|
||||
</text>
|
||||
<image>item_1.png</image>
|
||||
<target>psts:browse?category=EP4433-PCSB00560_00-SKINPACKS</target>
|
||||
</liveitem>
|
||||
<liveitem>
|
||||
<lang>de</lang>
|
||||
<text align='center' y="-175" origin="frame">
|
||||
<str size='22'>DESIGN-PAKETE</str>
|
||||
</text>
|
||||
<image>item_1.png</image>
|
||||
<target>psts:browse?category=EP4433-PCSB00560_00-SKINPACKS</target>
|
||||
</liveitem>
|
||||
<liveitem>
|
||||
<lang>el</lang>
|
||||
<text align='center' y="-175" origin="frame">
|
||||
<str size='22'>ΠΑΚΕΤΑ ΕΜΦΑΝΙΣΕΩΝ</str>
|
||||
</text>
|
||||
<image>item_1.png</image>
|
||||
<target>psts:browse?category=EP4433-PCSB00560_00-SKINPACKS</target>
|
||||
</liveitem>
|
||||
<liveitem>
|
||||
<lang>es</lang>
|
||||
<text align='center' y="-175" origin="frame">
|
||||
<str size='22'>PACKS DE ASPECTOS</str>
|
||||
</text>
|
||||
<image>item_1.png</image>
|
||||
<target>psts:browse?category=EP4433-PCSB00560_00-SKINPACKS</target>
|
||||
</liveitem>
|
||||
<liveitem>
|
||||
<lang>fi</lang>
|
||||
<text align='center' y="-175" origin="frame">
|
||||
<str size='22'>ULKOASUPAKETIT</str>
|
||||
</text>
|
||||
<image>item_1.png</image>
|
||||
<target>psts:browse?category=EP4433-PCSB00560_00-SKINPACKS</target>
|
||||
</liveitem>
|
||||
<liveitem>
|
||||
<lang>fr</lang>
|
||||
<text align='center' y="-175" origin="frame">
|
||||
<str size='22'>PACKS DE SKINS</str>
|
||||
</text>
|
||||
<image>item_1.png</image>
|
||||
<target>psts:browse?category=EP4433-PCSB00560_00-SKINPACKS</target>
|
||||
</liveitem>
|
||||
<liveitem>
|
||||
<lang>it</lang>
|
||||
<text align='center' y="-175" origin="frame">
|
||||
<str size='22'>PACCHETTI SKIN</str>
|
||||
</text>
|
||||
<image>item_1.png</image>
|
||||
<target>psts:browse?category=EP4433-PCSB00560_00-SKINPACKS</target>
|
||||
</liveitem>
|
||||
<liveitem>
|
||||
<lang>ja</lang>
|
||||
<text align='center' y="-175" origin="frame">
|
||||
<str size='22'>スキン パック</str>
|
||||
</text>
|
||||
<image>item_1.png</image>
|
||||
<target>psts:browse?category=EP4433-PCSB00560_00-SKINPACKS</target>
|
||||
</liveitem>
|
||||
<liveitem>
|
||||
<lang>ko</lang>
|
||||
<text align='center' y="-175" origin="frame">
|
||||
<str size='22'>캐릭터 팩</str>
|
||||
</text>
|
||||
<image>item_1.png</image>
|
||||
<target>psts:browse?category=EP4433-PCSB00560_00-SKINPACKS</target>
|
||||
</liveitem>
|
||||
<liveitem>
|
||||
<lang>nl</lang>
|
||||
<text align='center' y="-175" origin="frame">
|
||||
<str size='22'>SKINPAKKETTEN</str>
|
||||
</text>
|
||||
<image>item_1.png</image>
|
||||
<target>psts:browse?category=EP4433-PCSB00560_00-SKINPACKS</target>
|
||||
</liveitem>
|
||||
<liveitem>
|
||||
<lang>no</lang>
|
||||
<text align='center' y="-175" origin="frame">
|
||||
<str size='22'>SKALLPAKKER</str>
|
||||
</text>
|
||||
<image>item_1.png</image>
|
||||
<target>psts:browse?category=EP4433-PCSB00560_00-SKINPACKS</target>
|
||||
</liveitem>
|
||||
<liveitem>
|
||||
<lang>pl</lang>
|
||||
<text align='center' y="-175" origin="frame">
|
||||
<str size='22'>PAKIETY SKÓREK</str>
|
||||
</text>
|
||||
<image>item_1.png</image>
|
||||
<target>psts:browse?category=EP4433-PCSB00560_00-SKINPACKS</target>
|
||||
</liveitem>
|
||||
<liveitem>
|
||||
<lang>pt-br</lang>
|
||||
<text align='center' y="-175" origin="frame">
|
||||
<str size='22'>PACOTES DE CAPAS</str>
|
||||
</text>
|
||||
<image>item_1.png</image>
|
||||
<target>psts:browse?category=EP4433-PCSB00560_00-SKINPACKS</target>
|
||||
</liveitem>
|
||||
<liveitem>
|
||||
<lang>pt</lang>
|
||||
<text align='center' y="-175" origin="frame">
|
||||
<str size='22'>PACKS DE SKINS</str>
|
||||
</text>
|
||||
<image>item_1.png</image>
|
||||
<target>psts:browse?category=EP4433-PCSB00560_00-SKINPACKS</target>
|
||||
</liveitem>
|
||||
<liveitem>
|
||||
<lang>ru</lang>
|
||||
<text align='center' y="-175" origin="frame">
|
||||
<str size='22'>НАБОРЫ СКИНОВ</str>
|
||||
</text>
|
||||
<image>item_1.png</image>
|
||||
<target>psts:browse?category=EP4433-PCSB00560_00-SKINPACKS</target>
|
||||
</liveitem>
|
||||
<liveitem>
|
||||
<lang>sv</lang>
|
||||
<text align='center' y="-175" origin="frame">
|
||||
<str size='22'>UTSEENDEPAKET</str>
|
||||
</text>
|
||||
<image>item_1.png</image>
|
||||
<target>psts:browse?category=EP4433-PCSB00560_00-SKINPACKS</target>
|
||||
</liveitem>
|
||||
<liveitem>
|
||||
<lang>tr</lang>
|
||||
<text align='center' y="-175" origin="frame">
|
||||
<str size='22'>GÖRÜNÜM PAKETLERİ</str>
|
||||
</text>
|
||||
<image>item_1.png</image>
|
||||
<target>psts:browse?category=EP4433-PCSB00560_00-SKINPACKS</target>
|
||||
</liveitem>
|
||||
<liveitem>
|
||||
<lang>zh</lang>
|
||||
<text align='center' y="-175" origin="frame">
|
||||
<str size='22'>SKIN PACKS</str>
|
||||
</text>
|
||||
<image>item_1.png</image>
|
||||
<target>psts:browse?category=EP4433-PCSB00560_00-SKINPACKS</target>
|
||||
</liveitem>
|
||||
<liveitem>
|
||||
<lang>ch</lang>
|
||||
<text align='center' y="-175" origin="frame">
|
||||
<str size='22'>外觀套件</str>
|
||||
</text>
|
||||
<image>item_1.png</image>
|
||||
<target>psts:browse?category=EP4433-PCSB00560_00-SKINPACKS</target>
|
||||
</liveitem>
|
||||
</frame>
|
||||
|
||||
<frame id='frame2' >
|
||||
<liveitem>
|
||||
<lang>da</lang>
|
||||
<text align='center' y="-175" origin="frame">
|
||||
<str size='22'>TEKSTURPAKKER</str>
|
||||
</text>
|
||||
<image>item_2.png</image>
|
||||
<target>psts:browse?category=EP4433-PCSB00560_00-TEXTUREPACKS</target>
|
||||
</liveitem>
|
||||
<liveitem>
|
||||
<lang>en</lang>
|
||||
<text align='center' y="-175" origin="frame">
|
||||
<str size='22'>TEXTURE PACKS</str>
|
||||
</text>
|
||||
<image>item_2.png</image>
|
||||
<target>psts:browse?category=EP4433-PCSB00560_00-TEXTUREPACKS</target>
|
||||
</liveitem>
|
||||
<liveitem>
|
||||
<lang>en-gb</lang>
|
||||
<text align='center' y="-175" origin="frame">
|
||||
<str size='22'>TEXTURE PACKS</str>
|
||||
</text>
|
||||
<image>item_2.png</image>
|
||||
<target>psts:browse?category=EP4433-PCSB00560_00-TEXTUREPACKS</target>
|
||||
</liveitem>
|
||||
<liveitem>
|
||||
<lang>de</lang>
|
||||
<text align='center' y="-175" origin="frame">
|
||||
<str size='22'>TEXTURPAKETE</str>
|
||||
</text>
|
||||
<image>item_2.png</image>
|
||||
<target>psts:browse?category=EP4433-PCSB00560_00-TEXTUREPACKS</target>
|
||||
</liveitem>
|
||||
<liveitem>
|
||||
<lang>el</lang>
|
||||
<text align='center' y="-175" origin="frame">
|
||||
<str size='22'>ΠΑΚΕΤΑ ΓΡΑΦΙΚΩΝ</str>
|
||||
</text>
|
||||
<image>item_2.png</image>
|
||||
<target>psts:browse?category=EP4433-PCSB00560_00-TEXTUREPACKS</target>
|
||||
</liveitem>
|
||||
<liveitem>
|
||||
<lang>es</lang>
|
||||
<text align='center' y="-175" origin="frame">
|
||||
<str size='22'>PACKS DE TEXTURAS</str>
|
||||
</text>
|
||||
<image>item_2.png</image>
|
||||
<target>psts:browse?category=EP4433-PCSB00560_00-TEXTUREPACKS</target>
|
||||
</liveitem>
|
||||
<liveitem>
|
||||
<lang>fi</lang>
|
||||
<text align='center' y="-175" origin="frame">
|
||||
<str size='22'>TEKSTUURIPAKETIT</str>
|
||||
</text>
|
||||
<image>item_2.png</image>
|
||||
<target>psts:browse?category=EP4433-PCSB00560_00-TEXTUREPACKS</target>
|
||||
</liveitem>
|
||||
<liveitem>
|
||||
<lang>fr</lang>
|
||||
<text align='center' y="-175" origin="frame">
|
||||
<str size='22'>PACKS DE TEXTURES</str>
|
||||
</text>
|
||||
<image>item_2.png</image>
|
||||
<target>psts:browse?category=EP4433-PCSB00560_00-TEXTUREPACKS</target>
|
||||
</liveitem>
|
||||
<liveitem>
|
||||
<lang>it</lang>
|
||||
<text align='center' y="-175" origin="frame">
|
||||
<str size='22'>PACCHETTI TEXTURE</str>
|
||||
</text>
|
||||
<image>item_2.png</image>
|
||||
<target>psts:browse?category=EP4433-PCSB00560_00-TEXTUREPACKS</target>
|
||||
</liveitem>
|
||||
<liveitem>
|
||||
<lang>ja</lang>
|
||||
<text align='center' y="-175" origin="frame">
|
||||
<str size='22'>テクスチャ パック</str>
|
||||
</text>
|
||||
<image>item_2.png</image>
|
||||
<target>psts:browse?category=EP4433-PCSB00560_00-TEXTUREPACKS</target>
|
||||
</liveitem>
|
||||
<liveitem>
|
||||
<lang>ko</lang>
|
||||
<text align='center' y="-175" origin="frame">
|
||||
<str size='22'>텍스처 팩</str>
|
||||
</text>
|
||||
<image>item_2.png</image>
|
||||
<target>psts:browse?category=EP4433-PCSB00560_00-TEXTUREPACKS</target>
|
||||
</liveitem>
|
||||
<liveitem>
|
||||
<lang>nl</lang>
|
||||
<text align='center' y="-175" origin="frame">
|
||||
<str size='22'>TEXTUREPAKKETTEN</str>
|
||||
</text>
|
||||
<image>item_2.png</image>
|
||||
<target>psts:browse?category=EP4433-PCSB00560_00-TEXTUREPACKS</target>
|
||||
</liveitem>
|
||||
<liveitem>
|
||||
<lang>no</lang>
|
||||
<text align='center' y="-175" origin="frame">
|
||||
<str size='22'>TEKSTURPAKKER</str>
|
||||
</text>
|
||||
<image>item_2.png</image>
|
||||
<target>psts:browse?category=EP4433-PCSB00560_00-TEXTUREPACKS</target>
|
||||
</liveitem>
|
||||
<liveitem>
|
||||
<lang>pl</lang>
|
||||
<text align='center' y="-175" origin="frame">
|
||||
<str size='22'>PAKIETY TEKSTUR</str>
|
||||
</text>
|
||||
<image>item_2.png</image>
|
||||
<target>psts:browse?category=EP4433-PCSB00560_00-TEXTUREPACKS</target>
|
||||
</liveitem>
|
||||
<liveitem>
|
||||
<lang>pt-br</lang>
|
||||
<text align='center' y="-175" origin="frame">
|
||||
<str size='22'>PACOTES DE TEXTURAS</str>
|
||||
</text>
|
||||
<image>item_2.png</image>
|
||||
<target>psts:browse?category=EP4433-PCSB00560_00-TEXTUREPACKS</target>
|
||||
</liveitem>
|
||||
<liveitem>
|
||||
<lang>pt</lang>
|
||||
<text align='center' y="-175" origin="frame">
|
||||
<str size='22'>PACKS DE TEXTURAS</str>
|
||||
</text>
|
||||
<image>item_2.png</image>
|
||||
<target>psts:browse?category=EP4433-PCSB00560_00-TEXTUREPACKS</target>
|
||||
</liveitem>
|
||||
<liveitem>
|
||||
<lang>ru</lang>
|
||||
<text align='center' y="-175" origin="frame">
|
||||
<str size='22'>НАБОРЫ ТЕКСТУР</str>
|
||||
</text>
|
||||
<image>item_2.png</image>
|
||||
<target>psts:browse?category=EP4433-PCSB00560_00-TEXTUREPACKS</target>
|
||||
</liveitem>
|
||||
<liveitem>
|
||||
<lang>sv</lang>
|
||||
<text align='center' y="-175" origin="frame">
|
||||
<str size='22'>TEXTURPAKET</str>
|
||||
</text>
|
||||
<image>item_2.png</image>
|
||||
<target>psts:browse?category=EP4433-PCSB00560_00-TEXTUREPACKS</target>
|
||||
</liveitem>
|
||||
<liveitem>
|
||||
<lang>tr</lang>
|
||||
<text align='center' y="-175" origin="frame">
|
||||
<str size='22'>KAPLAMA PAKETLERİ</str>
|
||||
</text>
|
||||
<image>item_2.png</image>
|
||||
<target>psts:browse?category=EP4433-PCSB00560_00-TEXTUREPACKS</target>
|
||||
</liveitem>
|
||||
<liveitem>
|
||||
<lang>zh</lang>
|
||||
<text align='center' y="-175" origin="frame">
|
||||
<str size='22'>TEXTURE PACKS</str>
|
||||
</text>
|
||||
<image>item_2.png</image>
|
||||
<target>psts:browse?category=EP4433-PCSB00560_00-TEXTUREPACKS</target>
|
||||
</liveitem>
|
||||
<liveitem>
|
||||
<lang>ch</lang>
|
||||
<text align='center' y="-175" origin="frame">
|
||||
<str size='22'>材質套件</str>
|
||||
</text>
|
||||
<image>item_2.png</image>
|
||||
<target>psts:browse?category=EP4433-PCSB00560_00-TEXTUREPACKS</target>
|
||||
</liveitem>
|
||||
</frame>
|
||||
|
||||
</livearea>
|
||||
|
||||
|
||||
|
After Width: | Height: | Size: 68 KiB |
|
After Width: | Height: | Size: 95 KiB |
|
After Width: | Height: | Size: 103 KiB |
|
After Width: | Height: | Size: 74 KiB |
|
After Width: | Height: | Size: 91 KiB |
|
After Width: | Height: | Size: 38 KiB |
|
After Width: | Height: | Size: 37 KiB |
|
After Width: | Height: | Size: 68 KiB |
|
After Width: | Height: | Size: 95 KiB |
|
After Width: | Height: | Size: 103 KiB |
|
After Width: | Height: | Size: 74 KiB |
|
After Width: | Height: | Size: 91 KiB |
|
After Width: | Height: | Size: 38 KiB |
|
After Width: | Height: | Size: 37 KiB |
|
After Width: | Height: | Size: 66 KiB |
|
After Width: | Height: | Size: 99 KiB |
|
After Width: | Height: | Size: 123 KiB |
|
After Width: | Height: | Size: 87 KiB |
|
After Width: | Height: | Size: 82 KiB |
|
After Width: | Height: | Size: 39 KiB |
|
After Width: | Height: | Size: 44 KiB |
|
After Width: | Height: | Size: 68 KiB |
|
After Width: | Height: | Size: 101 KiB |
|
After Width: | Height: | Size: 104 KiB |
|
After Width: | Height: | Size: 92 KiB |
|
After Width: | Height: | Size: 93 KiB |
|
After Width: | Height: | Size: 38 KiB |
|
After Width: | Height: | Size: 45 KiB |
|
After Width: | Height: | Size: 66 KiB |
|
After Width: | Height: | Size: 100 KiB |