Compare commits
62 Commits
v.1.5.1_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 | |||
|
|
ed8226641d | ||
|
|
093f14b332 | ||
|
|
0a47f14639 | ||
|
|
49d3ec38f9 | ||
|
|
d9229a681c | ||
| 3a4eb9b1bb | |||
|
|
5ff0c61668 | ||
|
|
122cc3b38b | ||
|
|
9c9fe3ec54 | ||
|
|
3eb1cf0802 | ||
|
|
56ef059eb8 | ||
|
|
ee98d9f79a | ||
|
|
2f51ae1ae6 | ||
|
|
3930c8fdd7 | ||
|
|
2867004de9 | ||
|
|
b36d71eaf3 |
@ -13,8 +13,8 @@ namespace BFEditor.Build
|
||||
|
||||
public class BuildProjectWindow : EditorWindow
|
||||
{
|
||||
private static int versionCode = 17;
|
||||
private static string versionName = "1.5.1";
|
||||
private static int versionCode = 18;
|
||||
private static string versionName = "1.6.5";
|
||||
BFPlatformOptions platform = BFPlatformOptions.AndroidDev;
|
||||
const string ANDROID_DEV_PACKAGE_NAME = "com.juzu.b6.dev.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 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\"]");
|
||||
if (!regex2.IsMatch(buildGradleText))
|
||||
{
|
||||
|
||||
@ -136,71 +136,17 @@ namespace BFEditor
|
||||
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
|
||||
string monsterConfigListLua = "{";
|
||||
@ -213,7 +159,7 @@ namespace BFEditor
|
||||
}
|
||||
}
|
||||
monsterConfigListLua += "}";
|
||||
luaScriptString = "local ids = {}\n local MONSTER_LIST = " + monsterConfigListLua + "\n";
|
||||
var luaScriptString = "local ids = {}\n local MONSTER_LIST = " + monsterConfigListLua + "\n";
|
||||
luaScriptString += @"local str = {}
|
||||
for i, name in ipairs(MONSTER_LIST) do
|
||||
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');
|
||||
end
|
||||
return ''";
|
||||
resultStr = env.DoString(luaScriptString);
|
||||
var resultStr = env.DoString(luaScriptString);
|
||||
if (resultStr.Length > 0)
|
||||
{
|
||||
foreach(var strObj in resultStr)
|
||||
@ -299,6 +245,76 @@ namespace BFEditor
|
||||
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)
|
||||
{
|
||||
failFlag = false;
|
||||
|
||||
@ -19,6 +19,10 @@ MonoBehaviour:
|
||||
- {fileID: 21300000, guid: 02ab40c4f6061e248ae99aed8cfb8c09, type: 3}
|
||||
- {fileID: 21300000, guid: 8282affdf54bc4844aa71b232a6f1fa2, type: 3}
|
||||
- {fileID: 21300000, guid: af1e5809796473549a4f0b2c7d3e8dc3, type: 3}
|
||||
- {fileID: 21300000, guid: ba8c2822d5ad5d242b447f484ba4575f, 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: e1559cf5b8a501f4fbf7fe9081997063, type: 3}
|
||||
- {fileID: 21300000, guid: 216d2e38114e808438efe51b5824272e, type: 3}
|
||||
@ -28,4 +32,4 @@ MonoBehaviour:
|
||||
- {fileID: 21300000, guid: 8fd4f500051b4a844a7d53c94975afec, type: 3}
|
||||
- {fileID: 21300000, guid: 9cac3f4b1f93a4143a1536892fe15c71, type: 3}
|
||||
- {fileID: 21300000, guid: 80d8b79692d1b7b4393ba7be095fed7b, type: 3}
|
||||
spriteNameList: f90c0ae6579237db589237db599237db5a9237db5b9237dbfa0c0ae6fb0c0ae6fc0c0ae6fd0c0ae6fe0c0ae6ff0c0ae6000d0ae6010d0ae6445b58ce
|
||||
spriteNameList: f90c0ae6579237db589237db599237db5a9237db5b9237db5c9237db5d9237db5e9237db5f9237dbfa0c0ae6fb0c0ae6fc0c0ae6fd0c0ae6fe0c0ae6ff0c0ae6000d0ae6010d0ae6445b58ce
|
||||
|
||||
@ -62,7 +62,9 @@ SpriteAtlas:
|
||||
m_MasterAtlas: {fileID: 0}
|
||||
m_PackedSprites:
|
||||
- {fileID: 21300000, guid: 8fd4f500051b4a844a7d53c94975afec, type: 3}
|
||||
- {fileID: 21300000, guid: ba8c2822d5ad5d242b447f484ba4575f, type: 3}
|
||||
- {fileID: 21300000, guid: bcae6ed3378a43947b0b55bb5c70625b, type: 3}
|
||||
- {fileID: 21300000, guid: 8747f81467f228045a66551d4a567d6d, type: 3}
|
||||
- {fileID: 21300000, guid: 02ab40c4f6061e248ae99aed8cfb8c09, type: 3}
|
||||
- {fileID: 21300000, guid: e1559cf5b8a501f4fbf7fe9081997063, type: 3}
|
||||
- {fileID: 21300000, guid: 3297fc665edcde34cb54957166a8e63c, type: 3}
|
||||
@ -72,13 +74,17 @@ SpriteAtlas:
|
||||
- {fileID: 21300000, guid: af1e5809796473549a4f0b2c7d3e8dc3, type: 3}
|
||||
- {fileID: 21300000, guid: ff48415a944684f47b1208af4d42c74d, type: 3}
|
||||
- {fileID: 21300000, guid: 9cac3f4b1f93a4143a1536892fe15c71, type: 3}
|
||||
- {fileID: 21300000, guid: 0c6437adb9cec8d42aaf032817914c06, type: 3}
|
||||
- {fileID: 21300000, guid: 314704dd76dbe8b45af5fc465a36b48c, type: 3}
|
||||
- {fileID: 21300000, guid: 8282affdf54bc4844aa71b232a6f1fa2, type: 3}
|
||||
- {fileID: 21300000, guid: 23f8691ed89b279409896acfe8179617, type: 3}
|
||||
- {fileID: 21300000, guid: 60a7914eb0d965f4eb8ca86c2067851e, type: 3}
|
||||
- {fileID: 21300000, guid: ac152d8f1401bb04c832ae227281ad3a, type: 3}
|
||||
m_PackedSpriteNamesToIndex:
|
||||
- avatar_frame_8
|
||||
- avatar_frame_15
|
||||
- avatar_frame_7
|
||||
- avatar_frame_18
|
||||
- avatar_frame_12
|
||||
- avatar_frame_3
|
||||
- avatar_frame_2
|
||||
@ -88,10 +94,12 @@ SpriteAtlas:
|
||||
- avatar_frame_14
|
||||
- avatar_frame_11
|
||||
- avatar_frame_9
|
||||
- avatar_frame_17
|
||||
- avatar_frame_5
|
||||
- avatar_frame_13
|
||||
- avatar_frame_1
|
||||
- avatar_frame_10
|
||||
- avatar_frame_16
|
||||
m_RenderDataMap: {}
|
||||
m_Tag: avatar
|
||||
m_IsVariant: 0
|
||||
|
||||
@ -41,11 +41,13 @@ MonoBehaviour:
|
||||
- {fileID: 21300000, guid: ebf7e343b1d2b79428117236afdf64cc, type: 3}
|
||||
- {fileID: 21300000, guid: 062879952e89e4648bfd885bb931b006, type: 3}
|
||||
- {fileID: 21300000, guid: d012b6cc00c51734195445a3c6d15cf7, type: 3}
|
||||
- {fileID: 21300000, guid: b6ceb1260cf406e4e867ccd7088eb8cf, type: 3}
|
||||
- {fileID: 21300000, guid: fda0b51f55b7e3747b0d57f8016ed335, type: 3}
|
||||
- {fileID: 21300000, guid: bd5b5da0992114943b34e1861598244f, type: 3}
|
||||
- {fileID: 21300000, guid: 7d9c79f30dcdc8247aab76baf0c2c6ba, type: 3}
|
||||
- {fileID: 21300000, guid: 5ae3b4c8d1b2dc944968d2a268712728, type: 3}
|
||||
- {fileID: 21300000, guid: f8571a4249dafd640b7e19c06f959315, type: 3}
|
||||
- {fileID: 21300000, guid: 23f3ef320d7dba64796bf0abd2ecdb31, type: 3}
|
||||
- {fileID: 21300000, guid: f1eb506cc169ae94da35933a571a9e24, type: 3}
|
||||
- {fileID: 21300000, guid: 3f007bc497b724f4c959944ef3ecf4ef, type: 3}
|
||||
- {fileID: 21300000, guid: 397fbe85e4725d444a9be3c60ff79387, type: 3}
|
||||
@ -86,4 +88,4 @@ MonoBehaviour:
|
||||
- {fileID: 21300000, guid: bb4e7dbdf89792644a8941a7e107e9ce, type: 3}
|
||||
- {fileID: 21300000, guid: f2e805a98206eb34da53fa101aa5593c, type: 3}
|
||||
- {fileID: 21300000, guid: 71728bda29442ce40b864aff45c2fcf9, type: 3}
|
||||
spriteNameList: 310000001f06000011061700200600002106000022060000230600002406000025060000971c1700260600005820170027060000192417001a24170028060000da271700320000003e060000707a17003f0600004006000041060000b38517004206000043060000358d170044060000450600004606000047060000330000005d0600005e0600005f06000060060000610600006206000063060000550518003400000035000000360000003700000029da00003800000039000000cbda876accda876a08e5a305e00dcedbe10dcedbe20dcedbe31d440be41d440be51d440b68d8146369d814636ad81463270ec371280ec371290ec3712a0ec3712b0ec37184439896f59c08cb6ec53cb7ec06330037881e3238881e3239881e323a881e323b881e32
|
||||
spriteNameList: 310000001f06000011061700200600002106000022060000230600002406000025060000971c1700260600005820170027060000192417001a24170028060000da271700320000003e060000707a17003f0600004006000041060000b38517004206000043060000358d170044060000f6901700450600004606000047060000330000005d060000cfee17005e0600005f06000060060000610600006206000063060000550518003400000035000000360000003700000029da00003800000039000000cbda876accda876a08e5a305e00dcedbe10dcedbe20dcedbe31d440be41d440be51d440b68d8146369d814636ad81463270ec371280ec371290ec3712a0ec3712b0ec37184439896f59c08cb6ec53cb7ec06330037881e3238881e3239881e323a881e323b881e32
|
||||
|
||||
@ -68,6 +68,7 @@ SpriteAtlas:
|
||||
- {fileID: 21300000, guid: dab912016d15a474bba88f941dbe15ee, type: 3}
|
||||
- {fileID: 21300000, guid: c1d35f3153f12a14c9c8957a905b0b28, type: 3}
|
||||
- {fileID: 21300000, guid: 08b6d902b86c0b34e92ab673197fb767, type: 3}
|
||||
- {fileID: 21300000, guid: 23f3ef320d7dba64796bf0abd2ecdb31, type: 3}
|
||||
- {fileID: 21300000, guid: f8571a4249dafd640b7e19c06f959315, type: 3}
|
||||
- {fileID: 21300000, guid: 056b0c62d8026c546bd043ae92411b15, type: 3}
|
||||
- {fileID: 21300000, guid: 643846a215ab336468ec5ce2377a6325, type: 3}
|
||||
@ -84,6 +85,7 @@ SpriteAtlas:
|
||||
- {fileID: 21300000, guid: 1fac7f85b1398064bb2fe6291b431566, type: 3}
|
||||
- {fileID: 21300000, guid: 062879952e89e4648bfd885bb931b006, type: 3}
|
||||
- {fileID: 21300000, guid: 8f0d52f5b73b61f4da2d353433c9a3eb, type: 3}
|
||||
- {fileID: 21300000, guid: b6ceb1260cf406e4e867ccd7088eb8cf, type: 3}
|
||||
- {fileID: 21300000, guid: 5f59eb2671e1f8047bb5c912ab31a4e9, type: 3}
|
||||
- {fileID: 21300000, guid: 9c32e986881e23942acd3c2aabeaeac3, type: 3}
|
||||
- {fileID: 21300000, guid: 3b1274a6d891cb545864f2d9c72f8dc1, type: 3}
|
||||
@ -142,6 +144,7 @@ SpriteAtlas:
|
||||
- 24
|
||||
- hero_s
|
||||
- frame_dec_3
|
||||
- 30_1
|
||||
- 30
|
||||
- 8
|
||||
- 14
|
||||
@ -158,6 +161,7 @@ SpriteAtlas:
|
||||
- match_1
|
||||
- 25_1
|
||||
- frame_gray_4
|
||||
- 26_1
|
||||
- frame_2
|
||||
- 36
|
||||
- avatar_1
|
||||
|
||||
@ -41,11 +41,13 @@ MonoBehaviour:
|
||||
- {fileID: 21300000, guid: 48de69353846dea4a81cda84ed28bc51, type: 3}
|
||||
- {fileID: 21300000, guid: 0acfcf388dce9b444bc19e0f50c863b6, type: 3}
|
||||
- {fileID: 21300000, guid: 7130e790e9393b74aa40cd0f1de9b2d3, type: 3}
|
||||
- {fileID: 21300000, guid: 619813fa1c7474744a61647f8e13a624, type: 3}
|
||||
- {fileID: 21300000, guid: 8125b9ddf6e08c043903a9fdaf26f7b1, type: 3}
|
||||
- {fileID: 21300000, guid: ceff0e178a3b50442854f23f561e7fed, type: 3}
|
||||
- {fileID: 21300000, guid: 83972b43f120c634090ba4b8a5b5921e, type: 3}
|
||||
- {fileID: 21300000, guid: 83831e4876c42b246b8aa584a6a4ea02, type: 3}
|
||||
- {fileID: 21300000, guid: a13c781de5ebc714a9277a90e4e0f987, type: 3}
|
||||
- {fileID: 21300000, guid: a24da717dbd3832428a87a849b1b47cc, type: 3}
|
||||
- {fileID: 21300000, guid: d743dca3726b5ca4ea81a16c41925b66, type: 3}
|
||||
- {fileID: 21300000, guid: 606933e1bb811af49a66a661c3253bd6, type: 3}
|
||||
- {fileID: 21300000, guid: 50d0ead82680c654f8bc7ead466f74ad, type: 3}
|
||||
@ -60,4 +62,4 @@ MonoBehaviour:
|
||||
- {fileID: 21300000, guid: 7eee036582b045e449aa206d20540119, type: 3}
|
||||
- {fileID: 21300000, guid: 64a08f786204a98499066d1c13de7273, type: 3}
|
||||
- {fileID: 21300000, guid: e418dc2ac39d0c84cab1807decaaba9b, type: 3}
|
||||
spriteNameList: 310000001f06000011061700200600002106000022060000230600002406000025060000971c1700260600005820170027060000192417001a24170028060000da271700320000003e060000707a17003f0600004006000041060000b38517004206000043060000358d170044060000450600004606000047060000330000005d0600005e0600005f06000060060000610600006206000063060000550518003400000035000000360000003700000029da00003800000039000000
|
||||
spriteNameList: 310000001f06000011061700200600002106000022060000230600002406000025060000971c1700260600005820170027060000192417001a24170028060000da271700320000003e060000707a17003f0600004006000041060000b38517004206000043060000358d170044060000f6901700450600004606000047060000330000005d060000cfee17005e0600005f06000060060000610600006206000063060000550518003400000035000000360000003700000029da00003800000039000000
|
||||
|
||||
@ -88,6 +88,7 @@ SpriteAtlas:
|
||||
- {fileID: 21300000, guid: 7eee036582b045e449aa206d20540119, type: 3}
|
||||
- {fileID: 21300000, guid: b970f2264d5d3474e81fae12f614b364, type: 3}
|
||||
- {fileID: 21300000, guid: ce90e6b69f2fdcf408e7e2a8c29530b5, type: 3}
|
||||
- {fileID: 21300000, guid: a24da717dbd3832428a87a849b1b47cc, type: 3}
|
||||
- {fileID: 21300000, guid: ceff0e178a3b50442854f23f561e7fed, type: 3}
|
||||
- {fileID: 21300000, guid: 0acfcf388dce9b444bc19e0f50c863b6, type: 3}
|
||||
- {fileID: 21300000, guid: 83831e4876c42b246b8aa584a6a4ea02, type: 3}
|
||||
@ -100,6 +101,7 @@ SpriteAtlas:
|
||||
- {fileID: 21300000, guid: cdb1b44ac61889b41826aba17bfb5dc3, type: 3}
|
||||
- {fileID: 21300000, guid: 45ce406af6ae6e248a58693b5d4fedb1, type: 3}
|
||||
- {fileID: 21300000, guid: a3822fea44ebbf64697628713365c523, type: 3}
|
||||
- {fileID: 21300000, guid: 619813fa1c7474744a61647f8e13a624, type: 3}
|
||||
- {fileID: 21300000, guid: 5123256b8feda2145a9350bee87ad74f, type: 3}
|
||||
- {fileID: 21300000, guid: 04d6e47bf59d2b24e925e6f6246b3ca0, type: 3}
|
||||
- {fileID: 21300000, guid: e98cb4fcad1a23943aa88d92be8013dc, type: 3}
|
||||
@ -136,6 +138,7 @@ SpriteAtlas:
|
||||
- 7_1
|
||||
- 11
|
||||
- 6
|
||||
- 30_1
|
||||
- 28
|
||||
- 25_1
|
||||
- 3
|
||||
@ -148,6 +151,7 @@ SpriteAtlas:
|
||||
- 2
|
||||
- 7
|
||||
- 18
|
||||
- 26_1
|
||||
- 19
|
||||
- 23_1
|
||||
- 34
|
||||
|
||||
@ -102,6 +102,10 @@ MonoBehaviour:
|
||||
- {fileID: 21300000, guid: 0289dfd95ee55e6449acc69bd5039473, type: 3}
|
||||
- {fileID: 21300000, guid: 6aa5348f850e9804d988b537af1e4dea, type: 3}
|
||||
- {fileID: 21300000, guid: 61dc9e158d0193943b68d7c9598310db, type: 3}
|
||||
- {fileID: 21300000, guid: 90433e6dbf11c0a4b83c4e66934b9ddd, 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: aeb11f14603e1574e94acc9a24d3bf43, type: 3}
|
||||
- {fileID: 21300000, guid: fa546455009756f4ba5a2572bc505128, type: 3}
|
||||
@ -112,4 +116,4 @@ MonoBehaviour:
|
||||
- {fileID: 21300000, guid: 899882c0d56e96d4caf5d82d2b469729, type: 3}
|
||||
- {fileID: 21300000, guid: 91e9e926c6246844aba4b734caefb6f9, type: 3}
|
||||
- {fileID: 21300000, guid: d4b21efb128aa8f4093adba3d467d268, type: 3}
|
||||
spriteNameList: 310000001f0600006000170061001700620017006300170064001700650017006600170067001700680017007e0017007f00170080001700810017008200170083001700840017008500170086001700870017009d0017009e0017009f001700a0001700a1001700a2001700a3001700a4001700a5001700a6001700bc001700200600002106000022060000230600002406000025060000260600002706000028060000320000003e0600003f0600004006000041060000420600004306000044060000450600004606000047060000330000005d0600005e0600005f06000060060000610600006206000063060000640600006506000066060000340000007c0600007d0600007e0600007f0600008006000081060000820600008306000085060000350000009b0600009c0600009d0600009e0600009f060000a0060000a1060000a2060000a3060000a406000036000000ba060000bb060000bc060000bd060000370000003800000039000000df0dcedbe00dcedbe10dcedbe20dcedbe30dcedb7ef2dcef0e84dc76
|
||||
spriteNameList: 310000001f0600006000170061001700620017006300170064001700650017006600170067001700680017007e0017007f00170080001700810017008200170083001700840017008500170086001700870017009d0017009e0017009f001700a0001700a1001700a2001700a3001700a4001700a5001700a6001700bc001700200600002106000022060000230600002406000025060000260600002706000028060000320000003e0600003f0600004006000041060000420600004306000044060000450600004606000047060000330000005d0600005e0600005f06000060060000610600006206000063060000640600006506000066060000340000007c0600007d0600007e0600007f0600008006000081060000820600008306000085060000350000009b0600009c0600009d0600009e0600009f060000a0060000a1060000a2060000a3060000a406000036000000ba060000bb060000bc060000bd060000be060000bf060000c0060000c1060000370000003800000039000000df0dcedbe00dcedbe10dcedbe20dcedbe30dcedb7ef2dcef0e84dc76
|
||||
|
||||
@ -67,6 +67,7 @@ SpriteAtlas:
|
||||
- {fileID: 21300000, guid: ee39d690829c0484d9f5694366537675, type: 3}
|
||||
- {fileID: 21300000, guid: 899882c0d56e96d4caf5d82d2b469729, type: 3}
|
||||
- {fileID: 21300000, guid: 2dd81dd0e8d3dde45b04ce5bbbdac5ef, type: 3}
|
||||
- {fileID: 21300000, guid: e17b4fd01ebd5ab4bb6bdfbdb005e160, type: 3}
|
||||
- {fileID: 21300000, guid: 47ae10e0dd6dda049902d8d63f6efb57, type: 3}
|
||||
- {fileID: 21300000, guid: 5e4a49f04ea99784f903ac251f92a546, type: 3}
|
||||
- {fileID: 21300000, guid: a36fe0216c854ac4daa8a6938d9000b5, type: 3}
|
||||
@ -78,6 +79,7 @@ SpriteAtlas:
|
||||
- {fileID: 21300000, guid: ef160b22ccb302942bd1976010391612, type: 3}
|
||||
- {fileID: 21300000, guid: 9e30f142e7408e34d92249369d9dd3ad, type: 3}
|
||||
- {fileID: 21300000, guid: fea4f86213a880344bcffd2308591e61, type: 3}
|
||||
- {fileID: 21300000, guid: 7063728264048da4695e07f5bcba0873, type: 3}
|
||||
- {fileID: 21300000, guid: d3c97c92da583664a87485c06eb51849, type: 3}
|
||||
- {fileID: 21300000, guid: d90981d2991c0014d94d5df5ba95290e, type: 3}
|
||||
- {fileID: 21300000, guid: ecce3e1346fdd394198c14a5baa13d3a, type: 3}
|
||||
@ -89,6 +91,7 @@ SpriteAtlas:
|
||||
- {fileID: 21300000, guid: 64bde744235600f4ab6a2932c33fbaf3, type: 3}
|
||||
- {fileID: 21300000, guid: ccd8f9b4a2dbb3849acea33f2022d48b, type: 3}
|
||||
- {fileID: 21300000, guid: 23ec06e4c0f1dc7498a431977c394573, type: 3}
|
||||
- {fileID: 21300000, guid: 65dff0f4aa2cc3649a05c686e9833bf2, type: 3}
|
||||
- {fileID: 21300000, guid: edbdb7f49131aa446bab8b42c0971df2, type: 3}
|
||||
- {fileID: 21300000, guid: c559a9f41a97a234c9c4d5d3ad17615f, type: 3}
|
||||
- {fileID: 21300000, guid: eb542a15a59fa5046a6931fdd87244a0, type: 3}
|
||||
@ -141,6 +144,7 @@ SpriteAtlas:
|
||||
- {fileID: 21300000, guid: 9446e32d2623be54fa0cef9d4ba40f4e, type: 3}
|
||||
- {fileID: 21300000, guid: 2771a54d6c1bdd74d9b73feeab804860, type: 3}
|
||||
- {fileID: 21300000, guid: 9503874d363c7a1469c6d05470befcb8, type: 3}
|
||||
- {fileID: 21300000, guid: 90433e6dbf11c0a4b83c4e66934b9ddd, type: 3}
|
||||
- {fileID: 21300000, guid: ad5313adf39f71241b1d922afb85c2be, type: 3}
|
||||
- {fileID: 21300000, guid: b0e700cd6e64cde43aed559a98e029dc, type: 3}
|
||||
- {fileID: 21300000, guid: 858bbfdd8f069f64d82dfd600c5e7c19, type: 3}
|
||||
@ -167,6 +171,7 @@ SpriteAtlas:
|
||||
- frame_4
|
||||
- frame_5
|
||||
- 25
|
||||
- 65
|
||||
- 22
|
||||
- 1024
|
||||
- 1026
|
||||
@ -178,6 +183,7 @@ SpriteAtlas:
|
||||
- 40
|
||||
- 18
|
||||
- 4
|
||||
- 66
|
||||
- 6
|
||||
- 31
|
||||
- 34
|
||||
@ -189,6 +195,7 @@ SpriteAtlas:
|
||||
- 27
|
||||
- 1008
|
||||
- 52
|
||||
- 67
|
||||
- 51
|
||||
- 14
|
||||
- 28
|
||||
@ -241,6 +248,7 @@ SpriteAtlas:
|
||||
- 41
|
||||
- 1002
|
||||
- 1019
|
||||
- 64
|
||||
- 54
|
||||
- 1013
|
||||
- 1005
|
||||
|
||||
@ -49,4 +49,6 @@ MonoBehaviour:
|
||||
- {fileID: 21300000, guid: ae9200875d914c44e960200e3375a623, type: 3}
|
||||
- {fileID: 21300000, guid: a8b2925bff8a069449c3aa9824357e2a, type: 3}
|
||||
- {fileID: 21300000, guid: 377ebcaae893d354fa0c18cf6af1df53, type: 3}
|
||||
spriteNameList: 684af2e4694af2e46a4af2e46b4af2e4cb8da21dcc8da21d849d74b5859d74b5869d74b5813ae87b823ae87b833ae87b843ae87b853ae87b863ae87bdffaa1dee0faa1dee1faa1dee2faa1dee3faa1dea086ca96a186ca96a286ca96a386ca96a486ca96a586ca96ba8c6a50bb8c6a50bc8c6a50b3ca3bc71033235cddc37bed4f4c9a7d504c9a7d514c9a7d524c9a7d
|
||||
- {fileID: 21300000, guid: ef009ccc29aa1fc4195729751693da5f, type: 3}
|
||||
- {fileID: 21300000, guid: 2e0823ba8d02c844d8d537fcded91e29, type: 3}
|
||||
spriteNameList: 684af2e4694af2e46a4af2e46b4af2e4cb8da21dcc8da21d849d74b5859d74b5869d74b5813ae87b823ae87b833ae87b843ae87b853ae87b863ae87bdffaa1dee0faa1dee1faa1dee2faa1dee3faa1dea086ca96a186ca96a286ca96a386ca96a486ca96a586ca96ba8c6a50bb8c6a50bc8c6a50b3ca3bc71033235cddc37bed4f4c9a7d504c9a7d514c9a7d524c9a7d534c9a7d544c9a7d
|
||||
|
||||
@ -86,12 +86,14 @@ SpriteAtlas:
|
||||
- {fileID: 21300000, guid: ffeb26b9449fa474b8118b83464df63f, type: 3}
|
||||
- {fileID: 21300000, guid: 8c92742a7afdf6b46881adea0c4b5846, type: 3}
|
||||
- {fileID: 21300000, guid: 377ebcaae893d354fa0c18cf6af1df53, type: 3}
|
||||
- {fileID: 21300000, guid: 2e0823ba8d02c844d8d537fcded91e29, type: 3}
|
||||
- {fileID: 21300000, guid: ada861ca87f0269478847b6c463e77ec, type: 3}
|
||||
- {fileID: 21300000, guid: 6b4c13fa6c8a1074e936610079fb615f, type: 3}
|
||||
- {fileID: 21300000, guid: 797a213bc738f704daa6b0bfa1cd23ad, type: 3}
|
||||
- {fileID: 21300000, guid: 6767eb4bb7d152447bb08b909b34c239, type: 3}
|
||||
- {fileID: 21300000, guid: a8b2925bff8a069449c3aa9824357e2a, type: 3}
|
||||
- {fileID: 21300000, guid: cd95e95c8e43f3448ae79f4d57256d3a, type: 3}
|
||||
- {fileID: 21300000, guid: ef009ccc29aa1fc4195729751693da5f, type: 3}
|
||||
- {fileID: 21300000, guid: 53718e7d402adb34c9303187c20ee358, type: 3}
|
||||
- {fileID: 21300000, guid: cd61c99d1fb3ae740b3f5a7399d51969, type: 3}
|
||||
- {fileID: 21300000, guid: 461a20dd07e8e3e4ca49d2ec52b47f0b, type: 3}
|
||||
@ -123,12 +125,14 @@ SpriteAtlas:
|
||||
- bounty_btn_main_4
|
||||
- bounty_chest_4
|
||||
- ui_arena_bounty_banner_4
|
||||
- ui_arena_bounty_banner_6
|
||||
- bounty_progress_1
|
||||
- bounty_dec_5
|
||||
- bounty_arena_dec_3
|
||||
- bounty_select
|
||||
- ui_arena_bounty_banner_3
|
||||
- bounty_dec_4
|
||||
- ui_arena_bounty_banner_5
|
||||
- bounty_line_1
|
||||
- bounty_bg_2
|
||||
- bounty_chest_5
|
||||
|
||||
8
Assets/arts/effects/material/battle/sfx_p0048.meta
Normal file
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 41238bac1c04e8d48bfbad0ffa24c1e2
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,52 @@
|
||||
%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: sfx_p0048_01
|
||||
m_Shader: {fileID: 4800000, guid: 35c4043aca0de3b4ebc13b2a4b500c5b, type: 3}
|
||||
m_ShaderKeywords:
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses: []
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _diss_tex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _tex:
|
||||
m_Texture: {fileID: 2800000, guid: a692c10c0adf42b44b3fc7441dc7a58f, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _tex_mask:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Floats:
|
||||
- _CULLENUM: 0
|
||||
- _MASK_UV_SPEED_CUSTOM: 0
|
||||
- _diss_alpha_clip: 0
|
||||
- _diss_clip: 0.2
|
||||
- _diss_edge_smoothness: 1.8
|
||||
- _diss_edge_width: 0.01
|
||||
- _diss_smoothness: 0.01
|
||||
- _diss_tex_rotate: 0
|
||||
- _tex_mask_rotate: 0
|
||||
- _tex_rotate: 0
|
||||
- _ztest_on: 4
|
||||
m_Colors:
|
||||
- _diss_edge_color: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _diss_tex_offset: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _tex_color: {r: 1.4142135, g: 1.4142135, b: 1.4142135, a: 1}
|
||||
- _tex_mask_uv_speed: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _tex_uv_speed: {r: 0, g: 0, b: 0, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 66773203eff9ae845a71c1649abfc939
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,52 @@
|
||||
%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: sfx_p0048_02
|
||||
m_Shader: {fileID: 4800000, guid: eac4334090c65754681f95f415e55406, type: 3}
|
||||
m_ShaderKeywords:
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses: []
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _diss_tex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _tex:
|
||||
m_Texture: {fileID: 2800000, guid: 010cc6272afb279489776c88ddc8c4a3, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _tex_mask:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Floats:
|
||||
- _CULLENUM: 0
|
||||
- _MASK_UV_SPEED_CUSTOM: 0
|
||||
- _diss_alpha_clip: 0
|
||||
- _diss_clip: 0.2
|
||||
- _diss_edge_smoothness: 1.8
|
||||
- _diss_edge_width: 0.01
|
||||
- _diss_smoothness: 0.01
|
||||
- _diss_tex_rotate: 0
|
||||
- _tex_mask_rotate: 0
|
||||
- _tex_rotate: 0
|
||||
- _ztest_on: 4
|
||||
m_Colors:
|
||||
- _diss_edge_color: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _diss_tex_offset: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _tex_color: {r: 2.1185474, g: 2.1185474, b: 2.1185474, a: 1}
|
||||
- _tex_mask_uv_speed: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _tex_uv_speed: {r: 0, g: 0, b: 0, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 978113b5d0365d34eabc30540f61bbd5
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,52 @@
|
||||
%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: sfx_p0048_04
|
||||
m_Shader: {fileID: 4800000, guid: 35c4043aca0de3b4ebc13b2a4b500c5b, type: 3}
|
||||
m_ShaderKeywords: _MASK_UV_SPEED_CUSTOM
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses: []
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _diss_tex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _tex:
|
||||
m_Texture: {fileID: 2800000, guid: 8c6405623dbe21b41842295eacf1039d, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _tex_mask:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Floats:
|
||||
- _CULLENUM: 0
|
||||
- _MASK_UV_SPEED_CUSTOM: 1
|
||||
- _diss_alpha_clip: 0
|
||||
- _diss_clip: 0.2
|
||||
- _diss_edge_smoothness: 1.8
|
||||
- _diss_edge_width: 0.01
|
||||
- _diss_smoothness: 0.01
|
||||
- _diss_tex_rotate: 0
|
||||
- _tex_mask_rotate: 0
|
||||
- _tex_rotate: 0
|
||||
- _ztest_on: 4
|
||||
m_Colors:
|
||||
- _diss_edge_color: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _diss_tex_offset: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _tex_color: {r: 2, g: 2, b: 2, a: 1}
|
||||
- _tex_mask_uv_speed: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _tex_uv_speed: {r: 0, g: 0, b: 0, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: caadc1727dc86eb4ea89bc819f403b14
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,52 @@
|
||||
%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: sfx_p0048_05
|
||||
m_Shader: {fileID: 4800000, guid: 35c4043aca0de3b4ebc13b2a4b500c5b, type: 3}
|
||||
m_ShaderKeywords: _MASK_UV_SPEED_CUSTOM
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses: []
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _diss_tex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _tex:
|
||||
m_Texture: {fileID: 2800000, guid: ac0b2158eb2b47345addf530052a571b, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _tex_mask:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Floats:
|
||||
- _CULLENUM: 0
|
||||
- _MASK_UV_SPEED_CUSTOM: 1
|
||||
- _diss_alpha_clip: 0
|
||||
- _diss_clip: 0.2
|
||||
- _diss_edge_smoothness: 1.8
|
||||
- _diss_edge_width: 0.01
|
||||
- _diss_smoothness: 0.01
|
||||
- _diss_tex_rotate: 0
|
||||
- _tex_mask_rotate: 0
|
||||
- _tex_rotate: 0
|
||||
- _ztest_on: 4
|
||||
m_Colors:
|
||||
- _diss_edge_color: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _diss_tex_offset: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _tex_color: {r: 1.0592737, g: 1.0592737, b: 1.0592737, a: 1}
|
||||
- _tex_mask_uv_speed: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _tex_uv_speed: {r: 0, g: 0, b: 0, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 1cc632cc8c1c731439678a5f6190b8bc
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,52 @@
|
||||
%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: sfx_p0048_06
|
||||
m_Shader: {fileID: 4800000, guid: 35c4043aca0de3b4ebc13b2a4b500c5b, type: 3}
|
||||
m_ShaderKeywords: _MASK_UV_SPEED_CUSTOM
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses: []
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _diss_tex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _tex:
|
||||
m_Texture: {fileID: 2800000, guid: 60693494276a755438e19c961a172b78, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _tex_mask:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Floats:
|
||||
- _CULLENUM: 0
|
||||
- _MASK_UV_SPEED_CUSTOM: 1
|
||||
- _diss_alpha_clip: 0
|
||||
- _diss_clip: 0.2
|
||||
- _diss_edge_smoothness: 1.8
|
||||
- _diss_edge_width: 0.01
|
||||
- _diss_smoothness: 0.01
|
||||
- _diss_tex_rotate: 0
|
||||
- _tex_mask_rotate: 0
|
||||
- _tex_rotate: 0
|
||||
- _ztest_on: 4
|
||||
m_Colors:
|
||||
- _diss_edge_color: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _diss_tex_offset: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _tex_color: {r: 1.0592737, g: 1.0592737, b: 1.0592737, a: 1}
|
||||
- _tex_mask_uv_speed: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _tex_uv_speed: {r: 0, g: 0, b: 0, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: daea58358fc213444a3dd6e7dcf6d299
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,52 @@
|
||||
%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: sfx_p0048_09
|
||||
m_Shader: {fileID: 4800000, guid: 35c4043aca0de3b4ebc13b2a4b500c5b, type: 3}
|
||||
m_ShaderKeywords:
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses: []
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _diss_tex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _tex:
|
||||
m_Texture: {fileID: 2800000, guid: 348a87d6a17fff54b999fd0d2298d250, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _tex_mask:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Floats:
|
||||
- _CULLENUM: 0
|
||||
- _MASK_UV_SPEED_CUSTOM: 0
|
||||
- _diss_alpha_clip: 0
|
||||
- _diss_clip: 0.2
|
||||
- _diss_edge_smoothness: 1.8
|
||||
- _diss_edge_width: 0.01
|
||||
- _diss_smoothness: 0.01
|
||||
- _diss_tex_rotate: 0
|
||||
- _tex_mask_rotate: 0
|
||||
- _tex_rotate: 0
|
||||
- _ztest_on: 4
|
||||
m_Colors:
|
||||
- _diss_edge_color: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _diss_tex_offset: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _tex_color: {r: 1.4980392, g: 1.4980392, b: 1.4980392, a: 1}
|
||||
- _tex_mask_uv_speed: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _tex_uv_speed: {r: 0, g: 0, b: 0, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 724813e100960a54e8fcad70406842e4
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,52 @@
|
||||
%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: sfx_p0048_10
|
||||
m_Shader: {fileID: 4800000, guid: 35c4043aca0de3b4ebc13b2a4b500c5b, type: 3}
|
||||
m_ShaderKeywords:
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses: []
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _diss_tex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _tex:
|
||||
m_Texture: {fileID: 2800000, guid: 72e760de9bf3844499d71cdb98bcffce, type: 3}
|
||||
m_Scale: {x: 1, y: 0.3}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _tex_mask:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Floats:
|
||||
- _CULLENUM: 0
|
||||
- _MASK_UV_SPEED_CUSTOM: 0
|
||||
- _diss_alpha_clip: 0
|
||||
- _diss_clip: 0.2
|
||||
- _diss_edge_smoothness: 1.8
|
||||
- _diss_edge_width: 0.01
|
||||
- _diss_smoothness: 0.01
|
||||
- _diss_tex_rotate: 0
|
||||
- _tex_mask_rotate: 0
|
||||
- _tex_rotate: 90
|
||||
- _ztest_on: 4
|
||||
m_Colors:
|
||||
- _diss_edge_color: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _diss_tex_offset: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _tex_color: {r: 1.4142135, g: 1.4142135, b: 1.4142135, a: 1}
|
||||
- _tex_mask_uv_speed: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _tex_uv_speed: {r: 0, g: -3, b: 0, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 7e3f5d24fafaa454c83e215e762038a1
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,52 @@
|
||||
%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: sfx_p0048_11
|
||||
m_Shader: {fileID: 4800000, guid: af7fa585a2fc03b4ca0f1e83f6d949fa, type: 3}
|
||||
m_ShaderKeywords: _USE_UV_NOSIZE
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses: []
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _tex:
|
||||
m_Texture: {fileID: 2800000, guid: 8797168b82409e743b0cf109a5ed97d4, type: 3}
|
||||
m_Scale: {x: 1, y: 0.3}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _tex_mask:
|
||||
m_Texture: {fileID: 2800000, guid: 3fce3542e554e0e488352582ccd87cb6, type: 3}
|
||||
m_Scale: {x: -0.5, y: 1}
|
||||
m_Offset: {x: 0.47, y: 0}
|
||||
- _uv_nosize_tex:
|
||||
m_Texture: {fileID: 2800000, guid: cfb3a816be17f144c9efb8951f8d4f73, type: 3}
|
||||
m_Scale: {x: 0.3, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Floats:
|
||||
- _CULLENUM: 0
|
||||
- _HIDE_Y: 0
|
||||
- _MASK_UV_SPEED_CUSTOM: 0
|
||||
- _fnl_intensity: 1
|
||||
- _fnl_size: 1
|
||||
- _tex_mask_rotate: 0
|
||||
- _tex_rotate: 90
|
||||
- _use_fnl: 0
|
||||
- _use_uv_nosize: 1
|
||||
- _uv_nosize_strength: 0.5
|
||||
- _ztest_on: 4
|
||||
m_Colors:
|
||||
- _fnl_color: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _tex_color: {r: 2.8284268, g: 2.8284268, b: 2.8284268, a: 1}
|
||||
- _tex_mask_uv_speed: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _tex_uv_speed: {r: 0, g: -0.6, b: 0, a: 0}
|
||||
- _uv_nosize_speed: {r: 1.5, g: 0, b: 0, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 712a3420a056c2a41a338cfbcef21c97
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,52 @@
|
||||
%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: sfx_p0048_12
|
||||
m_Shader: {fileID: 4800000, guid: af7fa585a2fc03b4ca0f1e83f6d949fa, type: 3}
|
||||
m_ShaderKeywords:
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses: []
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _tex:
|
||||
m_Texture: {fileID: 2800000, guid: 4a91644c634572f42944111d86973fd2, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _tex_mask:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: -0.5, y: 1}
|
||||
m_Offset: {x: 0.47, y: 0}
|
||||
- _uv_nosize_tex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 0.3, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Floats:
|
||||
- _CULLENUM: 0
|
||||
- _HIDE_Y: 0
|
||||
- _MASK_UV_SPEED_CUSTOM: 0
|
||||
- _fnl_intensity: 1
|
||||
- _fnl_size: 1
|
||||
- _tex_mask_rotate: 0
|
||||
- _tex_rotate: 0
|
||||
- _use_fnl: 0
|
||||
- _use_uv_nosize: 0
|
||||
- _uv_nosize_strength: 0.5
|
||||
- _ztest_on: 4
|
||||
m_Colors:
|
||||
- _fnl_color: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _tex_color: {r: 2.8284268, g: 2.8284268, b: 2.8284268, a: 1}
|
||||
- _tex_mask_uv_speed: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _tex_uv_speed: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _uv_nosize_speed: {r: 0.5, g: 0, b: 0, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 1e2e52da34b8ee047a45da2d1c4fb357
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,52 @@
|
||||
%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: sfx_p0048_13
|
||||
m_Shader: {fileID: 4800000, guid: 35c4043aca0de3b4ebc13b2a4b500c5b, type: 3}
|
||||
m_ShaderKeywords:
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses: []
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _diss_tex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _tex:
|
||||
m_Texture: {fileID: 2800000, guid: c7c1e531ab72b404eb60c13fd12de940, type: 3}
|
||||
m_Scale: {x: 0.5, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _tex_mask:
|
||||
m_Texture: {fileID: 2800000, guid: 31ddab80312b5134ba4180f0a0327e1a, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Floats:
|
||||
- _CULLENUM: 0
|
||||
- _MASK_UV_SPEED_CUSTOM: 0
|
||||
- _diss_alpha_clip: 0
|
||||
- _diss_clip: 0.2
|
||||
- _diss_edge_smoothness: 1.8
|
||||
- _diss_edge_width: 0.01
|
||||
- _diss_smoothness: 0.01
|
||||
- _diss_tex_rotate: 0
|
||||
- _tex_mask_rotate: 270
|
||||
- _tex_rotate: 0
|
||||
- _ztest_on: 4
|
||||
m_Colors:
|
||||
- _diss_edge_color: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _diss_tex_offset: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _tex_color: {r: 1.4980392, g: 1.4980392, b: 1.4980392, a: 1}
|
||||
- _tex_mask_uv_speed: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _tex_uv_speed: {r: -3, g: 0, b: 0, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 429b7bd64f24aa9498afe16726ec993a
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,52 @@
|
||||
%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: sfx_p0048_14
|
||||
m_Shader: {fileID: 4800000, guid: 35c4043aca0de3b4ebc13b2a4b500c5b, type: 3}
|
||||
m_ShaderKeywords:
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses: []
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _diss_tex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _tex:
|
||||
m_Texture: {fileID: 2800000, guid: b4757de2a00a6204a900c2db20906e90, type: 3}
|
||||
m_Scale: {x: -1.1, y: 1}
|
||||
m_Offset: {x: 1.05, y: 0}
|
||||
- _tex_mask:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Floats:
|
||||
- _CULLENUM: 0
|
||||
- _MASK_UV_SPEED_CUSTOM: 0
|
||||
- _diss_alpha_clip: 0
|
||||
- _diss_clip: 0.2
|
||||
- _diss_edge_smoothness: 1.8
|
||||
- _diss_edge_width: 0.01
|
||||
- _diss_smoothness: 0.01
|
||||
- _diss_tex_rotate: 0
|
||||
- _tex_mask_rotate: 0
|
||||
- _tex_rotate: 0
|
||||
- _ztest_on: 4
|
||||
m_Colors:
|
||||
- _diss_edge_color: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _diss_tex_offset: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _tex_color: {r: 1.4980392, g: 1.4980392, b: 1.4980392, a: 1}
|
||||
- _tex_mask_uv_speed: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _tex_uv_speed: {r: 0, g: 0, b: 0, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 6cf5dfc533fb12645b8968e6d944621b
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,52 @@
|
||||
%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: sfx_p0048_15
|
||||
m_Shader: {fileID: 4800000, guid: 35c4043aca0de3b4ebc13b2a4b500c5b, type: 3}
|
||||
m_ShaderKeywords:
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses: []
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _diss_tex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _tex:
|
||||
m_Texture: {fileID: 2800000, guid: be63e4ae0bbb7834686e5a44c7936533, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _tex_mask:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Floats:
|
||||
- _CULLENUM: 0
|
||||
- _MASK_UV_SPEED_CUSTOM: 0
|
||||
- _diss_alpha_clip: 0
|
||||
- _diss_clip: 0.2
|
||||
- _diss_edge_smoothness: 1.8
|
||||
- _diss_edge_width: 0.01
|
||||
- _diss_smoothness: 0.01
|
||||
- _diss_tex_rotate: 0
|
||||
- _tex_mask_rotate: 0
|
||||
- _tex_rotate: 90
|
||||
- _ztest_on: 4
|
||||
m_Colors:
|
||||
- _diss_edge_color: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _diss_tex_offset: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _tex_color: {r: 1.4142135, g: 1.4142135, b: 1.4142135, a: 1}
|
||||
- _tex_mask_uv_speed: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _tex_uv_speed: {r: 0, g: 0, b: 0, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 02eebc6bc7ce3754680c1e90d6ca92a2
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,52 @@
|
||||
%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: sfx_p0048_16
|
||||
m_Shader: {fileID: 4800000, guid: 35c4043aca0de3b4ebc13b2a4b500c5b, type: 3}
|
||||
m_ShaderKeywords:
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses: []
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _diss_tex:
|
||||
m_Texture: {fileID: 2800000, guid: e051489080af67d4c9abc3aee5d6014e, type: 3}
|
||||
m_Scale: {x: 0.5, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _tex:
|
||||
m_Texture: {fileID: 2800000, guid: 5afa027e36229bc44aafa200bb875d3c, type: 3}
|
||||
m_Scale: {x: 1, y: 0.5}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _tex_mask:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Floats:
|
||||
- _CULLENUM: 0
|
||||
- _MASK_UV_SPEED_CUSTOM: 0
|
||||
- _diss_alpha_clip: 1
|
||||
- _diss_clip: 0.2
|
||||
- _diss_edge_smoothness: 1.07
|
||||
- _diss_edge_width: 0.363
|
||||
- _diss_smoothness: 0
|
||||
- _diss_tex_rotate: 0
|
||||
- _tex_mask_rotate: 0
|
||||
- _tex_rotate: 90
|
||||
- _ztest_on: 4
|
||||
m_Colors:
|
||||
- _diss_edge_color: {r: 0.38956904, g: 1, b: 0, a: 1}
|
||||
- _diss_tex_offset: {r: 1, g: 0, b: 0, a: 0}
|
||||
- _tex_color: {r: 1.4142135, g: 1.4142135, b: 1.4142135, a: 1}
|
||||
- _tex_mask_uv_speed: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _tex_uv_speed: {r: 0, g: -1, b: 0, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 3b40b33a632ebec49bba3edf815f6fc8
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,52 @@
|
||||
%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: sfx_p0048_18
|
||||
m_Shader: {fileID: 4800000, guid: eac4334090c65754681f95f415e55406, type: 3}
|
||||
m_ShaderKeywords:
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses: []
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _diss_tex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _tex:
|
||||
m_Texture: {fileID: 2800000, guid: 9b44c336736805445b049617ae237dc9, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _tex_mask:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Floats:
|
||||
- _CULLENUM: 0
|
||||
- _MASK_UV_SPEED_CUSTOM: 0
|
||||
- _diss_alpha_clip: 0
|
||||
- _diss_clip: 0.2
|
||||
- _diss_edge_smoothness: 1.8
|
||||
- _diss_edge_width: 0.01
|
||||
- _diss_smoothness: 0.01
|
||||
- _diss_tex_rotate: 0
|
||||
- _tex_mask_rotate: 0
|
||||
- _tex_rotate: 0
|
||||
- _ztest_on: 4
|
||||
m_Colors:
|
||||
- _diss_edge_color: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _diss_tex_offset: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _tex_color: {r: 2.8284268, g: 2.8284268, b: 2.8284268, a: 1}
|
||||
- _tex_mask_uv_speed: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _tex_uv_speed: {r: 6, g: 0, b: 0, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: bff2d31327cbe824ea8eef7c0a687f22
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,52 @@
|
||||
%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: sfx_p0048_19
|
||||
m_Shader: {fileID: 4800000, guid: 35c4043aca0de3b4ebc13b2a4b500c5b, type: 3}
|
||||
m_ShaderKeywords:
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses: []
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _diss_tex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _tex:
|
||||
m_Texture: {fileID: 2800000, guid: bca3b994819c69749b8b6330cbfc1a30, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _tex_mask:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Floats:
|
||||
- _CULLENUM: 0
|
||||
- _MASK_UV_SPEED_CUSTOM: 0
|
||||
- _diss_alpha_clip: 0
|
||||
- _diss_clip: 0.2
|
||||
- _diss_edge_smoothness: 1.8
|
||||
- _diss_edge_width: 0.01
|
||||
- _diss_smoothness: 0.01
|
||||
- _diss_tex_rotate: 0
|
||||
- _tex_mask_rotate: 0
|
||||
- _tex_rotate: 0
|
||||
- _ztest_on: 4
|
||||
m_Colors:
|
||||
- _diss_edge_color: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _diss_tex_offset: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _tex_color: {r: 2.8284268, g: 2.8284268, b: 2.8284268, a: 1}
|
||||
- _tex_mask_uv_speed: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _tex_uv_speed: {r: 4, g: 0, b: 0, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d197dda1c9bca4f449051e81ecd3f0aa
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,52 @@
|
||||
%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: sfx_p0048_20
|
||||
m_Shader: {fileID: 4800000, guid: 35c4043aca0de3b4ebc13b2a4b500c5b, type: 3}
|
||||
m_ShaderKeywords:
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses: []
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _diss_tex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _tex:
|
||||
m_Texture: {fileID: 2800000, guid: d4053741c09645c45b0f0a1c74e089dc, type: 3}
|
||||
m_Scale: {x: 1, y: -1}
|
||||
m_Offset: {x: 0, y: 1}
|
||||
- _tex_mask:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Floats:
|
||||
- _CULLENUM: 0
|
||||
- _MASK_UV_SPEED_CUSTOM: 0
|
||||
- _diss_alpha_clip: 0
|
||||
- _diss_clip: 0.2
|
||||
- _diss_edge_smoothness: 1.8
|
||||
- _diss_edge_width: 0.01
|
||||
- _diss_smoothness: 0.01
|
||||
- _diss_tex_rotate: 0
|
||||
- _tex_mask_rotate: 0
|
||||
- _tex_rotate: 0
|
||||
- _ztest_on: 4
|
||||
m_Colors:
|
||||
- _diss_edge_color: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _diss_tex_offset: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _tex_color: {r: 1.4142135, g: 1.4142135, b: 1.4142135, a: 1}
|
||||
- _tex_mask_uv_speed: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _tex_uv_speed: {r: 0, g: 0, b: 0, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f551f1b3552acf1478898791c3ca865c
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,52 @@
|
||||
%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: sfx_p0048_21
|
||||
m_Shader: {fileID: 4800000, guid: 35c4043aca0de3b4ebc13b2a4b500c5b, type: 3}
|
||||
m_ShaderKeywords:
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses: []
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _diss_tex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _tex:
|
||||
m_Texture: {fileID: 2800000, guid: 7121bd58481cc3a41940c6488b7846c6, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _tex_mask:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Floats:
|
||||
- _CULLENUM: 0
|
||||
- _MASK_UV_SPEED_CUSTOM: 0
|
||||
- _diss_alpha_clip: 0
|
||||
- _diss_clip: 0.2
|
||||
- _diss_edge_smoothness: 1.8
|
||||
- _diss_edge_width: 0.01
|
||||
- _diss_smoothness: 0.01
|
||||
- _diss_tex_rotate: 0
|
||||
- _tex_mask_rotate: 0
|
||||
- _tex_rotate: 0
|
||||
- _ztest_on: 4
|
||||
m_Colors:
|
||||
- _diss_edge_color: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _diss_tex_offset: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _tex_color: {r: 1.0592737, g: 1.0592737, b: 1.0592737, a: 1}
|
||||
- _tex_mask_uv_speed: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _tex_uv_speed: {r: 0, g: 0, b: 0, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 6e56e52f42a5ab744910e7095ffe7c21
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
BIN
Assets/arts/effects/texture/fire/fire_yjs_0001.png
Normal file
|
After Width: | Height: | Size: 76 KiB |
132
Assets/arts/effects/texture/fire/fire_yjs_0001.png.meta
Normal file
@ -0,0 +1,132 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 60693494276a755438e19c961a172b78
|
||||
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: 0
|
||||
wrapV: 0
|
||||
wrapW: 0
|
||||
nPOTScale: 1
|
||||
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: 1
|
||||
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: 1
|
||||
- serializedVersion: 3
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 1
|
||||
- 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:
|
||||
assetBundleVariant:
|
||||
BIN
Assets/arts/effects/texture/mask/fx_mask_a24.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
132
Assets/arts/effects/texture/mask/fx_mask_a24.png.meta
Normal file
@ -0,0 +1,132 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 31ddab80312b5134ba4180f0a0327e1a
|
||||
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: 0
|
||||
wrapV: 0
|
||||
wrapW: 0
|
||||
nPOTScale: 1
|
||||
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
|
||||
- serializedVersion: 3
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
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:
|
||||
assetBundleVariant:
|
||||
BIN
Assets/arts/effects/texture/noise/fx_noise_b2t.png
Normal file
|
After Width: | Height: | Size: 29 KiB |
120
Assets/arts/effects/texture/noise/fx_noise_b2t.png.meta
Normal file
@ -0,0 +1,120 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 5afa027e36229bc44aafa200bb875d3c
|
||||
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: 0
|
||||
wrapV: 0
|
||||
wrapW: 0
|
||||
nPOTScale: 1
|
||||
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: 0
|
||||
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:
|
||||
assetBundleVariant:
|
||||
BIN
Assets/arts/effects/texture/other/fx_b6_b147.png
Normal file
|
After Width: | Height: | Size: 7.4 KiB |
132
Assets/arts/effects/texture/other/fx_b6_b147.png.meta
Normal file
@ -0,0 +1,132 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d4053741c09645c45b0f0a1c74e089dc
|
||||
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: 1
|
||||
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: Standalone
|
||||
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:
|
||||
assetBundleVariant:
|
||||
BIN
Assets/arts/effects/texture/smoke/fx_smoke_a265_b02.png
Normal file
|
After Width: | Height: | Size: 45 KiB |
132
Assets/arts/effects/texture/smoke/fx_smoke_a265_b02.png.meta
Normal file
@ -0,0 +1,132 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 4a91644c634572f42944111d86973fd2
|
||||
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: 0
|
||||
wrapV: 0
|
||||
wrapW: 0
|
||||
nPOTScale: 1
|
||||
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: Standalone
|
||||
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:
|
||||
assetBundleVariant:
|
||||
8
Assets/arts/spines/characters/p0048.meta
Normal file
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 4678cfd41339bfa4bbca5679f9fb4c90
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
76
Assets/arts/spines/characters/p0048/p0048.atlas.txt
Normal file
@ -0,0 +1,76 @@
|
||||
p0048.png
|
||||
size:512,512
|
||||
filter:Linear,Linear
|
||||
h_hand_l
|
||||
bounds:198,389,24,31
|
||||
offsets:1,1,26,33
|
||||
rotate:90
|
||||
h_hand_l_2
|
||||
bounds:256,438,54,73
|
||||
h_hand_r
|
||||
bounds:164,388,25,32
|
||||
offsets:1,1,27,34
|
||||
rotate:90
|
||||
h_hand_r_1
|
||||
bounds:1,44,35,50
|
||||
offsets:1,1,37,52
|
||||
h_hand_r_2
|
||||
bounds:367,476,35,72
|
||||
rotate:90
|
||||
h_head
|
||||
bounds:81,314,76,88
|
||||
h_leg_l_1
|
||||
bounds:38,55,39,49
|
||||
h_leg_r_1
|
||||
bounds:256,402,34,47
|
||||
rotate:90
|
||||
h_spine_1
|
||||
bounds:164,415,90,96
|
||||
hand_l
|
||||
bounds:441,465,46,52
|
||||
offsets:1,1,48,54
|
||||
rotate:90
|
||||
hand_l_2
|
||||
bounds:28,233,46,74
|
||||
offsets:1,1,48,76
|
||||
hand_r_1
|
||||
bounds:49,8,34,45
|
||||
offsets:1,1,36,47
|
||||
hand_r_2
|
||||
bounds:1,96,25,68
|
||||
offsets:1,1,27,70
|
||||
head
|
||||
bounds:81,404,81,107
|
||||
offsets:1,1,83,109
|
||||
leg_l_1
|
||||
bounds:1,2,40,46
|
||||
offsets:1,1,42,48
|
||||
rotate:90
|
||||
leg_l_2
|
||||
bounds:367,424,50,52
|
||||
rotate:90
|
||||
leg_r_1
|
||||
bounds:461,425,29,38
|
||||
offsets:1,1,31,40
|
||||
leg_r_2
|
||||
bounds:421,425,38,38
|
||||
offsets:1,1,40,40
|
||||
leg_r_3
|
||||
bounds:492,417,46,19
|
||||
offsets:1,1,48,21
|
||||
rotate:90
|
||||
spine_1
|
||||
bounds:28,106,45,56
|
||||
offsets:1,1,47,58
|
||||
spine_l_1
|
||||
bounds:312,448,53,63
|
||||
offsets:1,1,55,65
|
||||
spine_r_1
|
||||
bounds:28,164,39,67
|
||||
offsets:1,1,41,69
|
||||
weapon
|
||||
bounds:1,309,78,202
|
||||
offsets:1,1,80,204
|
||||
yinying
|
||||
bounds:1,166,141,25
|
||||
rotate:90
|
||||
7
Assets/arts/spines/characters/p0048/p0048.atlas.txt.meta
Normal file
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d7d237a9b71c0484494d336bf6b5c2bf
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName: arts/spines/characters/p0048.ab
|
||||
assetBundleVariant:
|
||||
BIN
Assets/arts/spines/characters/p0048/p0048.png
Normal file
|
After Width: | Height: | Size: 81 KiB |
120
Assets/arts/spines/characters/p0048/p0048.png.meta
Normal file
@ -0,0 +1,120 @@
|
||||
fileFormatVersion: 2
|
||||
guid: fa71367772e397d40a4e2f6010ac944c
|
||||
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/p0048.ab
|
||||
assetBundleVariant:
|
||||
BIN
Assets/arts/spines/characters/p0048/p0048.skel.bytes
Normal file
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 4be211d1e5189be44874b53b0fb56750
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName: arts/spines/characters/p0048.ab
|
||||
assetBundleVariant:
|
||||
17
Assets/arts/spines/characters/p0048/p0048_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: p0048_atlas
|
||||
m_EditorClassIdentifier:
|
||||
atlasFile: {fileID: 4900000, guid: d7d237a9b71c0484494d336bf6b5c2bf, type: 3}
|
||||
materials:
|
||||
- {fileID: 2100000, guid: 55b6f6497a8aaf943b45f18249655146, type: 2}
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 80210d782848fe04a9f6fb1e8103843d
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 11400000
|
||||
userData:
|
||||
assetBundleName: arts/spines/characters/p0048.ab
|
||||
assetBundleVariant:
|
||||
40
Assets/arts/spines/characters/p0048/p0048_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: p0048_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: fa71367772e397d40a4e2f6010ac944c, 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: 55b6f6497a8aaf943b45f18249655146
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName: arts/spines/characters/p0048.ab
|
||||
assetBundleVariant:
|
||||
31
Assets/arts/spines/characters/p0048/p0048_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: p0048_skeletondata
|
||||
m_EditorClassIdentifier:
|
||||
atlasAssets:
|
||||
- {fileID: 11400000, guid: 80210d782848fe04a9f6fb1e8103843d, type: 2}
|
||||
scale: 0.01
|
||||
skeletonJSON: {fileID: 4900000, guid: 4be211d1e5189be44874b53b0fb56750, 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: e93d5e3267b65604ebf1fbf4f017fb87
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 11400000
|
||||
userData:
|
||||
assetBundleName: arts/spines/characters/p0048.ab
|
||||
assetBundleVariant:
|
||||
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_5.meta
Normal file
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 916e62e83c6a43145ba55532fe813794
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,77 @@
|
||||
ui_arena_bounty_banner_5.png
|
||||
size:2048,2048
|
||||
filter:Linear,Linear
|
||||
1
|
||||
bounds:946,1585,335,175
|
||||
bj
|
||||
bounds:2,1762,1280,271
|
||||
guang
|
||||
bounds:2,1489,942,271
|
||||
offsets:102,1,1081,273
|
||||
ren_1
|
||||
bounds:273,935,58,46
|
||||
offsets:1,1,60,48
|
||||
rotate:90
|
||||
ren_10
|
||||
bounds:143,995,177,222
|
||||
offsets:1,1,179,224
|
||||
ren_11
|
||||
bounds:1503,1797,49,43
|
||||
offsets:1,2,51,46
|
||||
ren_12
|
||||
bounds:1848,1870,185,163
|
||||
ren_13
|
||||
bounds:2,369,129,160
|
||||
offsets:1,1,131,162
|
||||
ren_14
|
||||
bounds:2,193,82,68
|
||||
offsets:1,1,84,70
|
||||
rotate:90
|
||||
ren_15
|
||||
bounds:1405,1772,96,68
|
||||
offsets:1,1,98,70
|
||||
ren_16
|
||||
bounds:1284,1770,70,119
|
||||
offsets:1,1,72,121
|
||||
rotate:90
|
||||
ren_17
|
||||
bounds:817,1325,106,162
|
||||
ren_2
|
||||
bounds:1028,1502,79,81
|
||||
offsets:1,1,81,83
|
||||
ren_3
|
||||
bounds:946,1493,80,90
|
||||
offsets:1,1,82,92
|
||||
ren_4
|
||||
bounds:2,868,349,139
|
||||
offsets:1,1,352,141
|
||||
rotate:90
|
||||
ren_5
|
||||
bounds:648,1282,167,205
|
||||
offsets:1,1,169,207
|
||||
ren_6
|
||||
bounds:2,531,141,161
|
||||
ren_7
|
||||
bounds:143,889,104,128
|
||||
offsets:1,1,106,130
|
||||
rotate:90
|
||||
ren_8
|
||||
bounds:2,694,172,145
|
||||
rotate:90
|
||||
ren_9
|
||||
bounds:2,277,80,90
|
||||
offsets:1,1,82,92
|
||||
teng_1
|
||||
bounds:817,1289,34,68
|
||||
rotate:90
|
||||
teng_2
|
||||
bounds:326,1229,169,258
|
||||
teng_3
|
||||
bounds:1284,1842,562,191
|
||||
offsets:342,0,904,191
|
||||
teng_4
|
||||
bounds:2,1219,322,268
|
||||
teng_5
|
||||
bounds:497,1255,149,232
|
||||
youshou
|
||||
bounds:84,309,44,58
|
||||
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 22d025cd943edad49a084ba97c95d7b3
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName: arts/spines/ui/ui_arena_bounty_banner_5.ab
|
||||
assetBundleVariant:
|
||||
|
After Width: | Height: | Size: 1.2 MiB |
@ -0,0 +1,120 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d542d93f1add3f84eb550ec4a39d4346
|
||||
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_5.ab
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: ac87675f929076249b4905e8043100ce
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName: arts/spines/ui/ui_arena_bounty_banner_5.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_5_atlas
|
||||
m_EditorClassIdentifier:
|
||||
atlasFile: {fileID: 4900000, guid: 22d025cd943edad49a084ba97c95d7b3, type: 3}
|
||||
materials:
|
||||
- {fileID: 2100000, guid: a60fb5b936296ee4abb5f8be2b81c88b, type: 2}
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: ccbc7ce4d4da99d4796faf0f02151708
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 11400000
|
||||
userData:
|
||||
assetBundleName: arts/spines/ui/ui_arena_bounty_banner_5.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_5_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: d542d93f1add3f84eb550ec4a39d4346, 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: a60fb5b936296ee4abb5f8be2b81c88b
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName: arts/spines/ui/ui_arena_bounty_banner_5.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_5_skeletondata
|
||||
m_EditorClassIdentifier:
|
||||
atlasAssets:
|
||||
- {fileID: 11400000, guid: ccbc7ce4d4da99d4796faf0f02151708, type: 2}
|
||||
scale: 0.01
|
||||
skeletonJSON: {fileID: 4900000, guid: ac87675f929076249b4905e8043100ce, 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: 9d85b7f0730997d458d9e0234fede20b
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 11400000
|
||||
userData:
|
||||
assetBundleName: arts/spines/ui/ui_arena_bounty_banner_5.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:
|
||||