Compare commits
46 Commits
v.1.5.2_an
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
90af1ffd08 | ||
|
|
405413a212 | ||
|
|
9488ff2513 | ||
|
|
2a42432a18 | ||
|
|
874e4f85fc | ||
|
|
62c2e9cfc3 | ||
|
|
49bafa2fac | ||
|
|
7739b7d291 | ||
|
|
f0f4c639c0 | ||
|
|
b6d20fe9cd | ||
|
|
f7a4d2aa47 | ||
|
|
f3cac19afe | ||
|
|
8538803485 | ||
|
|
be63ed686d | ||
|
|
67e9e2606f | ||
|
|
7a015b49c0 | ||
|
|
8910eb7a9a | ||
|
|
7736db2fd8 | ||
|
|
f7e06bbbb0 | ||
|
|
9c606c912c | ||
|
|
b29592f4ba | ||
|
|
93870ca319 | ||
|
|
10a8fb1bd4 | ||
|
|
f0a42fe98e | ||
|
|
3cb8082e95 | ||
|
|
000bf11a3c | ||
|
|
94bf2f7e8d | ||
|
|
ecb8126410 | ||
|
|
fb5452c195 | ||
|
|
bbba324be0 | ||
|
|
0d8ae2d971 | ||
|
|
10fdfacc3d | ||
|
|
c664cf5dad | ||
|
|
a758dcc6cb | ||
|
|
1868e0240b | ||
|
|
915b2d063d | ||
|
|
0a437537bc | ||
|
|
28e0b2c050 | ||
|
|
aa3289de03 | ||
|
|
7193f5dcbe | ||
|
|
bb32c2d7d7 | ||
|
|
4edac166cb | ||
|
|
9281fa7205 | ||
|
|
5aa8a23495 | ||
| d4be4b43e6 | |||
| fa077c8263 |
@ -13,8 +13,8 @@ namespace BFEditor.Build
|
|||||||
|
|
||||||
public class BuildProjectWindow : EditorWindow
|
public class BuildProjectWindow : EditorWindow
|
||||||
{
|
{
|
||||||
private static int versionCode = 17;
|
private static int versionCode = 18;
|
||||||
private static string versionName = "1.5.2";
|
private static string versionName = "1.6.5";
|
||||||
BFPlatformOptions platform = BFPlatformOptions.AndroidDev;
|
BFPlatformOptions platform = BFPlatformOptions.AndroidDev;
|
||||||
const string ANDROID_DEV_PACKAGE_NAME = "com.juzu.b6.dev.android";
|
const string ANDROID_DEV_PACKAGE_NAME = "com.juzu.b6.dev.android";
|
||||||
const string ANDROID_RELEASE_PACKAGE_NAME = "com.juzu.b6.release.android";
|
const string ANDROID_RELEASE_PACKAGE_NAME = "com.juzu.b6.release.android";
|
||||||
|
|||||||
@ -620,12 +620,6 @@ namespace BFEditor.Build
|
|||||||
|
|
||||||
var buildGradlePath = Path.Combine(PublishAsProjectPath, "launcher/build.gradle");
|
var buildGradlePath = Path.Combine(PublishAsProjectPath, "launcher/build.gradle");
|
||||||
var buildGradleText = File.ReadAllText(buildGradlePath);
|
var buildGradleText = File.ReadAllText(buildGradlePath);
|
||||||
var regex1 = new Regex("implementation 'com.google.android.play:core:1.10.0'");
|
|
||||||
if (!regex1.IsMatch(buildGradleText))
|
|
||||||
{
|
|
||||||
var regex12 = new Regex("dependencies {");
|
|
||||||
buildGradleText = regex12.Replace(buildGradleText, "dependencies {\n implementation 'com.google.android.play:core:1.10.0'");
|
|
||||||
}
|
|
||||||
var regex2 = new Regex("assetPacks = [\":install_time_pack\"]");
|
var regex2 = new Regex("assetPacks = [\":install_time_pack\"]");
|
||||||
if (!regex2.IsMatch(buildGradleText))
|
if (!regex2.IsMatch(buildGradleText))
|
||||||
{
|
{
|
||||||
|
|||||||
@ -136,71 +136,17 @@ namespace BFEditor
|
|||||||
var configFileInfos = configDirInfo.GetFiles(suffix, SearchOption.TopDirectoryOnly);
|
var configFileInfos = configDirInfo.GetFiles(suffix, SearchOption.TopDirectoryOnly);
|
||||||
|
|
||||||
// 检查棋盘文件格式
|
// 检查棋盘文件格式
|
||||||
|
checkBoard("chapter_board", env, sb);
|
||||||
|
checkBoard("chapter_board_bossrush", env, sb);
|
||||||
|
checkBoard("chapter_board_daily_challenge", env, sb);
|
||||||
|
checkBoard("chapter_board_dungeon_armor", env, sb);
|
||||||
|
checkBoard("chapter_board_dungeon_equip", env, sb);
|
||||||
|
checkBoard("chapter_board_dungeon_gold", env, sb);
|
||||||
|
checkBoard("chapter_board_dungeon_shards", env, sb);
|
||||||
|
checkBoard("chapter_board_rune", env, sb);
|
||||||
|
checkBoard("activity_pvp_board", env, sb);
|
||||||
|
checkBoard("arena_board", env, sb);
|
||||||
|
|
||||||
var luaScriptString = @"local cfg = require('app/config/chapter_board')
|
|
||||||
if not cfg or not cfg.data then
|
|
||||||
return ''
|
|
||||||
end
|
|
||||||
cfg = cfg.data
|
|
||||||
local tempMap = {}
|
|
||||||
local addErrorInfo = function(errorInfo, cfgId, errorStr)
|
|
||||||
if not tempMap[cfgId] then
|
|
||||||
tempMap[cfgId] = true
|
|
||||||
table.insert(errorInfo, 'cfgId = ' .. cfgId)
|
|
||||||
end
|
|
||||||
|
|
||||||
table.insert(errorInfo, ' ' .. errorStr)
|
|
||||||
end
|
|
||||||
|
|
||||||
local errorInfo = {}
|
|
||||||
for k, info in pairs(cfg) do
|
|
||||||
local board = info.board
|
|
||||||
if not board then
|
|
||||||
addErrorInfo(errorInfo, k, '没有board字段,请检查')
|
|
||||||
end
|
|
||||||
|
|
||||||
if #board < 49 then
|
|
||||||
addErrorInfo(errorInfo, k, '没有board长度不足,请检查,当前长度为' .. #board)
|
|
||||||
end
|
|
||||||
|
|
||||||
for index, v in ipairs(board) do
|
|
||||||
if not v[1] then
|
|
||||||
addErrorInfo(errorInfo, k, 'board字段中' .. index .. '索引没有格子类型')
|
|
||||||
end
|
|
||||||
if not v[2] then
|
|
||||||
addErrorInfo(errorInfo, k, 'board字段中' .. index .. '索引没有元素类型')
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
local mystery_box_board = info.mystery_box_board
|
|
||||||
if mystery_box_board then
|
|
||||||
for index, v in ipairs(mystery_box_board) do
|
|
||||||
if not v[1] then
|
|
||||||
addErrorInfo(errorInfo, k, 'mystery_box_board字段中' .. index .. '索引没有格子类型')
|
|
||||||
end
|
|
||||||
if not v[2] then
|
|
||||||
addErrorInfo(errorInfo, k, 'mystery_box_board字段中' .. index .. '索引没有元素类型')
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
if #errorInfo > 0 then
|
|
||||||
return table.concat(errorInfo, '\n');
|
|
||||||
end
|
|
||||||
|
|
||||||
return ''";
|
|
||||||
var resultStr = env.DoString(luaScriptString);
|
|
||||||
if (resultStr.Length > 0)
|
|
||||||
{
|
|
||||||
foreach(var strObj in resultStr)
|
|
||||||
{
|
|
||||||
var str = Convert.ToString(strObj);
|
|
||||||
if(!String.IsNullOrEmpty(str))
|
|
||||||
{
|
|
||||||
sb.Append(str + "\n");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// 检查monster
|
// 检查monster
|
||||||
string monsterConfigListLua = "{";
|
string monsterConfigListLua = "{";
|
||||||
@ -213,7 +159,7 @@ namespace BFEditor
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
monsterConfigListLua += "}";
|
monsterConfigListLua += "}";
|
||||||
luaScriptString = "local ids = {}\n local MONSTER_LIST = " + monsterConfigListLua + "\n";
|
var luaScriptString = "local ids = {}\n local MONSTER_LIST = " + monsterConfigListLua + "\n";
|
||||||
luaScriptString += @"local str = {}
|
luaScriptString += @"local str = {}
|
||||||
for i, name in ipairs(MONSTER_LIST) do
|
for i, name in ipairs(MONSTER_LIST) do
|
||||||
if name ~= 'monster_base' and name ~= 'monster_position' and name ~= 'monster_position_base' then
|
if name ~= 'monster_base' and name ~= 'monster_position' and name ~= 'monster_position_base' then
|
||||||
@ -230,7 +176,7 @@ namespace BFEditor
|
|||||||
return table.concat(str, '\n');
|
return table.concat(str, '\n');
|
||||||
end
|
end
|
||||||
return ''";
|
return ''";
|
||||||
resultStr = env.DoString(luaScriptString);
|
var resultStr = env.DoString(luaScriptString);
|
||||||
if (resultStr.Length > 0)
|
if (resultStr.Length > 0)
|
||||||
{
|
{
|
||||||
foreach(var strObj in resultStr)
|
foreach(var strObj in resultStr)
|
||||||
@ -299,6 +245,76 @@ namespace BFEditor
|
|||||||
return sb;
|
return sb;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static void checkBoard(string configName, LuaEnv env, in StringBuilder sb)
|
||||||
|
{
|
||||||
|
var luaScriptString = @"
|
||||||
|
if not cfg or not cfg.data then
|
||||||
|
return ''
|
||||||
|
end
|
||||||
|
cfg = cfg.data
|
||||||
|
local tempMap = {}
|
||||||
|
local addErrorInfo = function(errorInfo, cfgId, errorStr)
|
||||||
|
if not tempMap[cfgId] then
|
||||||
|
tempMap[cfgId] = true
|
||||||
|
table.insert(errorInfo, 'cfgId = ' .. cfgId)
|
||||||
|
end
|
||||||
|
|
||||||
|
table.insert(errorInfo, ' ' .. errorStr)
|
||||||
|
end
|
||||||
|
|
||||||
|
local errorInfo = {}
|
||||||
|
for k, info in pairs(cfg) do
|
||||||
|
local board = info.board or info.board_daily_challenge
|
||||||
|
if not board then
|
||||||
|
addErrorInfo(errorInfo, k, configName .. ' 没有board字段,请检查')
|
||||||
|
else
|
||||||
|
if #board < 49 then
|
||||||
|
addErrorInfo(errorInfo, k, configName .. ' 没有board长度不足,请检查,当前长度为' .. #board)
|
||||||
|
end
|
||||||
|
|
||||||
|
for index, v in ipairs(board) do
|
||||||
|
if not v[1] then
|
||||||
|
addErrorInfo(errorInfo, k, configName .. ' board字段中' .. index .. '索引没有格子类型')
|
||||||
|
end
|
||||||
|
if not v[2] then
|
||||||
|
addErrorInfo(errorInfo, k, configName .. ' board字段中' .. index .. '索引没有元素类型')
|
||||||
|
elseif v[2] > 5 or v[2] < 0 then
|
||||||
|
addErrorInfo(errorInfo, k, configName .. ' board字段中' .. index .. '元素类型不合法,当前为' .. v[2])
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
local mystery_box_board = info.mystery_box_board
|
||||||
|
if mystery_box_board then
|
||||||
|
for index, v in ipairs(mystery_box_board) do
|
||||||
|
if not v[1] then
|
||||||
|
addErrorInfo(errorInfo, k, configName .. ' mystery_box_board字段中' .. index .. '索引没有格子类型')
|
||||||
|
end
|
||||||
|
if not v[2] then
|
||||||
|
addErrorInfo(errorInfo, k, configName .. ' mystery_box_board字段中' .. index .. '索引没有元素类型')
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
if #errorInfo > 0 then
|
||||||
|
return table.concat(errorInfo, '\n');
|
||||||
|
end
|
||||||
|
|
||||||
|
return ''";
|
||||||
|
var resultStr = env.DoString(" local cfg = require('app/config/" + configName + "')\n" + "local configName = '" + configName + "'\n" + luaScriptString);
|
||||||
|
if (resultStr.Length > 0)
|
||||||
|
{
|
||||||
|
foreach(var strObj in resultStr)
|
||||||
|
{
|
||||||
|
var str = Convert.ToString(strObj);
|
||||||
|
if(!String.IsNullOrEmpty(str))
|
||||||
|
{
|
||||||
|
sb.Append(str + "\n");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public static bool FastExportExcelToLua(bool isDeveloper, string designExcelPath)
|
public static bool FastExportExcelToLua(bool isDeveloper, string designExcelPath)
|
||||||
{
|
{
|
||||||
failFlag = false;
|
failFlag = false;
|
||||||
|
|||||||
@ -21,6 +21,8 @@ MonoBehaviour:
|
|||||||
- {fileID: 21300000, guid: af1e5809796473549a4f0b2c7d3e8dc3, type: 3}
|
- {fileID: 21300000, guid: af1e5809796473549a4f0b2c7d3e8dc3, type: 3}
|
||||||
- {fileID: 21300000, guid: ba8c2822d5ad5d242b447f484ba4575f, type: 3}
|
- {fileID: 21300000, guid: ba8c2822d5ad5d242b447f484ba4575f, type: 3}
|
||||||
- {fileID: 21300000, guid: ac152d8f1401bb04c832ae227281ad3a, type: 3}
|
- {fileID: 21300000, guid: ac152d8f1401bb04c832ae227281ad3a, type: 3}
|
||||||
|
- {fileID: 21300000, guid: 0c6437adb9cec8d42aaf032817914c06, type: 3}
|
||||||
|
- {fileID: 21300000, guid: 8747f81467f228045a66551d4a567d6d, type: 3}
|
||||||
- {fileID: 21300000, guid: 3297fc665edcde34cb54957166a8e63c, type: 3}
|
- {fileID: 21300000, guid: 3297fc665edcde34cb54957166a8e63c, type: 3}
|
||||||
- {fileID: 21300000, guid: e1559cf5b8a501f4fbf7fe9081997063, type: 3}
|
- {fileID: 21300000, guid: e1559cf5b8a501f4fbf7fe9081997063, type: 3}
|
||||||
- {fileID: 21300000, guid: 216d2e38114e808438efe51b5824272e, type: 3}
|
- {fileID: 21300000, guid: 216d2e38114e808438efe51b5824272e, type: 3}
|
||||||
@ -30,4 +32,4 @@ MonoBehaviour:
|
|||||||
- {fileID: 21300000, guid: 8fd4f500051b4a844a7d53c94975afec, type: 3}
|
- {fileID: 21300000, guid: 8fd4f500051b4a844a7d53c94975afec, type: 3}
|
||||||
- {fileID: 21300000, guid: 9cac3f4b1f93a4143a1536892fe15c71, type: 3}
|
- {fileID: 21300000, guid: 9cac3f4b1f93a4143a1536892fe15c71, type: 3}
|
||||||
- {fileID: 21300000, guid: 80d8b79692d1b7b4393ba7be095fed7b, type: 3}
|
- {fileID: 21300000, guid: 80d8b79692d1b7b4393ba7be095fed7b, type: 3}
|
||||||
spriteNameList: f90c0ae6579237db589237db599237db5a9237db5b9237db5c9237db5d9237dbfa0c0ae6fb0c0ae6fc0c0ae6fd0c0ae6fe0c0ae6ff0c0ae6000d0ae6010d0ae6445b58ce
|
spriteNameList: f90c0ae6579237db589237db599237db5a9237db5b9237db5c9237db5d9237db5e9237db5f9237dbfa0c0ae6fb0c0ae6fc0c0ae6fd0c0ae6fe0c0ae6ff0c0ae6000d0ae6010d0ae6445b58ce
|
||||||
|
|||||||
@ -64,6 +64,7 @@ SpriteAtlas:
|
|||||||
- {fileID: 21300000, guid: 8fd4f500051b4a844a7d53c94975afec, type: 3}
|
- {fileID: 21300000, guid: 8fd4f500051b4a844a7d53c94975afec, type: 3}
|
||||||
- {fileID: 21300000, guid: ba8c2822d5ad5d242b447f484ba4575f, type: 3}
|
- {fileID: 21300000, guid: ba8c2822d5ad5d242b447f484ba4575f, type: 3}
|
||||||
- {fileID: 21300000, guid: bcae6ed3378a43947b0b55bb5c70625b, type: 3}
|
- {fileID: 21300000, guid: bcae6ed3378a43947b0b55bb5c70625b, type: 3}
|
||||||
|
- {fileID: 21300000, guid: 8747f81467f228045a66551d4a567d6d, type: 3}
|
||||||
- {fileID: 21300000, guid: 02ab40c4f6061e248ae99aed8cfb8c09, type: 3}
|
- {fileID: 21300000, guid: 02ab40c4f6061e248ae99aed8cfb8c09, type: 3}
|
||||||
- {fileID: 21300000, guid: e1559cf5b8a501f4fbf7fe9081997063, type: 3}
|
- {fileID: 21300000, guid: e1559cf5b8a501f4fbf7fe9081997063, type: 3}
|
||||||
- {fileID: 21300000, guid: 3297fc665edcde34cb54957166a8e63c, type: 3}
|
- {fileID: 21300000, guid: 3297fc665edcde34cb54957166a8e63c, type: 3}
|
||||||
@ -73,6 +74,7 @@ SpriteAtlas:
|
|||||||
- {fileID: 21300000, guid: af1e5809796473549a4f0b2c7d3e8dc3, type: 3}
|
- {fileID: 21300000, guid: af1e5809796473549a4f0b2c7d3e8dc3, type: 3}
|
||||||
- {fileID: 21300000, guid: ff48415a944684f47b1208af4d42c74d, type: 3}
|
- {fileID: 21300000, guid: ff48415a944684f47b1208af4d42c74d, type: 3}
|
||||||
- {fileID: 21300000, guid: 9cac3f4b1f93a4143a1536892fe15c71, type: 3}
|
- {fileID: 21300000, guid: 9cac3f4b1f93a4143a1536892fe15c71, type: 3}
|
||||||
|
- {fileID: 21300000, guid: 0c6437adb9cec8d42aaf032817914c06, type: 3}
|
||||||
- {fileID: 21300000, guid: 314704dd76dbe8b45af5fc465a36b48c, type: 3}
|
- {fileID: 21300000, guid: 314704dd76dbe8b45af5fc465a36b48c, type: 3}
|
||||||
- {fileID: 21300000, guid: 8282affdf54bc4844aa71b232a6f1fa2, type: 3}
|
- {fileID: 21300000, guid: 8282affdf54bc4844aa71b232a6f1fa2, type: 3}
|
||||||
- {fileID: 21300000, guid: 23f8691ed89b279409896acfe8179617, type: 3}
|
- {fileID: 21300000, guid: 23f8691ed89b279409896acfe8179617, type: 3}
|
||||||
@ -82,6 +84,7 @@ SpriteAtlas:
|
|||||||
- avatar_frame_8
|
- avatar_frame_8
|
||||||
- avatar_frame_15
|
- avatar_frame_15
|
||||||
- avatar_frame_7
|
- avatar_frame_7
|
||||||
|
- avatar_frame_18
|
||||||
- avatar_frame_12
|
- avatar_frame_12
|
||||||
- avatar_frame_3
|
- avatar_frame_3
|
||||||
- avatar_frame_2
|
- avatar_frame_2
|
||||||
@ -91,6 +94,7 @@ SpriteAtlas:
|
|||||||
- avatar_frame_14
|
- avatar_frame_14
|
||||||
- avatar_frame_11
|
- avatar_frame_11
|
||||||
- avatar_frame_9
|
- avatar_frame_9
|
||||||
|
- avatar_frame_17
|
||||||
- avatar_frame_5
|
- avatar_frame_5
|
||||||
- avatar_frame_13
|
- avatar_frame_13
|
||||||
- avatar_frame_1
|
- avatar_frame_1
|
||||||
|
|||||||
@ -41,6 +41,7 @@ MonoBehaviour:
|
|||||||
- {fileID: 21300000, guid: ebf7e343b1d2b79428117236afdf64cc, type: 3}
|
- {fileID: 21300000, guid: ebf7e343b1d2b79428117236afdf64cc, type: 3}
|
||||||
- {fileID: 21300000, guid: 062879952e89e4648bfd885bb931b006, type: 3}
|
- {fileID: 21300000, guid: 062879952e89e4648bfd885bb931b006, type: 3}
|
||||||
- {fileID: 21300000, guid: d012b6cc00c51734195445a3c6d15cf7, type: 3}
|
- {fileID: 21300000, guid: d012b6cc00c51734195445a3c6d15cf7, type: 3}
|
||||||
|
- {fileID: 21300000, guid: b6ceb1260cf406e4e867ccd7088eb8cf, type: 3}
|
||||||
- {fileID: 21300000, guid: fda0b51f55b7e3747b0d57f8016ed335, type: 3}
|
- {fileID: 21300000, guid: fda0b51f55b7e3747b0d57f8016ed335, type: 3}
|
||||||
- {fileID: 21300000, guid: bd5b5da0992114943b34e1861598244f, type: 3}
|
- {fileID: 21300000, guid: bd5b5da0992114943b34e1861598244f, type: 3}
|
||||||
- {fileID: 21300000, guid: 7d9c79f30dcdc8247aab76baf0c2c6ba, type: 3}
|
- {fileID: 21300000, guid: 7d9c79f30dcdc8247aab76baf0c2c6ba, type: 3}
|
||||||
@ -87,4 +88,4 @@ MonoBehaviour:
|
|||||||
- {fileID: 21300000, guid: bb4e7dbdf89792644a8941a7e107e9ce, type: 3}
|
- {fileID: 21300000, guid: bb4e7dbdf89792644a8941a7e107e9ce, type: 3}
|
||||||
- {fileID: 21300000, guid: f2e805a98206eb34da53fa101aa5593c, type: 3}
|
- {fileID: 21300000, guid: f2e805a98206eb34da53fa101aa5593c, type: 3}
|
||||||
- {fileID: 21300000, guid: 71728bda29442ce40b864aff45c2fcf9, type: 3}
|
- {fileID: 21300000, guid: 71728bda29442ce40b864aff45c2fcf9, type: 3}
|
||||||
spriteNameList: 310000001f06000011061700200600002106000022060000230600002406000025060000971c1700260600005820170027060000192417001a24170028060000da271700320000003e060000707a17003f0600004006000041060000b38517004206000043060000358d170044060000450600004606000047060000330000005d060000cfee17005e0600005f06000060060000610600006206000063060000550518003400000035000000360000003700000029da00003800000039000000cbda876accda876a08e5a305e00dcedbe10dcedbe20dcedbe31d440be41d440be51d440b68d8146369d814636ad81463270ec371280ec371290ec3712a0ec3712b0ec37184439896f59c08cb6ec53cb7ec06330037881e3238881e3239881e323a881e323b881e32
|
spriteNameList: 310000001f06000011061700200600002106000022060000230600002406000025060000971c1700260600005820170027060000192417001a24170028060000da271700320000003e060000707a17003f0600004006000041060000b38517004206000043060000358d170044060000f6901700450600004606000047060000330000005d060000cfee17005e0600005f06000060060000610600006206000063060000550518003400000035000000360000003700000029da00003800000039000000cbda876accda876a08e5a305e00dcedbe10dcedbe20dcedbe31d440be41d440be51d440b68d8146369d814636ad81463270ec371280ec371290ec3712a0ec3712b0ec37184439896f59c08cb6ec53cb7ec06330037881e3238881e3239881e323a881e323b881e32
|
||||||
|
|||||||
@ -85,6 +85,7 @@ SpriteAtlas:
|
|||||||
- {fileID: 21300000, guid: 1fac7f85b1398064bb2fe6291b431566, type: 3}
|
- {fileID: 21300000, guid: 1fac7f85b1398064bb2fe6291b431566, type: 3}
|
||||||
- {fileID: 21300000, guid: 062879952e89e4648bfd885bb931b006, type: 3}
|
- {fileID: 21300000, guid: 062879952e89e4648bfd885bb931b006, type: 3}
|
||||||
- {fileID: 21300000, guid: 8f0d52f5b73b61f4da2d353433c9a3eb, type: 3}
|
- {fileID: 21300000, guid: 8f0d52f5b73b61f4da2d353433c9a3eb, type: 3}
|
||||||
|
- {fileID: 21300000, guid: b6ceb1260cf406e4e867ccd7088eb8cf, type: 3}
|
||||||
- {fileID: 21300000, guid: 5f59eb2671e1f8047bb5c912ab31a4e9, type: 3}
|
- {fileID: 21300000, guid: 5f59eb2671e1f8047bb5c912ab31a4e9, type: 3}
|
||||||
- {fileID: 21300000, guid: 9c32e986881e23942acd3c2aabeaeac3, type: 3}
|
- {fileID: 21300000, guid: 9c32e986881e23942acd3c2aabeaeac3, type: 3}
|
||||||
- {fileID: 21300000, guid: 3b1274a6d891cb545864f2d9c72f8dc1, type: 3}
|
- {fileID: 21300000, guid: 3b1274a6d891cb545864f2d9c72f8dc1, type: 3}
|
||||||
@ -160,6 +161,7 @@ SpriteAtlas:
|
|||||||
- match_1
|
- match_1
|
||||||
- 25_1
|
- 25_1
|
||||||
- frame_gray_4
|
- frame_gray_4
|
||||||
|
- 26_1
|
||||||
- frame_2
|
- frame_2
|
||||||
- 36
|
- 36
|
||||||
- avatar_1
|
- avatar_1
|
||||||
|
|||||||
@ -41,6 +41,7 @@ MonoBehaviour:
|
|||||||
- {fileID: 21300000, guid: 48de69353846dea4a81cda84ed28bc51, type: 3}
|
- {fileID: 21300000, guid: 48de69353846dea4a81cda84ed28bc51, type: 3}
|
||||||
- {fileID: 21300000, guid: 0acfcf388dce9b444bc19e0f50c863b6, type: 3}
|
- {fileID: 21300000, guid: 0acfcf388dce9b444bc19e0f50c863b6, type: 3}
|
||||||
- {fileID: 21300000, guid: 7130e790e9393b74aa40cd0f1de9b2d3, type: 3}
|
- {fileID: 21300000, guid: 7130e790e9393b74aa40cd0f1de9b2d3, type: 3}
|
||||||
|
- {fileID: 21300000, guid: 619813fa1c7474744a61647f8e13a624, type: 3}
|
||||||
- {fileID: 21300000, guid: 8125b9ddf6e08c043903a9fdaf26f7b1, type: 3}
|
- {fileID: 21300000, guid: 8125b9ddf6e08c043903a9fdaf26f7b1, type: 3}
|
||||||
- {fileID: 21300000, guid: ceff0e178a3b50442854f23f561e7fed, type: 3}
|
- {fileID: 21300000, guid: ceff0e178a3b50442854f23f561e7fed, type: 3}
|
||||||
- {fileID: 21300000, guid: 83972b43f120c634090ba4b8a5b5921e, type: 3}
|
- {fileID: 21300000, guid: 83972b43f120c634090ba4b8a5b5921e, type: 3}
|
||||||
@ -61,4 +62,4 @@ MonoBehaviour:
|
|||||||
- {fileID: 21300000, guid: 7eee036582b045e449aa206d20540119, type: 3}
|
- {fileID: 21300000, guid: 7eee036582b045e449aa206d20540119, type: 3}
|
||||||
- {fileID: 21300000, guid: 64a08f786204a98499066d1c13de7273, type: 3}
|
- {fileID: 21300000, guid: 64a08f786204a98499066d1c13de7273, type: 3}
|
||||||
- {fileID: 21300000, guid: e418dc2ac39d0c84cab1807decaaba9b, type: 3}
|
- {fileID: 21300000, guid: e418dc2ac39d0c84cab1807decaaba9b, type: 3}
|
||||||
spriteNameList: 310000001f06000011061700200600002106000022060000230600002406000025060000971c1700260600005820170027060000192417001a24170028060000da271700320000003e060000707a17003f0600004006000041060000b38517004206000043060000358d170044060000450600004606000047060000330000005d060000cfee17005e0600005f06000060060000610600006206000063060000550518003400000035000000360000003700000029da00003800000039000000
|
spriteNameList: 310000001f06000011061700200600002106000022060000230600002406000025060000971c1700260600005820170027060000192417001a24170028060000da271700320000003e060000707a17003f0600004006000041060000b38517004206000043060000358d170044060000f6901700450600004606000047060000330000005d060000cfee17005e0600005f06000060060000610600006206000063060000550518003400000035000000360000003700000029da00003800000039000000
|
||||||
|
|||||||
@ -101,6 +101,7 @@ SpriteAtlas:
|
|||||||
- {fileID: 21300000, guid: cdb1b44ac61889b41826aba17bfb5dc3, type: 3}
|
- {fileID: 21300000, guid: cdb1b44ac61889b41826aba17bfb5dc3, type: 3}
|
||||||
- {fileID: 21300000, guid: 45ce406af6ae6e248a58693b5d4fedb1, type: 3}
|
- {fileID: 21300000, guid: 45ce406af6ae6e248a58693b5d4fedb1, type: 3}
|
||||||
- {fileID: 21300000, guid: a3822fea44ebbf64697628713365c523, type: 3}
|
- {fileID: 21300000, guid: a3822fea44ebbf64697628713365c523, type: 3}
|
||||||
|
- {fileID: 21300000, guid: 619813fa1c7474744a61647f8e13a624, type: 3}
|
||||||
- {fileID: 21300000, guid: 5123256b8feda2145a9350bee87ad74f, type: 3}
|
- {fileID: 21300000, guid: 5123256b8feda2145a9350bee87ad74f, type: 3}
|
||||||
- {fileID: 21300000, guid: 04d6e47bf59d2b24e925e6f6246b3ca0, type: 3}
|
- {fileID: 21300000, guid: 04d6e47bf59d2b24e925e6f6246b3ca0, type: 3}
|
||||||
- {fileID: 21300000, guid: e98cb4fcad1a23943aa88d92be8013dc, type: 3}
|
- {fileID: 21300000, guid: e98cb4fcad1a23943aa88d92be8013dc, type: 3}
|
||||||
@ -150,6 +151,7 @@ SpriteAtlas:
|
|||||||
- 2
|
- 2
|
||||||
- 7
|
- 7
|
||||||
- 18
|
- 18
|
||||||
|
- 26_1
|
||||||
- 19
|
- 19
|
||||||
- 23_1
|
- 23_1
|
||||||
- 34
|
- 34
|
||||||
|
|||||||
@ -104,6 +104,8 @@ MonoBehaviour:
|
|||||||
- {fileID: 21300000, guid: 61dc9e158d0193943b68d7c9598310db, type: 3}
|
- {fileID: 21300000, guid: 61dc9e158d0193943b68d7c9598310db, type: 3}
|
||||||
- {fileID: 21300000, guid: 90433e6dbf11c0a4b83c4e66934b9ddd, type: 3}
|
- {fileID: 21300000, guid: 90433e6dbf11c0a4b83c4e66934b9ddd, type: 3}
|
||||||
- {fileID: 21300000, guid: e17b4fd01ebd5ab4bb6bdfbdb005e160, type: 3}
|
- {fileID: 21300000, guid: e17b4fd01ebd5ab4bb6bdfbdb005e160, type: 3}
|
||||||
|
- {fileID: 21300000, guid: 7063728264048da4695e07f5bcba0873, type: 3}
|
||||||
|
- {fileID: 21300000, guid: 65dff0f4aa2cc3649a05c686e9833bf2, type: 3}
|
||||||
- {fileID: 21300000, guid: 8b3ecfd5255c1854f8c5c2895e82fe5c, type: 3}
|
- {fileID: 21300000, guid: 8b3ecfd5255c1854f8c5c2895e82fe5c, type: 3}
|
||||||
- {fileID: 21300000, guid: aeb11f14603e1574e94acc9a24d3bf43, type: 3}
|
- {fileID: 21300000, guid: aeb11f14603e1574e94acc9a24d3bf43, type: 3}
|
||||||
- {fileID: 21300000, guid: fa546455009756f4ba5a2572bc505128, type: 3}
|
- {fileID: 21300000, guid: fa546455009756f4ba5a2572bc505128, type: 3}
|
||||||
@ -114,4 +116,4 @@ MonoBehaviour:
|
|||||||
- {fileID: 21300000, guid: 899882c0d56e96d4caf5d82d2b469729, type: 3}
|
- {fileID: 21300000, guid: 899882c0d56e96d4caf5d82d2b469729, type: 3}
|
||||||
- {fileID: 21300000, guid: 91e9e926c6246844aba4b734caefb6f9, type: 3}
|
- {fileID: 21300000, guid: 91e9e926c6246844aba4b734caefb6f9, type: 3}
|
||||||
- {fileID: 21300000, guid: d4b21efb128aa8f4093adba3d467d268, type: 3}
|
- {fileID: 21300000, guid: d4b21efb128aa8f4093adba3d467d268, type: 3}
|
||||||
spriteNameList: 310000001f0600006000170061001700620017006300170064001700650017006600170067001700680017007e0017007f00170080001700810017008200170083001700840017008500170086001700870017009d0017009e0017009f001700a0001700a1001700a2001700a3001700a4001700a5001700a6001700bc001700200600002106000022060000230600002406000025060000260600002706000028060000320000003e0600003f0600004006000041060000420600004306000044060000450600004606000047060000330000005d0600005e0600005f06000060060000610600006206000063060000640600006506000066060000340000007c0600007d0600007e0600007f0600008006000081060000820600008306000085060000350000009b0600009c0600009d0600009e0600009f060000a0060000a1060000a2060000a3060000a406000036000000ba060000bb060000bc060000bd060000be060000bf060000370000003800000039000000df0dcedbe00dcedbe10dcedbe20dcedbe30dcedb7ef2dcef0e84dc76
|
spriteNameList: 310000001f0600006000170061001700620017006300170064001700650017006600170067001700680017007e0017007f00170080001700810017008200170083001700840017008500170086001700870017009d0017009e0017009f001700a0001700a1001700a2001700a3001700a4001700a5001700a6001700bc001700200600002106000022060000230600002406000025060000260600002706000028060000320000003e0600003f0600004006000041060000420600004306000044060000450600004606000047060000330000005d0600005e0600005f06000060060000610600006206000063060000640600006506000066060000340000007c0600007d0600007e0600007f0600008006000081060000820600008306000085060000350000009b0600009c0600009d0600009e0600009f060000a0060000a1060000a2060000a3060000a406000036000000ba060000bb060000bc060000bd060000be060000bf060000c0060000c1060000370000003800000039000000df0dcedbe00dcedbe10dcedbe20dcedbe30dcedb7ef2dcef0e84dc76
|
||||||
|
|||||||
@ -79,6 +79,7 @@ SpriteAtlas:
|
|||||||
- {fileID: 21300000, guid: ef160b22ccb302942bd1976010391612, type: 3}
|
- {fileID: 21300000, guid: ef160b22ccb302942bd1976010391612, type: 3}
|
||||||
- {fileID: 21300000, guid: 9e30f142e7408e34d92249369d9dd3ad, type: 3}
|
- {fileID: 21300000, guid: 9e30f142e7408e34d92249369d9dd3ad, type: 3}
|
||||||
- {fileID: 21300000, guid: fea4f86213a880344bcffd2308591e61, type: 3}
|
- {fileID: 21300000, guid: fea4f86213a880344bcffd2308591e61, type: 3}
|
||||||
|
- {fileID: 21300000, guid: 7063728264048da4695e07f5bcba0873, type: 3}
|
||||||
- {fileID: 21300000, guid: d3c97c92da583664a87485c06eb51849, type: 3}
|
- {fileID: 21300000, guid: d3c97c92da583664a87485c06eb51849, type: 3}
|
||||||
- {fileID: 21300000, guid: d90981d2991c0014d94d5df5ba95290e, type: 3}
|
- {fileID: 21300000, guid: d90981d2991c0014d94d5df5ba95290e, type: 3}
|
||||||
- {fileID: 21300000, guid: ecce3e1346fdd394198c14a5baa13d3a, type: 3}
|
- {fileID: 21300000, guid: ecce3e1346fdd394198c14a5baa13d3a, type: 3}
|
||||||
@ -90,6 +91,7 @@ SpriteAtlas:
|
|||||||
- {fileID: 21300000, guid: 64bde744235600f4ab6a2932c33fbaf3, type: 3}
|
- {fileID: 21300000, guid: 64bde744235600f4ab6a2932c33fbaf3, type: 3}
|
||||||
- {fileID: 21300000, guid: ccd8f9b4a2dbb3849acea33f2022d48b, type: 3}
|
- {fileID: 21300000, guid: ccd8f9b4a2dbb3849acea33f2022d48b, type: 3}
|
||||||
- {fileID: 21300000, guid: 23ec06e4c0f1dc7498a431977c394573, type: 3}
|
- {fileID: 21300000, guid: 23ec06e4c0f1dc7498a431977c394573, type: 3}
|
||||||
|
- {fileID: 21300000, guid: 65dff0f4aa2cc3649a05c686e9833bf2, type: 3}
|
||||||
- {fileID: 21300000, guid: edbdb7f49131aa446bab8b42c0971df2, type: 3}
|
- {fileID: 21300000, guid: edbdb7f49131aa446bab8b42c0971df2, type: 3}
|
||||||
- {fileID: 21300000, guid: c559a9f41a97a234c9c4d5d3ad17615f, type: 3}
|
- {fileID: 21300000, guid: c559a9f41a97a234c9c4d5d3ad17615f, type: 3}
|
||||||
- {fileID: 21300000, guid: eb542a15a59fa5046a6931fdd87244a0, type: 3}
|
- {fileID: 21300000, guid: eb542a15a59fa5046a6931fdd87244a0, type: 3}
|
||||||
@ -181,6 +183,7 @@ SpriteAtlas:
|
|||||||
- 40
|
- 40
|
||||||
- 18
|
- 18
|
||||||
- 4
|
- 4
|
||||||
|
- 66
|
||||||
- 6
|
- 6
|
||||||
- 31
|
- 31
|
||||||
- 34
|
- 34
|
||||||
@ -192,6 +195,7 @@ SpriteAtlas:
|
|||||||
- 27
|
- 27
|
||||||
- 1008
|
- 1008
|
||||||
- 52
|
- 52
|
||||||
|
- 67
|
||||||
- 51
|
- 51
|
||||||
- 14
|
- 14
|
||||||
- 28
|
- 28
|
||||||
|
|||||||
@ -50,4 +50,5 @@ MonoBehaviour:
|
|||||||
- {fileID: 21300000, guid: a8b2925bff8a069449c3aa9824357e2a, type: 3}
|
- {fileID: 21300000, guid: a8b2925bff8a069449c3aa9824357e2a, type: 3}
|
||||||
- {fileID: 21300000, guid: 377ebcaae893d354fa0c18cf6af1df53, type: 3}
|
- {fileID: 21300000, guid: 377ebcaae893d354fa0c18cf6af1df53, type: 3}
|
||||||
- {fileID: 21300000, guid: ef009ccc29aa1fc4195729751693da5f, type: 3}
|
- {fileID: 21300000, guid: ef009ccc29aa1fc4195729751693da5f, type: 3}
|
||||||
spriteNameList: 684af2e4694af2e46a4af2e46b4af2e4cb8da21dcc8da21d849d74b5859d74b5869d74b5813ae87b823ae87b833ae87b843ae87b853ae87b863ae87bdffaa1dee0faa1dee1faa1dee2faa1dee3faa1dea086ca96a186ca96a286ca96a386ca96a486ca96a586ca96ba8c6a50bb8c6a50bc8c6a50b3ca3bc71033235cddc37bed4f4c9a7d504c9a7d514c9a7d524c9a7d534c9a7d
|
- {fileID: 21300000, guid: 2e0823ba8d02c844d8d537fcded91e29, type: 3}
|
||||||
|
spriteNameList: 684af2e4694af2e46a4af2e46b4af2e4cb8da21dcc8da21d849d74b5859d74b5869d74b5813ae87b823ae87b833ae87b843ae87b853ae87b863ae87bdffaa1dee0faa1dee1faa1dee2faa1dee3faa1dea086ca96a186ca96a286ca96a386ca96a486ca96a586ca96ba8c6a50bb8c6a50bc8c6a50b3ca3bc71033235cddc37bed4f4c9a7d504c9a7d514c9a7d524c9a7d534c9a7d544c9a7d
|
||||||
|
|||||||
@ -86,6 +86,7 @@ SpriteAtlas:
|
|||||||
- {fileID: 21300000, guid: ffeb26b9449fa474b8118b83464df63f, type: 3}
|
- {fileID: 21300000, guid: ffeb26b9449fa474b8118b83464df63f, type: 3}
|
||||||
- {fileID: 21300000, guid: 8c92742a7afdf6b46881adea0c4b5846, type: 3}
|
- {fileID: 21300000, guid: 8c92742a7afdf6b46881adea0c4b5846, type: 3}
|
||||||
- {fileID: 21300000, guid: 377ebcaae893d354fa0c18cf6af1df53, type: 3}
|
- {fileID: 21300000, guid: 377ebcaae893d354fa0c18cf6af1df53, type: 3}
|
||||||
|
- {fileID: 21300000, guid: 2e0823ba8d02c844d8d537fcded91e29, type: 3}
|
||||||
- {fileID: 21300000, guid: ada861ca87f0269478847b6c463e77ec, type: 3}
|
- {fileID: 21300000, guid: ada861ca87f0269478847b6c463e77ec, type: 3}
|
||||||
- {fileID: 21300000, guid: 6b4c13fa6c8a1074e936610079fb615f, type: 3}
|
- {fileID: 21300000, guid: 6b4c13fa6c8a1074e936610079fb615f, type: 3}
|
||||||
- {fileID: 21300000, guid: 797a213bc738f704daa6b0bfa1cd23ad, type: 3}
|
- {fileID: 21300000, guid: 797a213bc738f704daa6b0bfa1cd23ad, type: 3}
|
||||||
@ -124,6 +125,7 @@ SpriteAtlas:
|
|||||||
- bounty_btn_main_4
|
- bounty_btn_main_4
|
||||||
- bounty_chest_4
|
- bounty_chest_4
|
||||||
- ui_arena_bounty_banner_4
|
- ui_arena_bounty_banner_4
|
||||||
|
- ui_arena_bounty_banner_6
|
||||||
- bounty_progress_1
|
- bounty_progress_1
|
||||||
- bounty_dec_5
|
- bounty_dec_5
|
||||||
- bounty_arena_dec_3
|
- bounty_arena_dec_3
|
||||||
|
|||||||
8
Assets/arts/spines/characters/p0049.meta
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 4435a435cc342654b80ed179549f600b
|
||||||
|
folderAsset: yes
|
||||||
|
DefaultImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
72
Assets/arts/spines/characters/p0049/p0049.atlas.txt
Normal file
@ -0,0 +1,72 @@
|
|||||||
|
p0049.png
|
||||||
|
size:1024,1024
|
||||||
|
filter:Linear,Linear
|
||||||
|
bangdai
|
||||||
|
bounds:105,289,88,67
|
||||||
|
canying
|
||||||
|
bounds:2,806,279,207
|
||||||
|
offsets:0,1,279,208
|
||||||
|
canying2
|
||||||
|
bounds:2,568,243,236
|
||||||
|
offsets:0,1,243,238
|
||||||
|
eye_L
|
||||||
|
bounds:86,198,13,24
|
||||||
|
eye_R
|
||||||
|
bounds:654,942,12,24
|
||||||
|
eye_xuanyun
|
||||||
|
bounds:62,97,22,22
|
||||||
|
gutou
|
||||||
|
bounds:195,286,70,53
|
||||||
|
rotate:90
|
||||||
|
hair_01
|
||||||
|
bounds:2,37,58,82
|
||||||
|
hair_02
|
||||||
|
bounds:568,942,71,84
|
||||||
|
rotate:90
|
||||||
|
hair_03
|
||||||
|
bounds:283,894,140,119
|
||||||
|
hair_04
|
||||||
|
bounds:654,968,88,45
|
||||||
|
hand_L_01
|
||||||
|
bounds:247,634,23,27
|
||||||
|
head
|
||||||
|
bounds:283,807,98,85
|
||||||
|
hit_yan1
|
||||||
|
bounds:533,911,16,18
|
||||||
|
kulou
|
||||||
|
bounds:105,225,77,62
|
||||||
|
offsets:0,1,77,63
|
||||||
|
leg_L_01
|
||||||
|
bounds:2,2,49,33
|
||||||
|
leg_L_02
|
||||||
|
bounds:486,894,35,45
|
||||||
|
rotate:90
|
||||||
|
leg_R_01
|
||||||
|
bounds:878,975,44,38
|
||||||
|
leg_R_02
|
||||||
|
bounds:383,811,35,32
|
||||||
|
spine_01
|
||||||
|
bounds:744,953,60,70
|
||||||
|
rotate:90
|
||||||
|
spine_02
|
||||||
|
bounds:2,121,82,101
|
||||||
|
upperarm_L_01
|
||||||
|
bounds:425,856,43,36
|
||||||
|
upperarm_L_02
|
||||||
|
bounds:924,978,41,35
|
||||||
|
upperarm_R_01
|
||||||
|
bounds:383,845,40,47
|
||||||
|
upperarm_R_02
|
||||||
|
bounds:425,894,35,59
|
||||||
|
rotate:90
|
||||||
|
weapon_1
|
||||||
|
bounds:425,931,141,82
|
||||||
|
weapon_2
|
||||||
|
bounds:2,224,101,132
|
||||||
|
xiabai_01
|
||||||
|
bounds:816,966,60,47
|
||||||
|
ying
|
||||||
|
bounds:2,358,243,208
|
||||||
|
yinying
|
||||||
|
bounds:247,663,141,25
|
||||||
|
rotate:90
|
||||||
7
Assets/arts/spines/characters/p0049/p0049.atlas.txt.meta
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: e5e488c54dce51b43819cc84c775e31a
|
||||||
|
TextScriptImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/spines/characters/p0049.ab
|
||||||
|
assetBundleVariant:
|
||||||
BIN
Assets/arts/spines/characters/p0049/p0049.png
Normal file
|
After Width: | Height: | Size: 328 KiB |
120
Assets/arts/spines/characters/p0049/p0049.png.meta
Normal file
@ -0,0 +1,120 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: faf55f0dab35ca04b8be18b9aa0ee087
|
||||||
|
TextureImporter:
|
||||||
|
internalIDToNameTable: []
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 11
|
||||||
|
mipmaps:
|
||||||
|
mipMapMode: 0
|
||||||
|
enableMipMap: 0
|
||||||
|
sRGBTexture: 1
|
||||||
|
linearTexture: 0
|
||||||
|
fadeOut: 0
|
||||||
|
borderMipMap: 0
|
||||||
|
mipMapsPreserveCoverage: 0
|
||||||
|
alphaTestReferenceValue: 0.5
|
||||||
|
mipMapFadeDistanceStart: 1
|
||||||
|
mipMapFadeDistanceEnd: 3
|
||||||
|
bumpmap:
|
||||||
|
convertToNormalMap: 0
|
||||||
|
externalNormalMap: 0
|
||||||
|
heightScale: 0.25
|
||||||
|
normalMapFilter: 0
|
||||||
|
isReadable: 0
|
||||||
|
streamingMipmaps: 0
|
||||||
|
streamingMipmapsPriority: 0
|
||||||
|
vTOnly: 0
|
||||||
|
grayScaleToAlpha: 0
|
||||||
|
generateCubemap: 6
|
||||||
|
cubemapConvolution: 0
|
||||||
|
seamlessCubemap: 0
|
||||||
|
textureFormat: 1
|
||||||
|
maxTextureSize: 2048
|
||||||
|
textureSettings:
|
||||||
|
serializedVersion: 2
|
||||||
|
filterMode: 1
|
||||||
|
aniso: 1
|
||||||
|
mipBias: 0
|
||||||
|
wrapU: 1
|
||||||
|
wrapV: 1
|
||||||
|
wrapW: 1
|
||||||
|
nPOTScale: 0
|
||||||
|
lightmap: 0
|
||||||
|
compressionQuality: 50
|
||||||
|
spriteMode: 0
|
||||||
|
spriteExtrude: 1
|
||||||
|
spriteMeshType: 1
|
||||||
|
alignment: 0
|
||||||
|
spritePivot: {x: 0.5, y: 0.5}
|
||||||
|
spritePixelsToUnits: 100
|
||||||
|
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||||
|
spriteGenerateFallbackPhysicsShape: 1
|
||||||
|
alphaUsage: 1
|
||||||
|
alphaIsTransparency: 1
|
||||||
|
spriteTessellationDetail: -1
|
||||||
|
textureType: 0
|
||||||
|
textureShape: 1
|
||||||
|
singleChannelComponent: 0
|
||||||
|
flipbookRows: 1
|
||||||
|
flipbookColumns: 1
|
||||||
|
maxTextureSizeSet: 0
|
||||||
|
compressionQualitySet: 0
|
||||||
|
textureFormatSet: 0
|
||||||
|
ignorePngGamma: 0
|
||||||
|
applyGammaDecoding: 0
|
||||||
|
platformSettings:
|
||||||
|
- serializedVersion: 3
|
||||||
|
buildTarget: DefaultTexturePlatform
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: -1
|
||||||
|
textureCompression: 1
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 0
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||||
|
- serializedVersion: 3
|
||||||
|
buildTarget: Android
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: 47
|
||||||
|
textureCompression: 0
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 1
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||||
|
- serializedVersion: 3
|
||||||
|
buildTarget: iPhone
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: 50
|
||||||
|
textureCompression: 0
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 1
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||||
|
spriteSheet:
|
||||||
|
serializedVersion: 2
|
||||||
|
sprites: []
|
||||||
|
outline: []
|
||||||
|
physicsShape: []
|
||||||
|
bones: []
|
||||||
|
spriteID:
|
||||||
|
internalID: 0
|
||||||
|
vertices: []
|
||||||
|
indices:
|
||||||
|
edges: []
|
||||||
|
weights: []
|
||||||
|
secondaryTextures: []
|
||||||
|
spritePackingTag:
|
||||||
|
pSDRemoveMatte: 0
|
||||||
|
pSDShowRemoveMatteOption: 0
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/spines/characters/p0049.ab
|
||||||
|
assetBundleVariant:
|
||||||
BIN
Assets/arts/spines/characters/p0049/p0049.skel.bytes
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 3a15a7c3fdb04744e9fdf12c3d5d4ba4
|
||||||
|
TextScriptImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/spines/characters/p0049.ab
|
||||||
|
assetBundleVariant:
|
||||||
17
Assets/arts/spines/characters/p0049/p0049_atlas.asset
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
%YAML 1.1
|
||||||
|
%TAG !u! tag:unity3d.com,2011:
|
||||||
|
--- !u!114 &11400000
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 0}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
|
||||||
|
m_Name: p0049_atlas
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
atlasFile: {fileID: 4900000, guid: e5e488c54dce51b43819cc84c775e31a, type: 3}
|
||||||
|
materials:
|
||||||
|
- {fileID: 2100000, guid: e2a073c94434de745bb7df8a4b321e6f, type: 2}
|
||||||
@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: c1f733d9049eabb47b676445b4bb3529
|
||||||
|
NativeFormatImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
mainObjectFileID: 11400000
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/spines/characters/p0049.ab
|
||||||
|
assetBundleVariant:
|
||||||
40
Assets/arts/spines/characters/p0049/p0049_material.mat
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
%YAML 1.1
|
||||||
|
%TAG !u! tag:unity3d.com,2011:
|
||||||
|
--- !u!21 &2100000
|
||||||
|
Material:
|
||||||
|
serializedVersion: 6
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_Name: p0049_material
|
||||||
|
m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
|
||||||
|
m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
|
||||||
|
m_LightmapFlags: 4
|
||||||
|
m_EnableInstancingVariants: 0
|
||||||
|
m_DoubleSidedGI: 0
|
||||||
|
m_CustomRenderQueue: -1
|
||||||
|
stringTagMap: {}
|
||||||
|
disabledShaderPasses: []
|
||||||
|
m_SavedProperties:
|
||||||
|
serializedVersion: 3
|
||||||
|
m_TexEnvs:
|
||||||
|
- _MainTex:
|
||||||
|
m_Texture: {fileID: 2800000, guid: faf55f0dab35ca04b8be18b9aa0ee087, type: 3}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
m_Floats:
|
||||||
|
- _Cutoff: 0.1
|
||||||
|
- _OutlineMipLevel: 0
|
||||||
|
- _OutlineOpaqueAlpha: 1
|
||||||
|
- _OutlineReferenceTexWidth: 1024
|
||||||
|
- _OutlineSmoothness: 1
|
||||||
|
- _OutlineWidth: 3
|
||||||
|
- _StencilComp: 8
|
||||||
|
- _StencilRef: 1
|
||||||
|
- _StraightAlphaInput: 1
|
||||||
|
- _ThresholdEnd: 0.25
|
||||||
|
- _Use8Neighbourhood: 1
|
||||||
|
m_Colors:
|
||||||
|
- _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
|
||||||
|
m_BuildTextureStacks: []
|
||||||
@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: e2a073c94434de745bb7df8a4b321e6f
|
||||||
|
NativeFormatImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
mainObjectFileID: 2100000
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/spines/characters/p0049.ab
|
||||||
|
assetBundleVariant:
|
||||||
31
Assets/arts/spines/characters/p0049/p0049_skeletondata.asset
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
%YAML 1.1
|
||||||
|
%TAG !u! tag:unity3d.com,2011:
|
||||||
|
--- !u!114 &11400000
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 0}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
|
||||||
|
m_Name: p0049_skeletondata
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
atlasAssets:
|
||||||
|
- {fileID: 11400000, guid: c1f733d9049eabb47b676445b4bb3529, type: 2}
|
||||||
|
scale: 0.01
|
||||||
|
skeletonJSON: {fileID: 4900000, guid: 3a15a7c3fdb04744e9fdf12c3d5d4ba4, type: 3}
|
||||||
|
isUpgradingBlendModeMaterials: 0
|
||||||
|
blendModeMaterials:
|
||||||
|
requiresBlendModeMaterials: 0
|
||||||
|
applyAdditiveMaterial: 0
|
||||||
|
additiveMaterials: []
|
||||||
|
multiplyMaterials: []
|
||||||
|
screenMaterials: []
|
||||||
|
skeletonDataModifiers: []
|
||||||
|
fromAnimation: []
|
||||||
|
toAnimation: []
|
||||||
|
duration: []
|
||||||
|
defaultMix: 0.2
|
||||||
|
controller: {fileID: 0}
|
||||||
@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: c3e6385f5fc5e384cb7f9428d5c5d5ed
|
||||||
|
NativeFormatImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
mainObjectFileID: 11400000
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/spines/characters/p0049.ab
|
||||||
|
assetBundleVariant:
|
||||||
8
Assets/arts/spines/ui/ui_arena_bounty_banner_6.meta
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 8a728b52aa850e84eafb598a71c97b53
|
||||||
|
folderAsset: yes
|
||||||
|
DefaultImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
@ -0,0 +1,131 @@
|
|||||||
|
ui_arena_bounty_banner_6.png
|
||||||
|
size:2048,2048
|
||||||
|
filter:Linear,Linear
|
||||||
|
baigufuren_cast1-animation_52
|
||||||
|
bounds:489,1596,191,177
|
||||||
|
offsets:207,127,753,484
|
||||||
|
baigufuren_cast1-animation_53
|
||||||
|
bounds:2,371,179,190
|
||||||
|
offsets:213,128,753,484
|
||||||
|
baigufuren_cast1-animation_54
|
||||||
|
bounds:2,178,191,177
|
||||||
|
offsets:190,147,753,484
|
||||||
|
rotate:90
|
||||||
|
baigufuren_cast1-animation_55
|
||||||
|
bounds:682,1596,177,191
|
||||||
|
offsets:176,133,753,484
|
||||||
|
rotate:90
|
||||||
|
bj
|
||||||
|
bounds:2,1775,1280,271
|
||||||
|
offsets:1,1,1282,273
|
||||||
|
bj_1
|
||||||
|
bounds:2,563,306,604
|
||||||
|
offsets:1,1,308,606
|
||||||
|
bj_2
|
||||||
|
bounds:2,1169,313,604
|
||||||
|
offsets:2,1,316,606
|
||||||
|
bj_3
|
||||||
|
bounds:317,1377,145,191
|
||||||
|
offsets:1,1,147,193
|
||||||
|
bj_4
|
||||||
|
bounds:875,1628,145,191
|
||||||
|
offsets:1,1,147,193
|
||||||
|
rotate:90
|
||||||
|
bj_5
|
||||||
|
bounds:134,86,37,37
|
||||||
|
offsets:1,1,39,39
|
||||||
|
bj_6
|
||||||
|
bounds:134,86,37,37
|
||||||
|
offsets:1,1,39,39
|
||||||
|
bj_7
|
||||||
|
bounds:489,1586,168,8
|
||||||
|
offsets:1,1,170,10
|
||||||
|
bj_8
|
||||||
|
bounds:489,1586,168,8
|
||||||
|
offsets:1,1,170,10
|
||||||
|
ren_1
|
||||||
|
bounds:1068,1650,103,123
|
||||||
|
ren_10
|
||||||
|
bounds:93,25,36,51
|
||||||
|
offsets:1,1,38,53
|
||||||
|
ren_11
|
||||||
|
bounds:1701,1928,204,118
|
||||||
|
offsets:1,1,206,120
|
||||||
|
ren_12
|
||||||
|
bounds:875,1591,52,35
|
||||||
|
offsets:1,1,54,37
|
||||||
|
ren_13
|
||||||
|
bounds:1406,1804,57,67
|
||||||
|
offsets:1,1,59,69
|
||||||
|
ren_14
|
||||||
|
bounds:1173,1670,88,103
|
||||||
|
ren_15
|
||||||
|
bounds:2,6,89,70
|
||||||
|
ren_16
|
||||||
|
bounds:929,1592,34,50
|
||||||
|
offsets:1,1,36,52
|
||||||
|
rotate:90
|
||||||
|
ren_17
|
||||||
|
bounds:249,367,50,51
|
||||||
|
offsets:1,1,52,53
|
||||||
|
ren_18
|
||||||
|
bounds:1907,1930,71,48
|
||||||
|
offsets:1,1,73,50
|
||||||
|
ren_19
|
||||||
|
bounds:981,1592,34,50
|
||||||
|
offsets:1,1,36,52
|
||||||
|
rotate:90
|
||||||
|
ren_2
|
||||||
|
bounds:1284,1785,86,120
|
||||||
|
rotate:90
|
||||||
|
ren_20
|
||||||
|
bounds:134,125,51,46
|
||||||
|
offsets:1,1,53,48
|
||||||
|
rotate:90
|
||||||
|
ren_21
|
||||||
|
bounds:183,362,64,56
|
||||||
|
offsets:1,1,66,58
|
||||||
|
ren_22
|
||||||
|
bounds:1490,1867,34,39
|
||||||
|
offsets:1,1,36,41
|
||||||
|
rotate:90
|
||||||
|
ren_23
|
||||||
|
bounds:181,185,59,51
|
||||||
|
offsets:1,1,61,53
|
||||||
|
rotate:90
|
||||||
|
ren_24
|
||||||
|
bounds:181,308,62,52
|
||||||
|
offsets:1,1,64,54
|
||||||
|
ren_25
|
||||||
|
bounds:1284,1873,204,173
|
||||||
|
ren_26
|
||||||
|
bounds:317,1185,146,190
|
||||||
|
offsets:1,1,148,192
|
||||||
|
ren_3
|
||||||
|
bounds:1907,1980,127,66
|
||||||
|
offsets:1,1,129,68
|
||||||
|
ren_30
|
||||||
|
bounds:1490,1903,209,143
|
||||||
|
offsets:0,1,210,146
|
||||||
|
ren_31
|
||||||
|
bounds:317,1570,170,203
|
||||||
|
offsets:1,1,172,204
|
||||||
|
ren_4
|
||||||
|
bounds:2,78,130,98
|
||||||
|
ren_5
|
||||||
|
bounds:464,1532,19,36
|
||||||
|
offsets:1,1,21,38
|
||||||
|
ren_6
|
||||||
|
bounds:1701,1907,19,36
|
||||||
|
offsets:1,1,21,38
|
||||||
|
rotate:90
|
||||||
|
ren_7
|
||||||
|
bounds:183,420,141,122
|
||||||
|
offsets:1,1,143,124
|
||||||
|
rotate:90
|
||||||
|
ren_8
|
||||||
|
bounds:1980,1929,66,49
|
||||||
|
offsets:1,1,68,51
|
||||||
|
ren_9
|
||||||
|
bounds:181,246,51,60
|
||||||
|
offsets:1,1,53,62
|
||||||
@ -0,0 +1,7 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 09a60e7834472c748ad3879772933be8
|
||||||
|
TextScriptImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/spines/ui/ui_arena_bounty_banner_6.ab
|
||||||
|
assetBundleVariant:
|
||||||
|
After Width: | Height: | Size: 683 KiB |
@ -0,0 +1,120 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: e5a8ff6b194a1c244b43617c572391b5
|
||||||
|
TextureImporter:
|
||||||
|
internalIDToNameTable: []
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 11
|
||||||
|
mipmaps:
|
||||||
|
mipMapMode: 0
|
||||||
|
enableMipMap: 0
|
||||||
|
sRGBTexture: 1
|
||||||
|
linearTexture: 0
|
||||||
|
fadeOut: 0
|
||||||
|
borderMipMap: 0
|
||||||
|
mipMapsPreserveCoverage: 0
|
||||||
|
alphaTestReferenceValue: 0.5
|
||||||
|
mipMapFadeDistanceStart: 1
|
||||||
|
mipMapFadeDistanceEnd: 3
|
||||||
|
bumpmap:
|
||||||
|
convertToNormalMap: 0
|
||||||
|
externalNormalMap: 0
|
||||||
|
heightScale: 0.25
|
||||||
|
normalMapFilter: 0
|
||||||
|
isReadable: 0
|
||||||
|
streamingMipmaps: 0
|
||||||
|
streamingMipmapsPriority: 0
|
||||||
|
vTOnly: 0
|
||||||
|
grayScaleToAlpha: 0
|
||||||
|
generateCubemap: 6
|
||||||
|
cubemapConvolution: 0
|
||||||
|
seamlessCubemap: 0
|
||||||
|
textureFormat: 1
|
||||||
|
maxTextureSize: 2048
|
||||||
|
textureSettings:
|
||||||
|
serializedVersion: 2
|
||||||
|
filterMode: 1
|
||||||
|
aniso: 1
|
||||||
|
mipBias: 0
|
||||||
|
wrapU: 1
|
||||||
|
wrapV: 1
|
||||||
|
wrapW: 1
|
||||||
|
nPOTScale: 0
|
||||||
|
lightmap: 0
|
||||||
|
compressionQuality: 50
|
||||||
|
spriteMode: 0
|
||||||
|
spriteExtrude: 1
|
||||||
|
spriteMeshType: 1
|
||||||
|
alignment: 0
|
||||||
|
spritePivot: {x: 0.5, y: 0.5}
|
||||||
|
spritePixelsToUnits: 100
|
||||||
|
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||||
|
spriteGenerateFallbackPhysicsShape: 1
|
||||||
|
alphaUsage: 1
|
||||||
|
alphaIsTransparency: 1
|
||||||
|
spriteTessellationDetail: -1
|
||||||
|
textureType: 0
|
||||||
|
textureShape: 1
|
||||||
|
singleChannelComponent: 0
|
||||||
|
flipbookRows: 1
|
||||||
|
flipbookColumns: 1
|
||||||
|
maxTextureSizeSet: 0
|
||||||
|
compressionQualitySet: 0
|
||||||
|
textureFormatSet: 0
|
||||||
|
ignorePngGamma: 0
|
||||||
|
applyGammaDecoding: 0
|
||||||
|
platformSettings:
|
||||||
|
- serializedVersion: 3
|
||||||
|
buildTarget: DefaultTexturePlatform
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: -1
|
||||||
|
textureCompression: 1
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 0
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||||
|
- serializedVersion: 3
|
||||||
|
buildTarget: Android
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: 47
|
||||||
|
textureCompression: 0
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 1
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||||
|
- serializedVersion: 3
|
||||||
|
buildTarget: iPhone
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: 50
|
||||||
|
textureCompression: 0
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 1
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||||
|
spriteSheet:
|
||||||
|
serializedVersion: 2
|
||||||
|
sprites: []
|
||||||
|
outline: []
|
||||||
|
physicsShape: []
|
||||||
|
bones: []
|
||||||
|
spriteID:
|
||||||
|
internalID: 0
|
||||||
|
vertices: []
|
||||||
|
indices:
|
||||||
|
edges: []
|
||||||
|
weights: []
|
||||||
|
secondaryTextures: []
|
||||||
|
spritePackingTag:
|
||||||
|
pSDRemoveMatte: 0
|
||||||
|
pSDShowRemoveMatteOption: 0
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/spines/ui/ui_arena_bounty_banner_6.ab
|
||||||
|
assetBundleVariant:
|
||||||
@ -0,0 +1,7 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 35f53b335dd108644b15df86624d20f7
|
||||||
|
TextScriptImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/spines/ui/ui_arena_bounty_banner_6.ab
|
||||||
|
assetBundleVariant:
|
||||||
@ -0,0 +1,17 @@
|
|||||||
|
%YAML 1.1
|
||||||
|
%TAG !u! tag:unity3d.com,2011:
|
||||||
|
--- !u!114 &11400000
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 0}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
|
||||||
|
m_Name: ui_arena_bounty_banner_6_atlas
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
atlasFile: {fileID: 4900000, guid: 09a60e7834472c748ad3879772933be8, type: 3}
|
||||||
|
materials:
|
||||||
|
- {fileID: 2100000, guid: 39e5e049bbba9bf449c6e54aed69bfa5, type: 2}
|
||||||
@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 45677b5312b58a14a8ef1d8876c27184
|
||||||
|
NativeFormatImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
mainObjectFileID: 11400000
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/spines/ui/ui_arena_bounty_banner_6.ab
|
||||||
|
assetBundleVariant:
|
||||||
@ -0,0 +1,40 @@
|
|||||||
|
%YAML 1.1
|
||||||
|
%TAG !u! tag:unity3d.com,2011:
|
||||||
|
--- !u!21 &2100000
|
||||||
|
Material:
|
||||||
|
serializedVersion: 6
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_Name: ui_arena_bounty_banner_6_material
|
||||||
|
m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
|
||||||
|
m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
|
||||||
|
m_LightmapFlags: 4
|
||||||
|
m_EnableInstancingVariants: 0
|
||||||
|
m_DoubleSidedGI: 0
|
||||||
|
m_CustomRenderQueue: -1
|
||||||
|
stringTagMap: {}
|
||||||
|
disabledShaderPasses: []
|
||||||
|
m_SavedProperties:
|
||||||
|
serializedVersion: 3
|
||||||
|
m_TexEnvs:
|
||||||
|
- _MainTex:
|
||||||
|
m_Texture: {fileID: 2800000, guid: e5a8ff6b194a1c244b43617c572391b5, type: 3}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
m_Floats:
|
||||||
|
- _Cutoff: 0.1
|
||||||
|
- _OutlineMipLevel: 0
|
||||||
|
- _OutlineOpaqueAlpha: 1
|
||||||
|
- _OutlineReferenceTexWidth: 1024
|
||||||
|
- _OutlineSmoothness: 1
|
||||||
|
- _OutlineWidth: 3
|
||||||
|
- _StencilComp: 8
|
||||||
|
- _StencilRef: 1
|
||||||
|
- _StraightAlphaInput: 1
|
||||||
|
- _ThresholdEnd: 0.25
|
||||||
|
- _Use8Neighbourhood: 1
|
||||||
|
m_Colors:
|
||||||
|
- _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
|
||||||
|
m_BuildTextureStacks: []
|
||||||
@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 39e5e049bbba9bf449c6e54aed69bfa5
|
||||||
|
NativeFormatImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
mainObjectFileID: 2100000
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/spines/ui/ui_arena_bounty_banner_6.ab
|
||||||
|
assetBundleVariant:
|
||||||
@ -0,0 +1,31 @@
|
|||||||
|
%YAML 1.1
|
||||||
|
%TAG !u! tag:unity3d.com,2011:
|
||||||
|
--- !u!114 &11400000
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 0}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
|
||||||
|
m_Name: ui_arena_bounty_banner_6_skeletondata
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
atlasAssets:
|
||||||
|
- {fileID: 11400000, guid: 45677b5312b58a14a8ef1d8876c27184, type: 2}
|
||||||
|
scale: 0.01
|
||||||
|
skeletonJSON: {fileID: 4900000, guid: 35f53b335dd108644b15df86624d20f7, type: 3}
|
||||||
|
isUpgradingBlendModeMaterials: 0
|
||||||
|
blendModeMaterials:
|
||||||
|
requiresBlendModeMaterials: 0
|
||||||
|
applyAdditiveMaterial: 0
|
||||||
|
additiveMaterials: []
|
||||||
|
multiplyMaterials: []
|
||||||
|
screenMaterials: []
|
||||||
|
skeletonDataModifiers: []
|
||||||
|
fromAnimation: []
|
||||||
|
toAnimation: []
|
||||||
|
duration: []
|
||||||
|
defaultMix: 0.2
|
||||||
|
controller: {fileID: 0}
|
||||||
@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: dcff5752192c9a84bafe8419f64aaa3e
|
||||||
|
NativeFormatImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
mainObjectFileID: 11400000
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/spines/ui/ui_arena_bounty_banner_6.ab
|
||||||
|
assetBundleVariant:
|
||||||
BIN
Assets/arts/textures/icon/avatar/avatar_frame_17.png
Normal file
|
After Width: | Height: | Size: 32 KiB |
132
Assets/arts/textures/icon/avatar/avatar_frame_17.png.meta
Normal file
@ -0,0 +1,132 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 0c6437adb9cec8d42aaf032817914c06
|
||||||
|
TextureImporter:
|
||||||
|
internalIDToNameTable: []
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 11
|
||||||
|
mipmaps:
|
||||||
|
mipMapMode: 0
|
||||||
|
enableMipMap: 0
|
||||||
|
sRGBTexture: 1
|
||||||
|
linearTexture: 0
|
||||||
|
fadeOut: 0
|
||||||
|
borderMipMap: 0
|
||||||
|
mipMapsPreserveCoverage: 0
|
||||||
|
alphaTestReferenceValue: 0.5
|
||||||
|
mipMapFadeDistanceStart: 1
|
||||||
|
mipMapFadeDistanceEnd: 3
|
||||||
|
bumpmap:
|
||||||
|
convertToNormalMap: 0
|
||||||
|
externalNormalMap: 0
|
||||||
|
heightScale: 0.25
|
||||||
|
normalMapFilter: 0
|
||||||
|
isReadable: 0
|
||||||
|
streamingMipmaps: 0
|
||||||
|
streamingMipmapsPriority: 0
|
||||||
|
vTOnly: 0
|
||||||
|
grayScaleToAlpha: 0
|
||||||
|
generateCubemap: 6
|
||||||
|
cubemapConvolution: 0
|
||||||
|
seamlessCubemap: 0
|
||||||
|
textureFormat: 1
|
||||||
|
maxTextureSize: 2048
|
||||||
|
textureSettings:
|
||||||
|
serializedVersion: 2
|
||||||
|
filterMode: 1
|
||||||
|
aniso: 1
|
||||||
|
mipBias: 0
|
||||||
|
wrapU: 1
|
||||||
|
wrapV: 1
|
||||||
|
wrapW: 1
|
||||||
|
nPOTScale: 0
|
||||||
|
lightmap: 0
|
||||||
|
compressionQuality: 50
|
||||||
|
spriteMode: 1
|
||||||
|
spriteExtrude: 1
|
||||||
|
spriteMeshType: 1
|
||||||
|
alignment: 0
|
||||||
|
spritePivot: {x: 0.5, y: 0.5}
|
||||||
|
spritePixelsToUnits: 100
|
||||||
|
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||||
|
spriteGenerateFallbackPhysicsShape: 1
|
||||||
|
alphaUsage: 1
|
||||||
|
alphaIsTransparency: 1
|
||||||
|
spriteTessellationDetail: -1
|
||||||
|
textureType: 8
|
||||||
|
textureShape: 1
|
||||||
|
singleChannelComponent: 0
|
||||||
|
flipbookRows: 1
|
||||||
|
flipbookColumns: 1
|
||||||
|
maxTextureSizeSet: 0
|
||||||
|
compressionQualitySet: 0
|
||||||
|
textureFormatSet: 0
|
||||||
|
ignorePngGamma: 0
|
||||||
|
applyGammaDecoding: 0
|
||||||
|
platformSettings:
|
||||||
|
- serializedVersion: 3
|
||||||
|
buildTarget: DefaultTexturePlatform
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: -1
|
||||||
|
textureCompression: 1
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 0
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||||
|
- serializedVersion: 3
|
||||||
|
buildTarget: Android
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: 47
|
||||||
|
textureCompression: 0
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 1
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||||
|
- serializedVersion: 3
|
||||||
|
buildTarget: iPhone
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: 50
|
||||||
|
textureCompression: 0
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 1
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||||
|
- serializedVersion: 3
|
||||||
|
buildTarget: Standalone
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: 12
|
||||||
|
textureCompression: 0
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 1
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||||
|
spriteSheet:
|
||||||
|
serializedVersion: 2
|
||||||
|
sprites: []
|
||||||
|
outline: []
|
||||||
|
physicsShape: []
|
||||||
|
bones: []
|
||||||
|
spriteID: 5e97eb03825dee720800000000000000
|
||||||
|
internalID: 0
|
||||||
|
vertices: []
|
||||||
|
indices:
|
||||||
|
edges: []
|
||||||
|
weights: []
|
||||||
|
secondaryTextures: []
|
||||||
|
spritePackingTag:
|
||||||
|
pSDRemoveMatte: 0
|
||||||
|
pSDShowRemoveMatteOption: 0
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/textures/icon/avatar.ab
|
||||||
|
assetBundleVariant:
|
||||||
BIN
Assets/arts/textures/icon/avatar/avatar_frame_18.png
Normal file
|
After Width: | Height: | Size: 38 KiB |
132
Assets/arts/textures/icon/avatar/avatar_frame_18.png.meta
Normal file
@ -0,0 +1,132 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 8747f81467f228045a66551d4a567d6d
|
||||||
|
TextureImporter:
|
||||||
|
internalIDToNameTable: []
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 11
|
||||||
|
mipmaps:
|
||||||
|
mipMapMode: 0
|
||||||
|
enableMipMap: 0
|
||||||
|
sRGBTexture: 1
|
||||||
|
linearTexture: 0
|
||||||
|
fadeOut: 0
|
||||||
|
borderMipMap: 0
|
||||||
|
mipMapsPreserveCoverage: 0
|
||||||
|
alphaTestReferenceValue: 0.5
|
||||||
|
mipMapFadeDistanceStart: 1
|
||||||
|
mipMapFadeDistanceEnd: 3
|
||||||
|
bumpmap:
|
||||||
|
convertToNormalMap: 0
|
||||||
|
externalNormalMap: 0
|
||||||
|
heightScale: 0.25
|
||||||
|
normalMapFilter: 0
|
||||||
|
isReadable: 0
|
||||||
|
streamingMipmaps: 0
|
||||||
|
streamingMipmapsPriority: 0
|
||||||
|
vTOnly: 0
|
||||||
|
grayScaleToAlpha: 0
|
||||||
|
generateCubemap: 6
|
||||||
|
cubemapConvolution: 0
|
||||||
|
seamlessCubemap: 0
|
||||||
|
textureFormat: 1
|
||||||
|
maxTextureSize: 2048
|
||||||
|
textureSettings:
|
||||||
|
serializedVersion: 2
|
||||||
|
filterMode: 1
|
||||||
|
aniso: 1
|
||||||
|
mipBias: 0
|
||||||
|
wrapU: 1
|
||||||
|
wrapV: 1
|
||||||
|
wrapW: 1
|
||||||
|
nPOTScale: 0
|
||||||
|
lightmap: 0
|
||||||
|
compressionQuality: 50
|
||||||
|
spriteMode: 1
|
||||||
|
spriteExtrude: 1
|
||||||
|
spriteMeshType: 1
|
||||||
|
alignment: 0
|
||||||
|
spritePivot: {x: 0.5, y: 0.5}
|
||||||
|
spritePixelsToUnits: 100
|
||||||
|
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||||
|
spriteGenerateFallbackPhysicsShape: 1
|
||||||
|
alphaUsage: 1
|
||||||
|
alphaIsTransparency: 1
|
||||||
|
spriteTessellationDetail: -1
|
||||||
|
textureType: 8
|
||||||
|
textureShape: 1
|
||||||
|
singleChannelComponent: 0
|
||||||
|
flipbookRows: 1
|
||||||
|
flipbookColumns: 1
|
||||||
|
maxTextureSizeSet: 0
|
||||||
|
compressionQualitySet: 0
|
||||||
|
textureFormatSet: 0
|
||||||
|
ignorePngGamma: 0
|
||||||
|
applyGammaDecoding: 0
|
||||||
|
platformSettings:
|
||||||
|
- serializedVersion: 3
|
||||||
|
buildTarget: DefaultTexturePlatform
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: -1
|
||||||
|
textureCompression: 1
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 0
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||||
|
- serializedVersion: 3
|
||||||
|
buildTarget: Android
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: 47
|
||||||
|
textureCompression: 0
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 1
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||||
|
- serializedVersion: 3
|
||||||
|
buildTarget: iPhone
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: 50
|
||||||
|
textureCompression: 0
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 1
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||||
|
- serializedVersion: 3
|
||||||
|
buildTarget: Standalone
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: 12
|
||||||
|
textureCompression: 0
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 1
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||||
|
spriteSheet:
|
||||||
|
serializedVersion: 2
|
||||||
|
sprites: []
|
||||||
|
outline: []
|
||||||
|
physicsShape: []
|
||||||
|
bones: []
|
||||||
|
spriteID: 5e97eb03825dee720800000000000000
|
||||||
|
internalID: 0
|
||||||
|
vertices: []
|
||||||
|
indices:
|
||||||
|
edges: []
|
||||||
|
weights: []
|
||||||
|
secondaryTextures: []
|
||||||
|
spritePackingTag:
|
||||||
|
pSDRemoveMatte: 0
|
||||||
|
pSDShowRemoveMatteOption: 0
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/textures/icon/avatar.ab
|
||||||
|
assetBundleVariant:
|
||||||
BIN
Assets/arts/textures/icon/hero/26_1.png
Normal file
|
After Width: | Height: | Size: 18 KiB |
132
Assets/arts/textures/icon/hero/26_1.png.meta
Normal file
@ -0,0 +1,132 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: b6ceb1260cf406e4e867ccd7088eb8cf
|
||||||
|
TextureImporter:
|
||||||
|
internalIDToNameTable: []
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 11
|
||||||
|
mipmaps:
|
||||||
|
mipMapMode: 0
|
||||||
|
enableMipMap: 0
|
||||||
|
sRGBTexture: 1
|
||||||
|
linearTexture: 0
|
||||||
|
fadeOut: 0
|
||||||
|
borderMipMap: 0
|
||||||
|
mipMapsPreserveCoverage: 0
|
||||||
|
alphaTestReferenceValue: 0.5
|
||||||
|
mipMapFadeDistanceStart: 1
|
||||||
|
mipMapFadeDistanceEnd: 3
|
||||||
|
bumpmap:
|
||||||
|
convertToNormalMap: 0
|
||||||
|
externalNormalMap: 0
|
||||||
|
heightScale: 0.25
|
||||||
|
normalMapFilter: 0
|
||||||
|
isReadable: 0
|
||||||
|
streamingMipmaps: 0
|
||||||
|
streamingMipmapsPriority: 0
|
||||||
|
vTOnly: 0
|
||||||
|
grayScaleToAlpha: 0
|
||||||
|
generateCubemap: 6
|
||||||
|
cubemapConvolution: 0
|
||||||
|
seamlessCubemap: 0
|
||||||
|
textureFormat: 1
|
||||||
|
maxTextureSize: 2048
|
||||||
|
textureSettings:
|
||||||
|
serializedVersion: 2
|
||||||
|
filterMode: 1
|
||||||
|
aniso: 1
|
||||||
|
mipBias: 0
|
||||||
|
wrapU: 1
|
||||||
|
wrapV: 1
|
||||||
|
wrapW: 1
|
||||||
|
nPOTScale: 0
|
||||||
|
lightmap: 0
|
||||||
|
compressionQuality: 50
|
||||||
|
spriteMode: 1
|
||||||
|
spriteExtrude: 1
|
||||||
|
spriteMeshType: 1
|
||||||
|
alignment: 0
|
||||||
|
spritePivot: {x: 0.5, y: 0.5}
|
||||||
|
spritePixelsToUnits: 100
|
||||||
|
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||||
|
spriteGenerateFallbackPhysicsShape: 1
|
||||||
|
alphaUsage: 1
|
||||||
|
alphaIsTransparency: 1
|
||||||
|
spriteTessellationDetail: -1
|
||||||
|
textureType: 8
|
||||||
|
textureShape: 1
|
||||||
|
singleChannelComponent: 0
|
||||||
|
flipbookRows: 1
|
||||||
|
flipbookColumns: 1
|
||||||
|
maxTextureSizeSet: 0
|
||||||
|
compressionQualitySet: 0
|
||||||
|
textureFormatSet: 0
|
||||||
|
ignorePngGamma: 0
|
||||||
|
applyGammaDecoding: 0
|
||||||
|
platformSettings:
|
||||||
|
- serializedVersion: 3
|
||||||
|
buildTarget: DefaultTexturePlatform
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: -1
|
||||||
|
textureCompression: 1
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 0
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||||
|
- serializedVersion: 3
|
||||||
|
buildTarget: Android
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: 47
|
||||||
|
textureCompression: 0
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 1
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||||
|
- serializedVersion: 3
|
||||||
|
buildTarget: iPhone
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: 50
|
||||||
|
textureCompression: 0
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 1
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||||
|
- serializedVersion: 3
|
||||||
|
buildTarget: Standalone
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: 12
|
||||||
|
textureCompression: 0
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 1
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||||
|
spriteSheet:
|
||||||
|
serializedVersion: 2
|
||||||
|
sprites: []
|
||||||
|
outline: []
|
||||||
|
physicsShape: []
|
||||||
|
bones: []
|
||||||
|
spriteID: 5e97eb03825dee720800000000000000
|
||||||
|
internalID: 0
|
||||||
|
vertices: []
|
||||||
|
indices:
|
||||||
|
edges: []
|
||||||
|
weights: []
|
||||||
|
secondaryTextures: []
|
||||||
|
spritePackingTag:
|
||||||
|
pSDRemoveMatte: 0
|
||||||
|
pSDShowRemoveMatteOption: 0
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/textures/icon/hero.ab
|
||||||
|
assetBundleVariant:
|
||||||
BIN
Assets/arts/textures/icon/hero_2/26_1.png
Normal file
|
After Width: | Height: | Size: 22 KiB |
132
Assets/arts/textures/icon/hero_2/26_1.png.meta
Normal file
@ -0,0 +1,132 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 619813fa1c7474744a61647f8e13a624
|
||||||
|
TextureImporter:
|
||||||
|
internalIDToNameTable: []
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 11
|
||||||
|
mipmaps:
|
||||||
|
mipMapMode: 0
|
||||||
|
enableMipMap: 0
|
||||||
|
sRGBTexture: 1
|
||||||
|
linearTexture: 0
|
||||||
|
fadeOut: 0
|
||||||
|
borderMipMap: 0
|
||||||
|
mipMapsPreserveCoverage: 0
|
||||||
|
alphaTestReferenceValue: 0.5
|
||||||
|
mipMapFadeDistanceStart: 1
|
||||||
|
mipMapFadeDistanceEnd: 3
|
||||||
|
bumpmap:
|
||||||
|
convertToNormalMap: 0
|
||||||
|
externalNormalMap: 0
|
||||||
|
heightScale: 0.25
|
||||||
|
normalMapFilter: 0
|
||||||
|
isReadable: 0
|
||||||
|
streamingMipmaps: 0
|
||||||
|
streamingMipmapsPriority: 0
|
||||||
|
vTOnly: 0
|
||||||
|
grayScaleToAlpha: 0
|
||||||
|
generateCubemap: 6
|
||||||
|
cubemapConvolution: 0
|
||||||
|
seamlessCubemap: 0
|
||||||
|
textureFormat: 1
|
||||||
|
maxTextureSize: 2048
|
||||||
|
textureSettings:
|
||||||
|
serializedVersion: 2
|
||||||
|
filterMode: 1
|
||||||
|
aniso: 1
|
||||||
|
mipBias: 0
|
||||||
|
wrapU: 1
|
||||||
|
wrapV: 1
|
||||||
|
wrapW: 1
|
||||||
|
nPOTScale: 0
|
||||||
|
lightmap: 0
|
||||||
|
compressionQuality: 50
|
||||||
|
spriteMode: 1
|
||||||
|
spriteExtrude: 1
|
||||||
|
spriteMeshType: 1
|
||||||
|
alignment: 0
|
||||||
|
spritePivot: {x: 0.5, y: 0.5}
|
||||||
|
spritePixelsToUnits: 100
|
||||||
|
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||||
|
spriteGenerateFallbackPhysicsShape: 1
|
||||||
|
alphaUsage: 1
|
||||||
|
alphaIsTransparency: 1
|
||||||
|
spriteTessellationDetail: -1
|
||||||
|
textureType: 8
|
||||||
|
textureShape: 1
|
||||||
|
singleChannelComponent: 0
|
||||||
|
flipbookRows: 1
|
||||||
|
flipbookColumns: 1
|
||||||
|
maxTextureSizeSet: 0
|
||||||
|
compressionQualitySet: 0
|
||||||
|
textureFormatSet: 0
|
||||||
|
ignorePngGamma: 0
|
||||||
|
applyGammaDecoding: 0
|
||||||
|
platformSettings:
|
||||||
|
- serializedVersion: 3
|
||||||
|
buildTarget: DefaultTexturePlatform
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: -1
|
||||||
|
textureCompression: 1
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 0
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||||
|
- serializedVersion: 3
|
||||||
|
buildTarget: Android
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: 47
|
||||||
|
textureCompression: 0
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 1
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||||
|
- serializedVersion: 3
|
||||||
|
buildTarget: iPhone
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: 50
|
||||||
|
textureCompression: 0
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 1
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||||
|
- serializedVersion: 3
|
||||||
|
buildTarget: Standalone
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: 12
|
||||||
|
textureCompression: 0
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 1
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||||
|
spriteSheet:
|
||||||
|
serializedVersion: 2
|
||||||
|
sprites: []
|
||||||
|
outline: []
|
||||||
|
physicsShape: []
|
||||||
|
bones: []
|
||||||
|
spriteID: 5e97eb03825dee720800000000000000
|
||||||
|
internalID: 0
|
||||||
|
vertices: []
|
||||||
|
indices:
|
||||||
|
edges: []
|
||||||
|
weights: []
|
||||||
|
secondaryTextures: []
|
||||||
|
spritePackingTag:
|
||||||
|
pSDRemoveMatte: 0
|
||||||
|
pSDShowRemoveMatteOption: 0
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/textures/icon/hero_2.ab
|
||||||
|
assetBundleVariant:
|
||||||
BIN
Assets/arts/textures/icon/item/66.png
Normal file
|
After Width: | Height: | Size: 13 KiB |
132
Assets/arts/textures/icon/item/66.png.meta
Normal file
@ -0,0 +1,132 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 7063728264048da4695e07f5bcba0873
|
||||||
|
TextureImporter:
|
||||||
|
internalIDToNameTable: []
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 11
|
||||||
|
mipmaps:
|
||||||
|
mipMapMode: 0
|
||||||
|
enableMipMap: 0
|
||||||
|
sRGBTexture: 1
|
||||||
|
linearTexture: 0
|
||||||
|
fadeOut: 0
|
||||||
|
borderMipMap: 0
|
||||||
|
mipMapsPreserveCoverage: 0
|
||||||
|
alphaTestReferenceValue: 0.5
|
||||||
|
mipMapFadeDistanceStart: 1
|
||||||
|
mipMapFadeDistanceEnd: 3
|
||||||
|
bumpmap:
|
||||||
|
convertToNormalMap: 0
|
||||||
|
externalNormalMap: 0
|
||||||
|
heightScale: 0.25
|
||||||
|
normalMapFilter: 0
|
||||||
|
isReadable: 0
|
||||||
|
streamingMipmaps: 0
|
||||||
|
streamingMipmapsPriority: 0
|
||||||
|
vTOnly: 0
|
||||||
|
grayScaleToAlpha: 0
|
||||||
|
generateCubemap: 6
|
||||||
|
cubemapConvolution: 0
|
||||||
|
seamlessCubemap: 0
|
||||||
|
textureFormat: 1
|
||||||
|
maxTextureSize: 2048
|
||||||
|
textureSettings:
|
||||||
|
serializedVersion: 2
|
||||||
|
filterMode: 1
|
||||||
|
aniso: 1
|
||||||
|
mipBias: 0
|
||||||
|
wrapU: 1
|
||||||
|
wrapV: 1
|
||||||
|
wrapW: 1
|
||||||
|
nPOTScale: 0
|
||||||
|
lightmap: 0
|
||||||
|
compressionQuality: 50
|
||||||
|
spriteMode: 1
|
||||||
|
spriteExtrude: 1
|
||||||
|
spriteMeshType: 1
|
||||||
|
alignment: 0
|
||||||
|
spritePivot: {x: 0.5, y: 0.5}
|
||||||
|
spritePixelsToUnits: 100
|
||||||
|
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||||
|
spriteGenerateFallbackPhysicsShape: 1
|
||||||
|
alphaUsage: 1
|
||||||
|
alphaIsTransparency: 1
|
||||||
|
spriteTessellationDetail: -1
|
||||||
|
textureType: 8
|
||||||
|
textureShape: 1
|
||||||
|
singleChannelComponent: 0
|
||||||
|
flipbookRows: 1
|
||||||
|
flipbookColumns: 1
|
||||||
|
maxTextureSizeSet: 0
|
||||||
|
compressionQualitySet: 0
|
||||||
|
textureFormatSet: 0
|
||||||
|
ignorePngGamma: 0
|
||||||
|
applyGammaDecoding: 0
|
||||||
|
platformSettings:
|
||||||
|
- serializedVersion: 3
|
||||||
|
buildTarget: DefaultTexturePlatform
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: -1
|
||||||
|
textureCompression: 1
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 0
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||||
|
- serializedVersion: 3
|
||||||
|
buildTarget: Android
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: 47
|
||||||
|
textureCompression: 0
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 1
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||||
|
- serializedVersion: 3
|
||||||
|
buildTarget: iPhone
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: 50
|
||||||
|
textureCompression: 0
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 1
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||||
|
- serializedVersion: 3
|
||||||
|
buildTarget: Standalone
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: 12
|
||||||
|
textureCompression: 0
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 1
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||||
|
spriteSheet:
|
||||||
|
serializedVersion: 2
|
||||||
|
sprites: []
|
||||||
|
outline: []
|
||||||
|
physicsShape: []
|
||||||
|
bones: []
|
||||||
|
spriteID: 5e97eb03825dee720800000000000000
|
||||||
|
internalID: 0
|
||||||
|
vertices: []
|
||||||
|
indices:
|
||||||
|
edges: []
|
||||||
|
weights: []
|
||||||
|
secondaryTextures: []
|
||||||
|
spritePackingTag:
|
||||||
|
pSDRemoveMatte: 0
|
||||||
|
pSDShowRemoveMatteOption: 0
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/textures/icon/item.ab
|
||||||
|
assetBundleVariant:
|
||||||
BIN
Assets/arts/textures/icon/item/67.png
Normal file
|
After Width: | Height: | Size: 15 KiB |
132
Assets/arts/textures/icon/item/67.png.meta
Normal file
@ -0,0 +1,132 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 65dff0f4aa2cc3649a05c686e9833bf2
|
||||||
|
TextureImporter:
|
||||||
|
internalIDToNameTable: []
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 11
|
||||||
|
mipmaps:
|
||||||
|
mipMapMode: 0
|
||||||
|
enableMipMap: 0
|
||||||
|
sRGBTexture: 1
|
||||||
|
linearTexture: 0
|
||||||
|
fadeOut: 0
|
||||||
|
borderMipMap: 0
|
||||||
|
mipMapsPreserveCoverage: 0
|
||||||
|
alphaTestReferenceValue: 0.5
|
||||||
|
mipMapFadeDistanceStart: 1
|
||||||
|
mipMapFadeDistanceEnd: 3
|
||||||
|
bumpmap:
|
||||||
|
convertToNormalMap: 0
|
||||||
|
externalNormalMap: 0
|
||||||
|
heightScale: 0.25
|
||||||
|
normalMapFilter: 0
|
||||||
|
isReadable: 0
|
||||||
|
streamingMipmaps: 0
|
||||||
|
streamingMipmapsPriority: 0
|
||||||
|
vTOnly: 0
|
||||||
|
grayScaleToAlpha: 0
|
||||||
|
generateCubemap: 6
|
||||||
|
cubemapConvolution: 0
|
||||||
|
seamlessCubemap: 0
|
||||||
|
textureFormat: 1
|
||||||
|
maxTextureSize: 2048
|
||||||
|
textureSettings:
|
||||||
|
serializedVersion: 2
|
||||||
|
filterMode: 1
|
||||||
|
aniso: 1
|
||||||
|
mipBias: 0
|
||||||
|
wrapU: 1
|
||||||
|
wrapV: 1
|
||||||
|
wrapW: 1
|
||||||
|
nPOTScale: 0
|
||||||
|
lightmap: 0
|
||||||
|
compressionQuality: 50
|
||||||
|
spriteMode: 1
|
||||||
|
spriteExtrude: 1
|
||||||
|
spriteMeshType: 1
|
||||||
|
alignment: 0
|
||||||
|
spritePivot: {x: 0.5, y: 0.5}
|
||||||
|
spritePixelsToUnits: 100
|
||||||
|
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||||
|
spriteGenerateFallbackPhysicsShape: 1
|
||||||
|
alphaUsage: 1
|
||||||
|
alphaIsTransparency: 1
|
||||||
|
spriteTessellationDetail: -1
|
||||||
|
textureType: 8
|
||||||
|
textureShape: 1
|
||||||
|
singleChannelComponent: 0
|
||||||
|
flipbookRows: 1
|
||||||
|
flipbookColumns: 1
|
||||||
|
maxTextureSizeSet: 0
|
||||||
|
compressionQualitySet: 0
|
||||||
|
textureFormatSet: 0
|
||||||
|
ignorePngGamma: 0
|
||||||
|
applyGammaDecoding: 0
|
||||||
|
platformSettings:
|
||||||
|
- serializedVersion: 3
|
||||||
|
buildTarget: DefaultTexturePlatform
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: -1
|
||||||
|
textureCompression: 1
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 0
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||||
|
- serializedVersion: 3
|
||||||
|
buildTarget: Android
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: 47
|
||||||
|
textureCompression: 0
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 1
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||||
|
- serializedVersion: 3
|
||||||
|
buildTarget: iPhone
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: 50
|
||||||
|
textureCompression: 0
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 1
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||||
|
- serializedVersion: 3
|
||||||
|
buildTarget: Standalone
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: 12
|
||||||
|
textureCompression: 0
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 1
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||||
|
spriteSheet:
|
||||||
|
serializedVersion: 2
|
||||||
|
sprites: []
|
||||||
|
outline: []
|
||||||
|
physicsShape: []
|
||||||
|
bones: []
|
||||||
|
spriteID: 5e97eb03825dee720800000000000000
|
||||||
|
internalID: 0
|
||||||
|
vertices: []
|
||||||
|
indices:
|
||||||
|
edges: []
|
||||||
|
weights: []
|
||||||
|
secondaryTextures: []
|
||||||
|
spritePackingTag:
|
||||||
|
pSDRemoveMatte: 0
|
||||||
|
pSDShowRemoveMatteOption: 0
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/textures/icon/item.ab
|
||||||
|
assetBundleVariant:
|
||||||
BIN
Assets/arts/textures/ui/bounty/ui_arena_bounty_banner_6.png
Normal file
|
After Width: | Height: | Size: 46 KiB |
132
Assets/arts/textures/ui/bounty/ui_arena_bounty_banner_6.png.meta
Normal file
@ -0,0 +1,132 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 2e0823ba8d02c844d8d537fcded91e29
|
||||||
|
TextureImporter:
|
||||||
|
internalIDToNameTable: []
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 11
|
||||||
|
mipmaps:
|
||||||
|
mipMapMode: 0
|
||||||
|
enableMipMap: 0
|
||||||
|
sRGBTexture: 1
|
||||||
|
linearTexture: 0
|
||||||
|
fadeOut: 0
|
||||||
|
borderMipMap: 0
|
||||||
|
mipMapsPreserveCoverage: 0
|
||||||
|
alphaTestReferenceValue: 0.5
|
||||||
|
mipMapFadeDistanceStart: 1
|
||||||
|
mipMapFadeDistanceEnd: 3
|
||||||
|
bumpmap:
|
||||||
|
convertToNormalMap: 0
|
||||||
|
externalNormalMap: 0
|
||||||
|
heightScale: 0.25
|
||||||
|
normalMapFilter: 0
|
||||||
|
isReadable: 0
|
||||||
|
streamingMipmaps: 0
|
||||||
|
streamingMipmapsPriority: 0
|
||||||
|
vTOnly: 0
|
||||||
|
grayScaleToAlpha: 0
|
||||||
|
generateCubemap: 6
|
||||||
|
cubemapConvolution: 0
|
||||||
|
seamlessCubemap: 0
|
||||||
|
textureFormat: 1
|
||||||
|
maxTextureSize: 2048
|
||||||
|
textureSettings:
|
||||||
|
serializedVersion: 2
|
||||||
|
filterMode: 1
|
||||||
|
aniso: 1
|
||||||
|
mipBias: 0
|
||||||
|
wrapU: 1
|
||||||
|
wrapV: 1
|
||||||
|
wrapW: 1
|
||||||
|
nPOTScale: 0
|
||||||
|
lightmap: 0
|
||||||
|
compressionQuality: 50
|
||||||
|
spriteMode: 1
|
||||||
|
spriteExtrude: 1
|
||||||
|
spriteMeshType: 1
|
||||||
|
alignment: 0
|
||||||
|
spritePivot: {x: 0.5, y: 0.5}
|
||||||
|
spritePixelsToUnits: 100
|
||||||
|
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||||
|
spriteGenerateFallbackPhysicsShape: 1
|
||||||
|
alphaUsage: 1
|
||||||
|
alphaIsTransparency: 1
|
||||||
|
spriteTessellationDetail: -1
|
||||||
|
textureType: 8
|
||||||
|
textureShape: 1
|
||||||
|
singleChannelComponent: 0
|
||||||
|
flipbookRows: 1
|
||||||
|
flipbookColumns: 1
|
||||||
|
maxTextureSizeSet: 0
|
||||||
|
compressionQualitySet: 0
|
||||||
|
textureFormatSet: 0
|
||||||
|
ignorePngGamma: 0
|
||||||
|
applyGammaDecoding: 0
|
||||||
|
platformSettings:
|
||||||
|
- serializedVersion: 3
|
||||||
|
buildTarget: DefaultTexturePlatform
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: -1
|
||||||
|
textureCompression: 1
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 0
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||||
|
- serializedVersion: 3
|
||||||
|
buildTarget: Android
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: 47
|
||||||
|
textureCompression: 0
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 1
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||||
|
- serializedVersion: 3
|
||||||
|
buildTarget: iPhone
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: 50
|
||||||
|
textureCompression: 0
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 1
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||||
|
- serializedVersion: 3
|
||||||
|
buildTarget: Standalone
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: 12
|
||||||
|
textureCompression: 0
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 1
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||||
|
spriteSheet:
|
||||||
|
serializedVersion: 2
|
||||||
|
sprites: []
|
||||||
|
outline: []
|
||||||
|
physicsShape: []
|
||||||
|
bones: []
|
||||||
|
spriteID: 5e97eb03825dee720800000000000000
|
||||||
|
internalID: 0
|
||||||
|
vertices: []
|
||||||
|
indices:
|
||||||
|
edges: []
|
||||||
|
weights: []
|
||||||
|
secondaryTextures: []
|
||||||
|
spritePackingTag:
|
||||||
|
pSDRemoveMatte: 0
|
||||||
|
pSDShowRemoveMatteOption: 0
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/textures/ui/bounty.ab
|
||||||
|
assetBundleVariant:
|
||||||