Merge branch 'dev_spine' of https://git.wdd817.link/puxuan/c1_unity into dev_spine
@ -85,6 +85,9 @@ namespace BFEditor
|
|||||||
{
|
{
|
||||||
//加载lua配置测试
|
//加载lua配置测试
|
||||||
LuaEnv env = new LuaEnv();
|
LuaEnv env = new LuaEnv();
|
||||||
|
env.DoString(@"
|
||||||
|
print('当前 Lua 版本: ' .. _VERSION) -- 输出 Lua 5.1
|
||||||
|
");
|
||||||
env.AddLoader((ref string scriptPath) =>
|
env.AddLoader((ref string scriptPath) =>
|
||||||
{
|
{
|
||||||
var text = LoadGameLuaScriptText(scriptPath, isDeveloper);
|
var text = LoadGameLuaScriptText(scriptPath, isDeveloper);
|
||||||
@ -136,58 +139,58 @@ namespace BFEditor
|
|||||||
var configFileInfos = configDirInfo.GetFiles(suffix, SearchOption.TopDirectoryOnly);
|
var configFileInfos = configDirInfo.GetFiles(suffix, SearchOption.TopDirectoryOnly);
|
||||||
|
|
||||||
// 检查棋盘文件格式
|
// 检查棋盘文件格式
|
||||||
checkBoard("chapter_board", env, sb);
|
// checkBoard("chapter_board", env, sb);
|
||||||
checkBoard("chapter_board_bossrush", env, sb);
|
// checkBoard("chapter_board_bossrush", env, sb);
|
||||||
checkBoard("chapter_board_daily_challenge", env, sb);
|
// checkBoard("chapter_board_daily_challenge", env, sb);
|
||||||
checkBoard("chapter_board_dungeon_armor", env, sb);
|
// checkBoard("chapter_board_dungeon_armor", env, sb);
|
||||||
checkBoard("chapter_board_dungeon_equip", env, sb);
|
// checkBoard("chapter_board_dungeon_equip", env, sb);
|
||||||
checkBoard("chapter_board_dungeon_gold", env, sb);
|
// checkBoard("chapter_board_dungeon_gold", env, sb);
|
||||||
checkBoard("chapter_board_dungeon_shards", env, sb);
|
// checkBoard("chapter_board_dungeon_shards", env, sb);
|
||||||
checkBoard("chapter_board_rune", env, sb);
|
// checkBoard("chapter_board_rune", env, sb);
|
||||||
checkBoard("activity_pvp_board", env, sb);
|
// checkBoard("activity_pvp_board", env, sb);
|
||||||
checkBoard("arena_board", env, sb);
|
// checkBoard("arena_board", env, sb);
|
||||||
|
|
||||||
|
|
||||||
// 检查monster
|
// 检查monster
|
||||||
string monsterConfigListLua = "{";
|
// string monsterConfigListLua = "{";
|
||||||
foreach (var file in configFileInfos)
|
// foreach (var file in configFileInfos)
|
||||||
{
|
// {
|
||||||
var fileName = file.Name.ToLower();
|
// var fileName = file.Name.ToLower();
|
||||||
if(fileName.Contains("monster_"))
|
// if(fileName.Contains("monster_"))
|
||||||
{
|
// {
|
||||||
monsterConfigListLua += "'" + fileName.Replace(".lua", "").Replace(".bytes", "") + "',";
|
// monsterConfigListLua += "'" + fileName.Replace(".lua", "").Replace(".bytes", "") + "',";
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
monsterConfigListLua += "}";
|
// monsterConfigListLua += "}";
|
||||||
var luaScriptString = "local ids = {}\n local MONSTER_LIST = " + monsterConfigListLua + "\n";
|
// var luaScriptString = "local ids = {}\n local MONSTER_LIST = " + monsterConfigListLua + "\n";
|
||||||
luaScriptString += @"local str = {}
|
// luaScriptString += @"local str = {}
|
||||||
for i, name in ipairs(MONSTER_LIST) do
|
// for i, name in ipairs(MONSTER_LIST) do
|
||||||
if name ~= 'monster_base' and name ~= 'monster_position' and name ~= 'monster_position_base' then
|
// if name ~= 'monster_base' and name ~= 'monster_position' and name ~= 'monster_position_base' then
|
||||||
local data = require('app/config/' .. name).data
|
// local data = require('app/config/' .. name).data
|
||||||
for k, v in pairs(data) do
|
// for k, v in pairs(data) do
|
||||||
if ids[k] then
|
// if ids[k] then
|
||||||
table.insert(str, name .. '和' .. ids[k] .. '存在相同的mosnter id:' .. k)
|
// table.insert(str, name .. '和' .. ids[k] .. '存在相同的mosnter id:' .. k)
|
||||||
end
|
// end
|
||||||
ids[k] = name
|
// ids[k] = name
|
||||||
end
|
// end
|
||||||
end
|
// end
|
||||||
end
|
// end
|
||||||
if #str > 0 then
|
// if #str > 0 then
|
||||||
return table.concat(str, '\n');
|
// return table.concat(str, '\n');
|
||||||
end
|
// end
|
||||||
return ''";
|
// return ''";
|
||||||
var resultStr = env.DoString(luaScriptString);
|
// var resultStr = env.DoString(luaScriptString);
|
||||||
if (resultStr.Length > 0)
|
// if (resultStr.Length > 0)
|
||||||
{
|
// {
|
||||||
foreach(var strObj in resultStr)
|
// foreach(var strObj in resultStr)
|
||||||
{
|
// {
|
||||||
var str = Convert.ToString(strObj);
|
// var str = Convert.ToString(strObj);
|
||||||
if(!String.IsNullOrEmpty(str))
|
// if(!String.IsNullOrEmpty(str))
|
||||||
{
|
// {
|
||||||
sb.Append(str + "\n");
|
// sb.Append(str + "\n");
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
// 检查怪物的坐标信息
|
// 检查怪物的坐标信息
|
||||||
// var luaScriptString2 = @"local MONSTER_POSITION_KEY = { 'monster_1','monster_2','monster_3','monster_4','monster_5','monster_6','monster_7','monster_8','monster_9','monster_10','monster_11','monster_12'}
|
// var luaScriptString2 = @"local MONSTER_POSITION_KEY = { 'monster_1','monster_2','monster_3','monster_4','monster_5','monster_6','monster_7','monster_8','monster_9','monster_10','monster_11','monster_12'}
|
||||||
// local list = {'enemy_id_1', 'enemy_id_2', 'enemy_id_3'}
|
// local list = {'enemy_id_1', 'enemy_id_2', 'enemy_id_3'}
|
||||||
|
|||||||
@ -78,6 +78,7 @@ namespace BFEditor
|
|||||||
psi.RedirectStandardOutput = true; //由调用程序获取输出信息
|
psi.RedirectStandardOutput = true; //由调用程序获取输出信息
|
||||||
psi.RedirectStandardError = true; //重定向标准错误输出
|
psi.RedirectStandardError = true; //重定向标准错误输出
|
||||||
psi.CreateNoWindow = true; //不显示程序窗口
|
psi.CreateNoWindow = true; //不显示程序窗口
|
||||||
|
psi.StandardOutputEncoding = System.Text.Encoding.UTF8; // 核心:指定UTF-8解码
|
||||||
p.StartInfo = psi;
|
p.StartInfo = psi;
|
||||||
p.Start();
|
p.Start();
|
||||||
|
|
||||||
|
|||||||
457
Assets/arts/animations/ui/common/reward_cell_pop.anim
Executable file
@ -0,0 +1,457 @@
|
|||||||
|
%YAML 1.1
|
||||||
|
%TAG !u! tag:unity3d.com,2011:
|
||||||
|
--- !u!74 &7400000
|
||||||
|
AnimationClip:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_Name: reward_cell_pop
|
||||||
|
serializedVersion: 6
|
||||||
|
m_Legacy: 0
|
||||||
|
m_Compressed: 0
|
||||||
|
m_UseHighQualityCurve: 1
|
||||||
|
m_RotationCurves: []
|
||||||
|
m_CompressedRotationCurves: []
|
||||||
|
m_EulerCurves: []
|
||||||
|
m_PositionCurves: []
|
||||||
|
m_ScaleCurves:
|
||||||
|
- curve:
|
||||||
|
serializedVersion: 2
|
||||||
|
m_Curve:
|
||||||
|
- serializedVersion: 3
|
||||||
|
time: 0
|
||||||
|
value: {x: 0, y: 0, z: 0}
|
||||||
|
inSlope: {x: 0, y: 0, z: 0}
|
||||||
|
outSlope: {x: 0, y: 0, z: 0}
|
||||||
|
tangentMode: 0
|
||||||
|
weightedMode: 0
|
||||||
|
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
|
||||||
|
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
|
||||||
|
- serializedVersion: 3
|
||||||
|
time: 0.083333336
|
||||||
|
value: {x: 1.1, y: 1.1, z: 1.1}
|
||||||
|
inSlope: {x: 0, y: 0, z: 0}
|
||||||
|
outSlope: {x: 0, y: 0, z: 0}
|
||||||
|
tangentMode: 0
|
||||||
|
weightedMode: 0
|
||||||
|
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
|
||||||
|
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
|
||||||
|
- serializedVersion: 3
|
||||||
|
time: 0.28333333
|
||||||
|
value: {x: 1, y: 1, z: 1}
|
||||||
|
inSlope: {x: 0, y: 0, z: 0}
|
||||||
|
outSlope: {x: 0, y: 0, z: 0}
|
||||||
|
tangentMode: 0
|
||||||
|
weightedMode: 0
|
||||||
|
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
|
||||||
|
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
|
||||||
|
m_PreInfinity: 2
|
||||||
|
m_PostInfinity: 2
|
||||||
|
m_RotationOrder: 4
|
||||||
|
path:
|
||||||
|
m_FloatCurves:
|
||||||
|
- curve:
|
||||||
|
serializedVersion: 2
|
||||||
|
m_Curve:
|
||||||
|
- serializedVersion: 3
|
||||||
|
time: 0
|
||||||
|
value: 0.5
|
||||||
|
inSlope: 0
|
||||||
|
outSlope: 0
|
||||||
|
tangentMode: 136
|
||||||
|
weightedMode: 0
|
||||||
|
inWeight: 0.33333334
|
||||||
|
outWeight: 0.33333334
|
||||||
|
- serializedVersion: 3
|
||||||
|
time: 0.28333333
|
||||||
|
value: 0.5
|
||||||
|
inSlope: 0
|
||||||
|
outSlope: 0
|
||||||
|
tangentMode: 136
|
||||||
|
weightedMode: 0
|
||||||
|
inWeight: 0.33333334
|
||||||
|
outWeight: 0.33333334
|
||||||
|
m_PreInfinity: 2
|
||||||
|
m_PostInfinity: 2
|
||||||
|
m_RotationOrder: 4
|
||||||
|
attribute: m_Pivot.x
|
||||||
|
path:
|
||||||
|
classID: 224
|
||||||
|
script: {fileID: 0}
|
||||||
|
- curve:
|
||||||
|
serializedVersion: 2
|
||||||
|
m_Curve:
|
||||||
|
- serializedVersion: 3
|
||||||
|
time: 0
|
||||||
|
value: 0.5
|
||||||
|
inSlope: 0
|
||||||
|
outSlope: 0
|
||||||
|
tangentMode: 136
|
||||||
|
weightedMode: 0
|
||||||
|
inWeight: 0.33333334
|
||||||
|
outWeight: 0.33333334
|
||||||
|
- serializedVersion: 3
|
||||||
|
time: 0.28333333
|
||||||
|
value: 0.5
|
||||||
|
inSlope: 0
|
||||||
|
outSlope: 0
|
||||||
|
tangentMode: 136
|
||||||
|
weightedMode: 0
|
||||||
|
inWeight: 0.33333334
|
||||||
|
outWeight: 0.33333334
|
||||||
|
m_PreInfinity: 2
|
||||||
|
m_PostInfinity: 2
|
||||||
|
m_RotationOrder: 4
|
||||||
|
attribute: m_Pivot.y
|
||||||
|
path:
|
||||||
|
classID: 224
|
||||||
|
script: {fileID: 0}
|
||||||
|
- curve:
|
||||||
|
serializedVersion: 2
|
||||||
|
m_Curve:
|
||||||
|
- serializedVersion: 3
|
||||||
|
time: 0
|
||||||
|
value: 98
|
||||||
|
inSlope: 0
|
||||||
|
outSlope: 0
|
||||||
|
tangentMode: 136
|
||||||
|
weightedMode: 0
|
||||||
|
inWeight: 0.33333334
|
||||||
|
outWeight: 0.33333334
|
||||||
|
- serializedVersion: 3
|
||||||
|
time: 0.28333333
|
||||||
|
value: 98
|
||||||
|
inSlope: 0
|
||||||
|
outSlope: 0
|
||||||
|
tangentMode: 136
|
||||||
|
weightedMode: 0
|
||||||
|
inWeight: 0.33333334
|
||||||
|
outWeight: 0.33333334
|
||||||
|
m_PreInfinity: 2
|
||||||
|
m_PostInfinity: 2
|
||||||
|
m_RotationOrder: 4
|
||||||
|
attribute: m_SizeDelta.x
|
||||||
|
path:
|
||||||
|
classID: 224
|
||||||
|
script: {fileID: 0}
|
||||||
|
- curve:
|
||||||
|
serializedVersion: 2
|
||||||
|
m_Curve:
|
||||||
|
- serializedVersion: 3
|
||||||
|
time: 0
|
||||||
|
value: 98
|
||||||
|
inSlope: 0
|
||||||
|
outSlope: 0
|
||||||
|
tangentMode: 136
|
||||||
|
weightedMode: 0
|
||||||
|
inWeight: 0.33333334
|
||||||
|
outWeight: 0.33333334
|
||||||
|
- serializedVersion: 3
|
||||||
|
time: 0.28333333
|
||||||
|
value: 98
|
||||||
|
inSlope: 0
|
||||||
|
outSlope: 0
|
||||||
|
tangentMode: 136
|
||||||
|
weightedMode: 0
|
||||||
|
inWeight: 0.33333334
|
||||||
|
outWeight: 0.33333334
|
||||||
|
m_PreInfinity: 2
|
||||||
|
m_PostInfinity: 2
|
||||||
|
m_RotationOrder: 4
|
||||||
|
attribute: m_SizeDelta.y
|
||||||
|
path:
|
||||||
|
classID: 224
|
||||||
|
script: {fileID: 0}
|
||||||
|
m_PPtrCurves: []
|
||||||
|
m_SampleRate: 60
|
||||||
|
m_WrapMode: 0
|
||||||
|
m_Bounds:
|
||||||
|
m_Center: {x: 0, y: 0, z: 0}
|
||||||
|
m_Extent: {x: 0, y: 0, z: 0}
|
||||||
|
m_ClipBindingConstant:
|
||||||
|
genericBindings:
|
||||||
|
- serializedVersion: 2
|
||||||
|
path: 0
|
||||||
|
attribute: 3
|
||||||
|
script: {fileID: 0}
|
||||||
|
typeID: 4
|
||||||
|
customType: 0
|
||||||
|
isPPtrCurve: 0
|
||||||
|
- serializedVersion: 2
|
||||||
|
path: 0
|
||||||
|
attribute: 3640387206
|
||||||
|
script: {fileID: 0}
|
||||||
|
typeID: 224
|
||||||
|
customType: 28
|
||||||
|
isPPtrCurve: 0
|
||||||
|
- serializedVersion: 2
|
||||||
|
path: 0
|
||||||
|
attribute: 2952582672
|
||||||
|
script: {fileID: 0}
|
||||||
|
typeID: 224
|
||||||
|
customType: 28
|
||||||
|
isPPtrCurve: 0
|
||||||
|
- serializedVersion: 2
|
||||||
|
path: 0
|
||||||
|
attribute: 1967290853
|
||||||
|
script: {fileID: 0}
|
||||||
|
typeID: 224
|
||||||
|
customType: 28
|
||||||
|
isPPtrCurve: 0
|
||||||
|
- serializedVersion: 2
|
||||||
|
path: 0
|
||||||
|
attribute: 38095219
|
||||||
|
script: {fileID: 0}
|
||||||
|
typeID: 224
|
||||||
|
customType: 28
|
||||||
|
isPPtrCurve: 0
|
||||||
|
pptrCurveMapping: []
|
||||||
|
m_AnimationClipSettings:
|
||||||
|
serializedVersion: 2
|
||||||
|
m_AdditiveReferencePoseClip: {fileID: 0}
|
||||||
|
m_AdditiveReferencePoseTime: 0
|
||||||
|
m_StartTime: 0
|
||||||
|
m_StopTime: 0.28333333
|
||||||
|
m_OrientationOffsetY: 0
|
||||||
|
m_Level: 0
|
||||||
|
m_CycleOffset: 0
|
||||||
|
m_HasAdditiveReferencePose: 0
|
||||||
|
m_LoopTime: 0
|
||||||
|
m_LoopBlend: 0
|
||||||
|
m_LoopBlendOrientation: 0
|
||||||
|
m_LoopBlendPositionY: 0
|
||||||
|
m_LoopBlendPositionXZ: 0
|
||||||
|
m_KeepOriginalOrientation: 0
|
||||||
|
m_KeepOriginalPositionY: 1
|
||||||
|
m_KeepOriginalPositionXZ: 0
|
||||||
|
m_HeightFromFeet: 0
|
||||||
|
m_Mirror: 0
|
||||||
|
m_EditorCurves:
|
||||||
|
- curve:
|
||||||
|
serializedVersion: 2
|
||||||
|
m_Curve:
|
||||||
|
- serializedVersion: 3
|
||||||
|
time: 0
|
||||||
|
value: 0
|
||||||
|
inSlope: 0
|
||||||
|
outSlope: 0
|
||||||
|
tangentMode: 136
|
||||||
|
weightedMode: 0
|
||||||
|
inWeight: 0.33333334
|
||||||
|
outWeight: 0.33333334
|
||||||
|
- serializedVersion: 3
|
||||||
|
time: 0.083333336
|
||||||
|
value: 1.1
|
||||||
|
inSlope: 0
|
||||||
|
outSlope: 0
|
||||||
|
tangentMode: 136
|
||||||
|
weightedMode: 0
|
||||||
|
inWeight: 0.33333334
|
||||||
|
outWeight: 0.33333334
|
||||||
|
- serializedVersion: 3
|
||||||
|
time: 0.28333333
|
||||||
|
value: 1
|
||||||
|
inSlope: 0
|
||||||
|
outSlope: 0
|
||||||
|
tangentMode: 136
|
||||||
|
weightedMode: 0
|
||||||
|
inWeight: 0.33333334
|
||||||
|
outWeight: 0.33333334
|
||||||
|
m_PreInfinity: 2
|
||||||
|
m_PostInfinity: 2
|
||||||
|
m_RotationOrder: 4
|
||||||
|
attribute: m_LocalScale.x
|
||||||
|
path:
|
||||||
|
classID: 224
|
||||||
|
script: {fileID: 0}
|
||||||
|
- curve:
|
||||||
|
serializedVersion: 2
|
||||||
|
m_Curve:
|
||||||
|
- serializedVersion: 3
|
||||||
|
time: 0
|
||||||
|
value: 0
|
||||||
|
inSlope: 0
|
||||||
|
outSlope: 0
|
||||||
|
tangentMode: 136
|
||||||
|
weightedMode: 0
|
||||||
|
inWeight: 0.33333334
|
||||||
|
outWeight: 0.33333334
|
||||||
|
- serializedVersion: 3
|
||||||
|
time: 0.083333336
|
||||||
|
value: 1.1
|
||||||
|
inSlope: 0
|
||||||
|
outSlope: 0
|
||||||
|
tangentMode: 136
|
||||||
|
weightedMode: 0
|
||||||
|
inWeight: 0.33333334
|
||||||
|
outWeight: 0.33333334
|
||||||
|
- serializedVersion: 3
|
||||||
|
time: 0.28333333
|
||||||
|
value: 1
|
||||||
|
inSlope: 0
|
||||||
|
outSlope: 0
|
||||||
|
tangentMode: 136
|
||||||
|
weightedMode: 0
|
||||||
|
inWeight: 0.33333334
|
||||||
|
outWeight: 0.33333334
|
||||||
|
m_PreInfinity: 2
|
||||||
|
m_PostInfinity: 2
|
||||||
|
m_RotationOrder: 4
|
||||||
|
attribute: m_LocalScale.y
|
||||||
|
path:
|
||||||
|
classID: 224
|
||||||
|
script: {fileID: 0}
|
||||||
|
- curve:
|
||||||
|
serializedVersion: 2
|
||||||
|
m_Curve:
|
||||||
|
- serializedVersion: 3
|
||||||
|
time: 0
|
||||||
|
value: 0
|
||||||
|
inSlope: 0
|
||||||
|
outSlope: 0
|
||||||
|
tangentMode: 136
|
||||||
|
weightedMode: 0
|
||||||
|
inWeight: 0.33333334
|
||||||
|
outWeight: 0.33333334
|
||||||
|
- serializedVersion: 3
|
||||||
|
time: 0.083333336
|
||||||
|
value: 1.1
|
||||||
|
inSlope: 0
|
||||||
|
outSlope: 0
|
||||||
|
tangentMode: 136
|
||||||
|
weightedMode: 0
|
||||||
|
inWeight: 0.33333334
|
||||||
|
outWeight: 0.33333334
|
||||||
|
- serializedVersion: 3
|
||||||
|
time: 0.28333333
|
||||||
|
value: 1
|
||||||
|
inSlope: 0
|
||||||
|
outSlope: 0
|
||||||
|
tangentMode: 136
|
||||||
|
weightedMode: 0
|
||||||
|
inWeight: 0.33333334
|
||||||
|
outWeight: 0.33333334
|
||||||
|
m_PreInfinity: 2
|
||||||
|
m_PostInfinity: 2
|
||||||
|
m_RotationOrder: 4
|
||||||
|
attribute: m_LocalScale.z
|
||||||
|
path:
|
||||||
|
classID: 224
|
||||||
|
script: {fileID: 0}
|
||||||
|
- curve:
|
||||||
|
serializedVersion: 2
|
||||||
|
m_Curve:
|
||||||
|
- serializedVersion: 3
|
||||||
|
time: 0
|
||||||
|
value: 0.5
|
||||||
|
inSlope: 0
|
||||||
|
outSlope: 0
|
||||||
|
tangentMode: 136
|
||||||
|
weightedMode: 0
|
||||||
|
inWeight: 0.33333334
|
||||||
|
outWeight: 0.33333334
|
||||||
|
- serializedVersion: 3
|
||||||
|
time: 0.28333333
|
||||||
|
value: 0.5
|
||||||
|
inSlope: 0
|
||||||
|
outSlope: 0
|
||||||
|
tangentMode: 136
|
||||||
|
weightedMode: 0
|
||||||
|
inWeight: 0.33333334
|
||||||
|
outWeight: 0.33333334
|
||||||
|
m_PreInfinity: 2
|
||||||
|
m_PostInfinity: 2
|
||||||
|
m_RotationOrder: 4
|
||||||
|
attribute: m_Pivot.x
|
||||||
|
path:
|
||||||
|
classID: 224
|
||||||
|
script: {fileID: 0}
|
||||||
|
- curve:
|
||||||
|
serializedVersion: 2
|
||||||
|
m_Curve:
|
||||||
|
- serializedVersion: 3
|
||||||
|
time: 0
|
||||||
|
value: 0.5
|
||||||
|
inSlope: 0
|
||||||
|
outSlope: 0
|
||||||
|
tangentMode: 136
|
||||||
|
weightedMode: 0
|
||||||
|
inWeight: 0.33333334
|
||||||
|
outWeight: 0.33333334
|
||||||
|
- serializedVersion: 3
|
||||||
|
time: 0.28333333
|
||||||
|
value: 0.5
|
||||||
|
inSlope: 0
|
||||||
|
outSlope: 0
|
||||||
|
tangentMode: 136
|
||||||
|
weightedMode: 0
|
||||||
|
inWeight: 0.33333334
|
||||||
|
outWeight: 0.33333334
|
||||||
|
m_PreInfinity: 2
|
||||||
|
m_PostInfinity: 2
|
||||||
|
m_RotationOrder: 4
|
||||||
|
attribute: m_Pivot.y
|
||||||
|
path:
|
||||||
|
classID: 224
|
||||||
|
script: {fileID: 0}
|
||||||
|
- curve:
|
||||||
|
serializedVersion: 2
|
||||||
|
m_Curve:
|
||||||
|
- serializedVersion: 3
|
||||||
|
time: 0
|
||||||
|
value: 98
|
||||||
|
inSlope: 0
|
||||||
|
outSlope: 0
|
||||||
|
tangentMode: 136
|
||||||
|
weightedMode: 0
|
||||||
|
inWeight: 0.33333334
|
||||||
|
outWeight: 0.33333334
|
||||||
|
- serializedVersion: 3
|
||||||
|
time: 0.28333333
|
||||||
|
value: 98
|
||||||
|
inSlope: 0
|
||||||
|
outSlope: 0
|
||||||
|
tangentMode: 136
|
||||||
|
weightedMode: 0
|
||||||
|
inWeight: 0.33333334
|
||||||
|
outWeight: 0.33333334
|
||||||
|
m_PreInfinity: 2
|
||||||
|
m_PostInfinity: 2
|
||||||
|
m_RotationOrder: 4
|
||||||
|
attribute: m_SizeDelta.x
|
||||||
|
path:
|
||||||
|
classID: 224
|
||||||
|
script: {fileID: 0}
|
||||||
|
- curve:
|
||||||
|
serializedVersion: 2
|
||||||
|
m_Curve:
|
||||||
|
- serializedVersion: 3
|
||||||
|
time: 0
|
||||||
|
value: 98
|
||||||
|
inSlope: 0
|
||||||
|
outSlope: 0
|
||||||
|
tangentMode: 136
|
||||||
|
weightedMode: 0
|
||||||
|
inWeight: 0.33333334
|
||||||
|
outWeight: 0.33333334
|
||||||
|
- serializedVersion: 3
|
||||||
|
time: 0.28333333
|
||||||
|
value: 98
|
||||||
|
inSlope: 0
|
||||||
|
outSlope: 0
|
||||||
|
tangentMode: 136
|
||||||
|
weightedMode: 0
|
||||||
|
inWeight: 0.33333334
|
||||||
|
outWeight: 0.33333334
|
||||||
|
m_PreInfinity: 2
|
||||||
|
m_PostInfinity: 2
|
||||||
|
m_RotationOrder: 4
|
||||||
|
attribute: m_SizeDelta.y
|
||||||
|
path:
|
||||||
|
classID: 224
|
||||||
|
script: {fileID: 0}
|
||||||
|
m_EulerEditorCurves: []
|
||||||
|
m_HasGenericRootTransform: 0
|
||||||
|
m_HasMotionFloatCurves: 0
|
||||||
|
m_Events: []
|
||||||
8
Assets/arts/animations/ui/common/reward_cell_pop.anim.meta
Executable file
@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: fe59fc88a918a714da43739242ef4733
|
||||||
|
NativeFormatImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
mainObjectFileID: 7400000
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/animations/ui/common.ab
|
||||||
|
assetBundleVariant:
|
||||||
72
Assets/arts/animations/ui/common/reward_cell_pop.controller
Executable file
@ -0,0 +1,72 @@
|
|||||||
|
%YAML 1.1
|
||||||
|
%TAG !u! tag:unity3d.com,2011:
|
||||||
|
--- !u!1107 &-1498779326127411260
|
||||||
|
AnimatorStateMachine:
|
||||||
|
serializedVersion: 6
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_Name: Base Layer
|
||||||
|
m_ChildStates:
|
||||||
|
- serializedVersion: 1
|
||||||
|
m_State: {fileID: 3696445928720610100}
|
||||||
|
m_Position: {x: 200, y: 0, z: 0}
|
||||||
|
m_ChildStateMachines: []
|
||||||
|
m_AnyStateTransitions: []
|
||||||
|
m_EntryTransitions: []
|
||||||
|
m_StateMachineTransitions: {}
|
||||||
|
m_StateMachineBehaviours: []
|
||||||
|
m_AnyStatePosition: {x: 50, y: 20, z: 0}
|
||||||
|
m_EntryPosition: {x: 50, y: 120, z: 0}
|
||||||
|
m_ExitPosition: {x: 800, y: 120, z: 0}
|
||||||
|
m_ParentStateMachinePosition: {x: 800, y: 20, z: 0}
|
||||||
|
m_DefaultState: {fileID: 3696445928720610100}
|
||||||
|
--- !u!91 &9100000
|
||||||
|
AnimatorController:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_Name: reward_cell_pop
|
||||||
|
serializedVersion: 5
|
||||||
|
m_AnimatorParameters: []
|
||||||
|
m_AnimatorLayers:
|
||||||
|
- serializedVersion: 5
|
||||||
|
m_Name: Base Layer
|
||||||
|
m_StateMachine: {fileID: -1498779326127411260}
|
||||||
|
m_Mask: {fileID: 0}
|
||||||
|
m_Motions: []
|
||||||
|
m_Behaviours: []
|
||||||
|
m_BlendingMode: 0
|
||||||
|
m_SyncedLayerIndex: -1
|
||||||
|
m_DefaultWeight: 0
|
||||||
|
m_IKPass: 0
|
||||||
|
m_SyncedLayerAffectsTiming: 0
|
||||||
|
m_Controller: {fileID: 9100000}
|
||||||
|
--- !u!1102 &3696445928720610100
|
||||||
|
AnimatorState:
|
||||||
|
serializedVersion: 6
|
||||||
|
m_ObjectHideFlags: 1
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_Name: title_bg
|
||||||
|
m_Speed: 1
|
||||||
|
m_CycleOffset: 0
|
||||||
|
m_Transitions: []
|
||||||
|
m_StateMachineBehaviours: []
|
||||||
|
m_Position: {x: 50, y: 50, z: 0}
|
||||||
|
m_IKOnFeet: 0
|
||||||
|
m_WriteDefaultValues: 1
|
||||||
|
m_Mirror: 0
|
||||||
|
m_SpeedParameterActive: 0
|
||||||
|
m_MirrorParameterActive: 0
|
||||||
|
m_CycleOffsetParameterActive: 0
|
||||||
|
m_TimeParameterActive: 0
|
||||||
|
m_Motion: {fileID: 7400000, guid: fe59fc88a918a714da43739242ef4733, type: 2}
|
||||||
|
m_Tag:
|
||||||
|
m_SpeedParameter:
|
||||||
|
m_MirrorParameter:
|
||||||
|
m_CycleOffsetParameter:
|
||||||
|
m_TimeParameter:
|
||||||
8
Assets/arts/animations/ui/common/reward_cell_pop.controller.meta
Executable file
@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 82a3bc40247859d44a13d2c27b9ac1cb
|
||||||
|
NativeFormatImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
mainObjectFileID: 9100000
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/animations/ui/common.ab
|
||||||
|
assetBundleVariant:
|
||||||
@ -72,7 +72,10 @@ SpriteAtlas:
|
|||||||
- {fileID: 21300000, guid: cb69ed223a9f15e44ad0336ac9a37258, type: 3}
|
- {fileID: 21300000, guid: cb69ed223a9f15e44ad0336ac9a37258, type: 3}
|
||||||
- {fileID: 21300000, guid: c1266332792b9104db44fd26763f36ac, type: 3}
|
- {fileID: 21300000, guid: c1266332792b9104db44fd26763f36ac, type: 3}
|
||||||
- {fileID: 21300000, guid: 0300d4b25cdd5104ba3103ce245ad79a, type: 3}
|
- {fileID: 21300000, guid: 0300d4b25cdd5104ba3103ce245ad79a, type: 3}
|
||||||
|
- {fileID: 21300000, guid: 1851b063d8d41b44fa19ee17cb2c3aa9, type: 3}
|
||||||
- {fileID: 21300000, guid: 5dce00739532d3647bd0bd0ed52df04a, type: 3}
|
- {fileID: 21300000, guid: 5dce00739532d3647bd0bd0ed52df04a, type: 3}
|
||||||
|
- {fileID: 21300000, guid: 7b2d6254aa67a2c4f8409bd91e5c7e71, type: 3}
|
||||||
|
- {fileID: 21300000, guid: aae71c74d1f6efb4393be768b2d81f84, type: 3}
|
||||||
- {fileID: 21300000, guid: d4840de43a9af3b4c9037c502c7a06dc, type: 3}
|
- {fileID: 21300000, guid: d4840de43a9af3b4c9037c502c7a06dc, type: 3}
|
||||||
- {fileID: 21300000, guid: 3042d72574a18844ab921211829dacff, type: 3}
|
- {fileID: 21300000, guid: 3042d72574a18844ab921211829dacff, type: 3}
|
||||||
- {fileID: 21300000, guid: a470e725be5ac9d48983078c9ea84b3e, type: 3}
|
- {fileID: 21300000, guid: a470e725be5ac9d48983078c9ea84b3e, type: 3}
|
||||||
@ -136,7 +139,10 @@ SpriteAtlas:
|
|||||||
- frame_2
|
- frame_2
|
||||||
- frame_dec_1
|
- frame_dec_1
|
||||||
- s_2
|
- s_2
|
||||||
|
- frame_select
|
||||||
- 40
|
- 40
|
||||||
|
- frame_0
|
||||||
|
- 101
|
||||||
- 9
|
- 9
|
||||||
- 36
|
- 36
|
||||||
- 35
|
- 35
|
||||||
|
|||||||
@ -64,6 +64,7 @@ SpriteAtlas:
|
|||||||
m_PackedSprites:
|
m_PackedSprites:
|
||||||
- {fileID: 21300000, guid: 606ec200992ac604eb9c6b526737a4bb, type: 3}
|
- {fileID: 21300000, guid: 606ec200992ac604eb9c6b526737a4bb, type: 3}
|
||||||
- {fileID: 21300000, guid: 3569fe3086bdaf04fb12852d88c1a125, type: 3}
|
- {fileID: 21300000, guid: 3569fe3086bdaf04fb12852d88c1a125, type: 3}
|
||||||
|
- {fileID: 21300000, guid: 2b6d8940c0d20d14ab03aced34e9ceb2, type: 3}
|
||||||
- {fileID: 21300000, guid: a21a9a50049fdc74a9ef9d351c3a8490, type: 3}
|
- {fileID: 21300000, guid: a21a9a50049fdc74a9ef9d351c3a8490, type: 3}
|
||||||
- {fileID: 21300000, guid: ee39d690829c0484d9f5694366537675, type: 3}
|
- {fileID: 21300000, guid: ee39d690829c0484d9f5694366537675, type: 3}
|
||||||
- {fileID: 21300000, guid: 899882c0d56e96d4caf5d82d2b469729, type: 3}
|
- {fileID: 21300000, guid: 899882c0d56e96d4caf5d82d2b469729, type: 3}
|
||||||
@ -168,6 +169,7 @@ SpriteAtlas:
|
|||||||
m_PackedSpriteNamesToIndex:
|
m_PackedSpriteNamesToIndex:
|
||||||
- 1001
|
- 1001
|
||||||
- 58
|
- 58
|
||||||
|
- frame_0
|
||||||
- 1022
|
- 1022
|
||||||
- frame_4
|
- frame_4
|
||||||
- frame_5
|
- frame_5
|
||||||
|
|||||||
@ -128,6 +128,7 @@ SpriteAtlas:
|
|||||||
- {fileID: 21300000, guid: 0928e747552d400468dcd7ba0a5cf10a, type: 3}
|
- {fileID: 21300000, guid: 0928e747552d400468dcd7ba0a5cf10a, type: 3}
|
||||||
- {fileID: 21300000, guid: c7f11a478e4765040a4bc6fb66de18e2, type: 3}
|
- {fileID: 21300000, guid: c7f11a478e4765040a4bc6fb66de18e2, type: 3}
|
||||||
- {fileID: 21300000, guid: 9b35ea47339a8e94d9d4555e03956f35, type: 3}
|
- {fileID: 21300000, guid: 9b35ea47339a8e94d9d4555e03956f35, type: 3}
|
||||||
|
- {fileID: 21300000, guid: 5abeb357a5d3eeb4aa3ea9fc68efcf9a, type: 3}
|
||||||
- {fileID: 21300000, guid: dce59e87488903e4b8f377a7eeda2748, type: 3}
|
- {fileID: 21300000, guid: dce59e87488903e4b8f377a7eeda2748, type: 3}
|
||||||
- {fileID: 21300000, guid: 9bc0dcc7b71c9c641ae3260d1192b2fd, type: 3}
|
- {fileID: 21300000, guid: 9bc0dcc7b71c9c641ae3260d1192b2fd, type: 3}
|
||||||
- {fileID: 21300000, guid: 171686d7ccc6d384a9d726efca39d78c, type: 3}
|
- {fileID: 21300000, guid: 171686d7ccc6d384a9d726efca39d78c, type: 3}
|
||||||
@ -276,6 +277,7 @@ SpriteAtlas:
|
|||||||
- battle_dec_3
|
- battle_dec_3
|
||||||
- battle_obstacle_altar_3
|
- battle_obstacle_altar_3
|
||||||
- battle_hinder_12
|
- battle_hinder_12
|
||||||
|
- battle_shadow_6_b
|
||||||
- battle_hinder_28
|
- battle_hinder_28
|
||||||
- battle_hinder_25
|
- battle_hinder_25
|
||||||
- battle_line_4
|
- battle_line_4
|
||||||
|
|||||||
@ -73,11 +73,13 @@ SpriteAtlas:
|
|||||||
- {fileID: 21300000, guid: 9df002014670a564fa9e8c639162c7f5, type: 3}
|
- {fileID: 21300000, guid: 9df002014670a564fa9e8c639162c7f5, type: 3}
|
||||||
- {fileID: 21300000, guid: 9bc39501344a8494daeaf1035cb736db, type: 3}
|
- {fileID: 21300000, guid: 9bc39501344a8494daeaf1035cb736db, type: 3}
|
||||||
- {fileID: 21300000, guid: 1a4f780181ba75d4e840fd9a8754eb99, type: 3}
|
- {fileID: 21300000, guid: 1a4f780181ba75d4e840fd9a8754eb99, type: 3}
|
||||||
|
- {fileID: 21300000, guid: 58a8fa01577a76a478bb226464b330f7, type: 3}
|
||||||
- {fileID: 21300000, guid: 14da6211cc49d5a4a8c31d4e949b3135, type: 3}
|
- {fileID: 21300000, guid: 14da6211cc49d5a4a8c31d4e949b3135, type: 3}
|
||||||
- {fileID: 21300000, guid: 2b61c72119833dc47ad00f1de32145c3, type: 3}
|
- {fileID: 21300000, guid: 2b61c72119833dc47ad00f1de32145c3, type: 3}
|
||||||
- {fileID: 21300000, guid: fd69d13156e74d540ae80d30ed9b638f, type: 3}
|
- {fileID: 21300000, guid: fd69d13156e74d540ae80d30ed9b638f, type: 3}
|
||||||
- {fileID: 21300000, guid: 8557e6412e7e6464495c2efa8f5f2f78, type: 3}
|
- {fileID: 21300000, guid: 8557e6412e7e6464495c2efa8f5f2f78, type: 3}
|
||||||
- {fileID: 21300000, guid: 447f8a5186ac53a4dab1c33c3a83cc08, type: 3}
|
- {fileID: 21300000, guid: 447f8a5186ac53a4dab1c33c3a83cc08, type: 3}
|
||||||
|
- {fileID: 21300000, guid: 3eb24e516a508b34e95d18d01316747c, type: 3}
|
||||||
- {fileID: 21300000, guid: 7232d781b35ea8742abca796fec7106d, type: 3}
|
- {fileID: 21300000, guid: 7232d781b35ea8742abca796fec7106d, type: 3}
|
||||||
- {fileID: 21300000, guid: 96fd70b1d51e00641ab3107096c4994b, type: 3}
|
- {fileID: 21300000, guid: 96fd70b1d51e00641ab3107096c4994b, type: 3}
|
||||||
- {fileID: 21300000, guid: 330be4d1490173b4a8a049003427d8fb, type: 3}
|
- {fileID: 21300000, guid: 330be4d1490173b4a8a049003427d8fb, type: 3}
|
||||||
@ -93,6 +95,7 @@ SpriteAtlas:
|
|||||||
- {fileID: 21300000, guid: 71f19a527145f7a45a86a88e809c66ba, type: 3}
|
- {fileID: 21300000, guid: 71f19a527145f7a45a86a88e809c66ba, type: 3}
|
||||||
- {fileID: 21300000, guid: b9543992e195f2f47a68966feb242e7a, type: 3}
|
- {fileID: 21300000, guid: b9543992e195f2f47a68966feb242e7a, type: 3}
|
||||||
- {fileID: 21300000, guid: 2c35c0e2e4c2ae240afdbcba4a36c43e, type: 3}
|
- {fileID: 21300000, guid: 2c35c0e2e4c2ae240afdbcba4a36c43e, type: 3}
|
||||||
|
- {fileID: 21300000, guid: b54627e2f3696db4881f0ba63bb3a0c5, type: 3}
|
||||||
- {fileID: 21300000, guid: e3a315f26f48db6489d0176ca4c9aad1, type: 3}
|
- {fileID: 21300000, guid: e3a315f26f48db6489d0176ca4c9aad1, type: 3}
|
||||||
- {fileID: 21300000, guid: 4e52f863d256e2b45aa84ecbf844ee89, type: 3}
|
- {fileID: 21300000, guid: 4e52f863d256e2b45aa84ecbf844ee89, type: 3}
|
||||||
- {fileID: 21300000, guid: 1a3eea633d6dc9249b5caf2aee32cdfa, type: 3}
|
- {fileID: 21300000, guid: 1a3eea633d6dc9249b5caf2aee32cdfa, type: 3}
|
||||||
@ -102,6 +105,7 @@ SpriteAtlas:
|
|||||||
- {fileID: 21300000, guid: 5140a3a33b636314fb3d07bdc4c9c0f3, type: 3}
|
- {fileID: 21300000, guid: 5140a3a33b636314fb3d07bdc4c9c0f3, type: 3}
|
||||||
- {fileID: 21300000, guid: 1e55a4a32dd1ec240af52ddccebc7c46, type: 3}
|
- {fileID: 21300000, guid: 1e55a4a32dd1ec240af52ddccebc7c46, type: 3}
|
||||||
- {fileID: 21300000, guid: 7fd4f0c3c01d5b74da31ef5c8844b95d, type: 3}
|
- {fileID: 21300000, guid: 7fd4f0c3c01d5b74da31ef5c8844b95d, type: 3}
|
||||||
|
- {fileID: 21300000, guid: d4eff7d3958d69e42b5af7ef40d06263, type: 3}
|
||||||
- {fileID: 21300000, guid: 4ba59bd3fda322748836bed4cfab73c5, type: 3}
|
- {fileID: 21300000, guid: 4ba59bd3fda322748836bed4cfab73c5, type: 3}
|
||||||
- {fileID: 21300000, guid: 9e2c640474bb7904c8227d0ce40a444e, type: 3}
|
- {fileID: 21300000, guid: 9e2c640474bb7904c8227d0ce40a444e, type: 3}
|
||||||
- {fileID: 21300000, guid: 5758461464520334caa2a2487dca2fc6, type: 3}
|
- {fileID: 21300000, guid: 5758461464520334caa2a2487dca2fc6, type: 3}
|
||||||
@ -146,6 +150,7 @@ SpriteAtlas:
|
|||||||
- {fileID: 21300000, guid: ed4354e6b5195924492ab2e872cfe945, type: 3}
|
- {fileID: 21300000, guid: ed4354e6b5195924492ab2e872cfe945, type: 3}
|
||||||
- {fileID: 21300000, guid: af2468e67b69b3647afb863604c01d03, type: 3}
|
- {fileID: 21300000, guid: af2468e67b69b3647afb863604c01d03, type: 3}
|
||||||
- {fileID: 21300000, guid: 88e3c9f601e749946ac9894634ce7894, type: 3}
|
- {fileID: 21300000, guid: 88e3c9f601e749946ac9894634ce7894, type: 3}
|
||||||
|
- {fileID: 21300000, guid: dd74ae274051f014f9deda18862b0487, type: 3}
|
||||||
- {fileID: 21300000, guid: 3b14bc3747e2c3248b47a3ac14d44d6d, type: 3}
|
- {fileID: 21300000, guid: 3b14bc3747e2c3248b47a3ac14d44d6d, type: 3}
|
||||||
- {fileID: 21300000, guid: c4514947f60678c4e90c498ef095db61, type: 3}
|
- {fileID: 21300000, guid: c4514947f60678c4e90c498ef095db61, type: 3}
|
||||||
- {fileID: 21300000, guid: 458ccc47b228bdc46a1ce6b15a037f5c, type: 3}
|
- {fileID: 21300000, guid: 458ccc47b228bdc46a1ce6b15a037f5c, type: 3}
|
||||||
@ -182,6 +187,7 @@ SpriteAtlas:
|
|||||||
- {fileID: 21300000, guid: 37058029318370c46be63c3fbe4d1758, type: 3}
|
- {fileID: 21300000, guid: 37058029318370c46be63c3fbe4d1758, type: 3}
|
||||||
- {fileID: 21300000, guid: 33635a29a6552a34f802b1b8a4aa781f, type: 3}
|
- {fileID: 21300000, guid: 33635a29a6552a34f802b1b8a4aa781f, type: 3}
|
||||||
- {fileID: 21300000, guid: 47c6df29a6803614aa3f74efce93cdb3, type: 3}
|
- {fileID: 21300000, guid: 47c6df29a6803614aa3f74efce93cdb3, type: 3}
|
||||||
|
- {fileID: 21300000, guid: e8535639b62372944b836a75493ac3ae, type: 3}
|
||||||
- {fileID: 21300000, guid: 1bf9c73960324d3439e0db7c0390d805, type: 3}
|
- {fileID: 21300000, guid: 1bf9c73960324d3439e0db7c0390d805, type: 3}
|
||||||
- {fileID: 21300000, guid: 15a10479bd4a42c459af0778f0f3c004, type: 3}
|
- {fileID: 21300000, guid: 15a10479bd4a42c459af0778f0f3c004, type: 3}
|
||||||
- {fileID: 21300000, guid: 7dcb5c792e21d83488db1e0ef85036c8, type: 3}
|
- {fileID: 21300000, guid: 7dcb5c792e21d83488db1e0ef85036c8, type: 3}
|
||||||
@ -193,6 +199,7 @@ SpriteAtlas:
|
|||||||
- {fileID: 21300000, guid: 6257321a157c2d24abce62bfdffa3d3b, type: 3}
|
- {fileID: 21300000, guid: 6257321a157c2d24abce62bfdffa3d3b, type: 3}
|
||||||
- {fileID: 21300000, guid: 3867c71afb1f02049b1fee7399381aaa, type: 3}
|
- {fileID: 21300000, guid: 3867c71afb1f02049b1fee7399381aaa, type: 3}
|
||||||
- {fileID: 21300000, guid: 7372681aea33b7b4099e3685b7ee975e, type: 3}
|
- {fileID: 21300000, guid: 7372681aea33b7b4099e3685b7ee975e, type: 3}
|
||||||
|
- {fileID: 21300000, guid: 9abd082a2e9317d40bbd7583ce98e9bd, type: 3}
|
||||||
- {fileID: 21300000, guid: a2d6692a383652f4fad43c69cc9f6d83, type: 3}
|
- {fileID: 21300000, guid: a2d6692a383652f4fad43c69cc9f6d83, type: 3}
|
||||||
- {fileID: 21300000, guid: fc2fd64a48d31c74d82d0ade3316e65e, type: 3}
|
- {fileID: 21300000, guid: fc2fd64a48d31c74d82d0ade3316e65e, type: 3}
|
||||||
- {fileID: 21300000, guid: cb25076ad884dd64a9f85a54955be236, type: 3}
|
- {fileID: 21300000, guid: cb25076ad884dd64a9f85a54955be236, type: 3}
|
||||||
@ -206,7 +213,9 @@ SpriteAtlas:
|
|||||||
- {fileID: 21300000, guid: d31ab4bae352c3d4481cb54328c5f3c2, type: 3}
|
- {fileID: 21300000, guid: d31ab4bae352c3d4481cb54328c5f3c2, type: 3}
|
||||||
- {fileID: 21300000, guid: 5cfb92ca440ded943b4fb19835bdf014, type: 3}
|
- {fileID: 21300000, guid: 5cfb92ca440ded943b4fb19835bdf014, type: 3}
|
||||||
- {fileID: 21300000, guid: d39ca3caf80d6f84bb4c8dd2047d5815, type: 3}
|
- {fileID: 21300000, guid: d39ca3caf80d6f84bb4c8dd2047d5815, type: 3}
|
||||||
|
- {fileID: 21300000, guid: 39a6a51bc7e052c43b1b410c95dd6120, type: 3}
|
||||||
- {fileID: 21300000, guid: a1a80e4b948777a4bbf8049335a445ce, type: 3}
|
- {fileID: 21300000, guid: a1a80e4b948777a4bbf8049335a445ce, type: 3}
|
||||||
|
- {fileID: 21300000, guid: 2291c25b18fd6754190d771721c004c6, type: 3}
|
||||||
- {fileID: 21300000, guid: 6fcfdf7ba1e7f4441a15bd5d888541d0, type: 3}
|
- {fileID: 21300000, guid: 6fcfdf7ba1e7f4441a15bd5d888541d0, type: 3}
|
||||||
- {fileID: 21300000, guid: 0bf8a7cbeee241d429745b8e3af4b0b3, type: 3}
|
- {fileID: 21300000, guid: 0bf8a7cbeee241d429745b8e3af4b0b3, type: 3}
|
||||||
- {fileID: 21300000, guid: 198db5ebea9ee4b4d93b4a62cb879ea2, type: 3}
|
- {fileID: 21300000, guid: 198db5ebea9ee4b4d93b4a62cb879ea2, type: 3}
|
||||||
@ -221,12 +230,16 @@ SpriteAtlas:
|
|||||||
- {fileID: 21300000, guid: 66f7e9bcf829fc04d816daa40ffaad77, type: 3}
|
- {fileID: 21300000, guid: 66f7e9bcf829fc04d816daa40ffaad77, type: 3}
|
||||||
- {fileID: 21300000, guid: 096ac1cc2c2450c4fb006148f1114712, type: 3}
|
- {fileID: 21300000, guid: 096ac1cc2c2450c4fb006148f1114712, type: 3}
|
||||||
- {fileID: 21300000, guid: c005d0dc9d400304ca941b48135dcb04, type: 3}
|
- {fileID: 21300000, guid: c005d0dc9d400304ca941b48135dcb04, type: 3}
|
||||||
|
- {fileID: 21300000, guid: 85e741dcfd8f49442aeb8c4312368284, type: 3}
|
||||||
- {fileID: 21300000, guid: aa00cbdcec24d164f8c2b2b68054408b, type: 3}
|
- {fileID: 21300000, guid: aa00cbdcec24d164f8c2b2b68054408b, type: 3}
|
||||||
- {fileID: 21300000, guid: a70289eca986ce142b027934f6cdd63c, type: 3}
|
- {fileID: 21300000, guid: a70289eca986ce142b027934f6cdd63c, type: 3}
|
||||||
- {fileID: 21300000, guid: 77492aece4267bb4cb623f0bcc4253de, type: 3}
|
- {fileID: 21300000, guid: 77492aece4267bb4cb623f0bcc4253de, type: 3}
|
||||||
|
- {fileID: 21300000, guid: 5dfeccec500bdae478527d27769942cc, type: 3}
|
||||||
|
- {fileID: 21300000, guid: ee4e0eecba15cbc4081e64039cdfbcda, type: 3}
|
||||||
- {fileID: 21300000, guid: 3cef9afc451ec9f4682eca5f161cd556, type: 3}
|
- {fileID: 21300000, guid: 3cef9afc451ec9f4682eca5f161cd556, type: 3}
|
||||||
- {fileID: 21300000, guid: b580961da7927cb45b605286d0a73c48, type: 3}
|
- {fileID: 21300000, guid: b580961da7927cb45b605286d0a73c48, type: 3}
|
||||||
- {fileID: 21300000, guid: 8b23392df5ef34840b8af7b1e5dacda6, type: 3}
|
- {fileID: 21300000, guid: 8b23392df5ef34840b8af7b1e5dacda6, type: 3}
|
||||||
|
- {fileID: 21300000, guid: 8966095d414c7cc469442996c595c1ab, type: 3}
|
||||||
- {fileID: 21300000, guid: 89783d5ddc9ab034687ff93732ebdfe0, type: 3}
|
- {fileID: 21300000, guid: 89783d5ddc9ab034687ff93732ebdfe0, type: 3}
|
||||||
- {fileID: 21300000, guid: f68fde5de9bc3bb4bb20c8c2e8de00e1, type: 3}
|
- {fileID: 21300000, guid: f68fde5de9bc3bb4bb20c8c2e8de00e1, type: 3}
|
||||||
- {fileID: 21300000, guid: 9f3b7b6d21ba7fe4fb1fc98279ed6af3, type: 3}
|
- {fileID: 21300000, guid: 9f3b7b6d21ba7fe4fb1fc98279ed6af3, type: 3}
|
||||||
@ -256,6 +269,7 @@ SpriteAtlas:
|
|||||||
- {fileID: 21300000, guid: b5366e3fbfd5bde4c85d58b28af1a050, type: 3}
|
- {fileID: 21300000, guid: b5366e3fbfd5bde4c85d58b28af1a050, type: 3}
|
||||||
- {fileID: 21300000, guid: 70658f5f22e6038469c551a1665ae009, type: 3}
|
- {fileID: 21300000, guid: 70658f5f22e6038469c551a1665ae009, type: 3}
|
||||||
- {fileID: 21300000, guid: 756e82bf5365819469e645ec8f1c04f6, type: 3}
|
- {fileID: 21300000, guid: 756e82bf5365819469e645ec8f1c04f6, type: 3}
|
||||||
|
- {fileID: 21300000, guid: f2cc14bf6524da94b8d0aed50c8c71e2, type: 3}
|
||||||
- {fileID: 21300000, guid: db34c4cf3382c88428f4b016d896829d, type: 3}
|
- {fileID: 21300000, guid: db34c4cf3382c88428f4b016d896829d, type: 3}
|
||||||
- {fileID: 21300000, guid: 2e3a1fdfbb599ba4babe604659b6e1df, type: 3}
|
- {fileID: 21300000, guid: 2e3a1fdfbb599ba4babe604659b6e1df, type: 3}
|
||||||
- {fileID: 21300000, guid: f006cfdf7637acd4daa55cc3f743ac29, type: 3}
|
- {fileID: 21300000, guid: f006cfdf7637acd4daa55cc3f743ac29, type: 3}
|
||||||
@ -272,11 +286,13 @@ SpriteAtlas:
|
|||||||
- common_dec_19
|
- common_dec_19
|
||||||
- common_btn_yellow_3
|
- common_btn_yellow_3
|
||||||
- common_board_106
|
- common_board_106
|
||||||
|
- common_btn_brown_2
|
||||||
- common_board_111
|
- common_board_111
|
||||||
- common_board_132
|
- common_board_132
|
||||||
- common_board_101
|
- common_board_101
|
||||||
- common_menu_2
|
- common_menu_2
|
||||||
- common_dec_21
|
- common_dec_21
|
||||||
|
- common_info_1
|
||||||
- common_bg_5
|
- common_bg_5
|
||||||
- common_lock_1
|
- common_lock_1
|
||||||
- common_dec_6
|
- common_dec_6
|
||||||
@ -292,6 +308,7 @@ SpriteAtlas:
|
|||||||
- common_title_15
|
- common_title_15
|
||||||
- common_title_6
|
- common_title_6
|
||||||
- common_line_8
|
- common_line_8
|
||||||
|
- common_board_36
|
||||||
- common_dec_27
|
- common_dec_27
|
||||||
- common_board_131
|
- common_board_131
|
||||||
- common_board_2
|
- common_board_2
|
||||||
@ -301,6 +318,7 @@ SpriteAtlas:
|
|||||||
- common_progress_2_bg
|
- common_progress_2_bg
|
||||||
- common_btn_back
|
- common_btn_back
|
||||||
- common_dec_3
|
- common_dec_3
|
||||||
|
- common_tick_2
|
||||||
- common_progress_3_bg
|
- common_progress_3_bg
|
||||||
- common_board_130
|
- common_board_130
|
||||||
- common_btn_green_2
|
- common_btn_green_2
|
||||||
@ -345,6 +363,7 @@ SpriteAtlas:
|
|||||||
- common_title_8
|
- common_title_8
|
||||||
- common_arrow_1
|
- common_arrow_1
|
||||||
- common_board_10
|
- common_board_10
|
||||||
|
- common_btn_yellow_6
|
||||||
- common_progress_1
|
- common_progress_1
|
||||||
- common_progress_4
|
- common_progress_4
|
||||||
- common_dec_29
|
- common_dec_29
|
||||||
@ -381,6 +400,7 @@ SpriteAtlas:
|
|||||||
- common_board_15
|
- common_board_15
|
||||||
- common_title_18
|
- common_title_18
|
||||||
- common_line_7
|
- common_line_7
|
||||||
|
- common_icon_shard
|
||||||
- common_bg_2
|
- common_bg_2
|
||||||
- common_dec_11
|
- common_dec_11
|
||||||
- common_line_1
|
- common_line_1
|
||||||
@ -392,6 +412,7 @@ SpriteAtlas:
|
|||||||
- common_check
|
- common_check
|
||||||
- common_board_20
|
- common_board_20
|
||||||
- common_btn_close
|
- common_btn_close
|
||||||
|
- common_board_35
|
||||||
- common_btn_blue_3
|
- common_btn_blue_3
|
||||||
- common_bg_11
|
- common_bg_11
|
||||||
- common_board_120
|
- common_board_120
|
||||||
@ -405,7 +426,9 @@ SpriteAtlas:
|
|||||||
- common_board_7
|
- common_board_7
|
||||||
- common_bg_10
|
- common_bg_10
|
||||||
- common_board_122
|
- common_board_122
|
||||||
|
- common_refresh_1
|
||||||
- common_board_124
|
- common_board_124
|
||||||
|
- common_new_1
|
||||||
- common_bg_3
|
- common_bg_3
|
||||||
- common_btn_green_1
|
- common_btn_green_1
|
||||||
- common_dec_24
|
- common_dec_24
|
||||||
@ -420,12 +443,16 @@ SpriteAtlas:
|
|||||||
- common_title_3
|
- common_title_3
|
||||||
- common_board_11
|
- common_board_11
|
||||||
- common_btn_red_2
|
- common_btn_red_2
|
||||||
|
- common_arrow_6
|
||||||
- common_board_23
|
- common_board_23
|
||||||
- common_alpha
|
- common_alpha
|
||||||
- common_point
|
- common_point
|
||||||
|
- common_btn_blue_6
|
||||||
|
- common_lock_2
|
||||||
- common_board_113
|
- common_board_113
|
||||||
- common_dec_12
|
- common_dec_12
|
||||||
- common_board_123
|
- common_board_123
|
||||||
|
- common_bg_28
|
||||||
- common_progress_1_bg
|
- common_progress_1_bg
|
||||||
- common_time
|
- common_time
|
||||||
- common_dec_17
|
- common_dec_17
|
||||||
@ -455,6 +482,7 @@ SpriteAtlas:
|
|||||||
- common_board_17
|
- common_board_17
|
||||||
- common_dec_5
|
- common_dec_5
|
||||||
- common_reduce_3
|
- common_reduce_3
|
||||||
|
- common_btn_yellow_5
|
||||||
- common_btn_refresh
|
- common_btn_refresh
|
||||||
- common_dec_7
|
- common_dec_7
|
||||||
- common_btn_dark_4
|
- common_btn_dark_4
|
||||||
|
|||||||
@ -86,6 +86,7 @@ SpriteAtlas:
|
|||||||
- {fileID: 21300000, guid: df3282ede5d4e6740b33cbb893059cb3, type: 3}
|
- {fileID: 21300000, guid: df3282ede5d4e6740b33cbb893059cb3, type: 3}
|
||||||
- {fileID: 21300000, guid: 2ae50aed0182729429de176b08707a75, type: 3}
|
- {fileID: 21300000, guid: 2ae50aed0182729429de176b08707a75, type: 3}
|
||||||
- {fileID: 21300000, guid: 42b38fed8c8d3464c925bb559928d444, type: 3}
|
- {fileID: 21300000, guid: 42b38fed8c8d3464c925bb559928d444, type: 3}
|
||||||
|
- {fileID: 21300000, guid: 24d78d1f987c0c749a35d02348225322, type: 3}
|
||||||
- {fileID: 21300000, guid: ecff65bf8ef41a24ebae8ea1de3c262c, type: 3}
|
- {fileID: 21300000, guid: ecff65bf8ef41a24ebae8ea1de3c262c, type: 3}
|
||||||
m_PackedSpriteNamesToIndex:
|
m_PackedSpriteNamesToIndex:
|
||||||
- main_btn_gift_3
|
- main_btn_gift_3
|
||||||
@ -112,6 +113,7 @@ SpriteAtlas:
|
|||||||
- maincity_gm
|
- maincity_gm
|
||||||
- main_btn_ringt
|
- main_btn_ringt
|
||||||
- main_btn_hang
|
- main_btn_hang
|
||||||
|
- main_bubble_1
|
||||||
- main_btn_sevenday
|
- main_btn_sevenday
|
||||||
m_RenderDataMap: {}
|
m_RenderDataMap: {}
|
||||||
m_Tag: main
|
m_Tag: main
|
||||||
|
|||||||
8
Assets/arts/spines/ui/ui_battle_yan.meta
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: a3d6560747c994f68a9748e58a750d33
|
||||||
|
folderAsset: yes
|
||||||
|
DefaultImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
7
Assets/arts/spines/ui/ui_battle_yan/ui_battle_yan.atlas.txt
Executable file
@ -0,0 +1,7 @@
|
|||||||
|
ui_battle_yan.png
|
||||||
|
size:128,128
|
||||||
|
filter:Linear,Linear
|
||||||
|
yan1
|
||||||
|
bounds:2,2,47,47
|
||||||
|
yan2
|
||||||
|
bounds:2,51,81,74
|
||||||
7
Assets/arts/spines/ui/ui_battle_yan/ui_battle_yan.atlas.txt.meta
Executable file
@ -0,0 +1,7 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 797fb3379c2518f4cbe95bacbadad33a
|
||||||
|
TextScriptImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/spines/ui/ui_battle_yan.ab
|
||||||
|
assetBundleVariant:
|
||||||
BIN
Assets/arts/spines/ui/ui_battle_yan/ui_battle_yan.png
Executable file
|
After Width: | Height: | Size: 2.4 KiB |
147
Assets/arts/spines/ui/ui_battle_yan/ui_battle_yan.png.meta
Executable file
@ -0,0 +1,147 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: c83319063191a26499ac1577ccdf05ae
|
||||||
|
TextureImporter:
|
||||||
|
internalIDToNameTable: []
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 12
|
||||||
|
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
|
||||||
|
ignoreMasterTextureLimit: 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: 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
|
||||||
|
cookieLightType: 0
|
||||||
|
platformSettings:
|
||||||
|
- serializedVersion: 3
|
||||||
|
buildTarget: DefaultTexturePlatform
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: -1
|
||||||
|
textureCompression: 0
|
||||||
|
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: 0
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 0
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 1
|
||||||
|
- 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: 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: Server
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: -1
|
||||||
|
textureCompression: 0
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 0
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 1
|
||||||
|
spriteSheet:
|
||||||
|
serializedVersion: 2
|
||||||
|
sprites: []
|
||||||
|
outline: []
|
||||||
|
physicsShape: []
|
||||||
|
bones: []
|
||||||
|
spriteID:
|
||||||
|
internalID: 0
|
||||||
|
vertices: []
|
||||||
|
indices:
|
||||||
|
edges: []
|
||||||
|
weights: []
|
||||||
|
secondaryTextures: []
|
||||||
|
nameFileIdTable: {}
|
||||||
|
spritePackingTag:
|
||||||
|
pSDRemoveMatte: 0
|
||||||
|
pSDShowRemoveMatteOption: 0
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/spines/ui/ui_battle_yan.ab
|
||||||
|
assetBundleVariant:
|
||||||
BIN
Assets/arts/spines/ui/ui_battle_yan/ui_battle_yan.skel.bytes
Executable file
7
Assets/arts/spines/ui/ui_battle_yan/ui_battle_yan.skel.bytes.meta
Executable file
@ -0,0 +1,7 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 8d9654de4eb07ba4abbc52a82873dd76
|
||||||
|
TextScriptImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/spines/ui/ui_battle_yan.ab
|
||||||
|
assetBundleVariant:
|
||||||
@ -0,0 +1,19 @@
|
|||||||
|
%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_battle_yan_atlas
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
textureLoadingMode: 0
|
||||||
|
onDemandTextureLoader: {fileID: 0}
|
||||||
|
atlasFile: {fileID: 4900000, guid: 797fb3379c2518f4cbe95bacbadad33a, type: 3}
|
||||||
|
materials:
|
||||||
|
- {fileID: 2100000, guid: 2e048f46be58ec74cb78de24a2552582, type: 2}
|
||||||
8
Assets/arts/spines/ui/ui_battle_yan/ui_battle_yan_atlas.asset.meta
Executable file
@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 1961402d26ff8a94e9593a0e1ceb9352
|
||||||
|
NativeFormatImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
mainObjectFileID: 11400000
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/spines/ui/ui_battle_yan.ab
|
||||||
|
assetBundleVariant:
|
||||||
@ -0,0 +1,45 @@
|
|||||||
|
%YAML 1.1
|
||||||
|
%TAG !u! tag:unity3d.com,2011:
|
||||||
|
--- !u!21 &2100000
|
||||||
|
Material:
|
||||||
|
serializedVersion: 8
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_Name: ui_battle_yan_material
|
||||||
|
m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
|
||||||
|
m_ValidKeywords:
|
||||||
|
- _STRAIGHT_ALPHA_INPUT
|
||||||
|
m_InvalidKeywords:
|
||||||
|
- _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: c83319063191a26499ac1577ccdf05ae, type: 3}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
m_Ints: []
|
||||||
|
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}
|
||||||
|
- _glow_color: {r: 0, g: 0, b: 0, a: 1}
|
||||||
|
m_BuildTextureStacks: []
|
||||||
8
Assets/arts/spines/ui/ui_battle_yan/ui_battle_yan_material.mat.meta
Executable file
@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 2e048f46be58ec74cb78de24a2552582
|
||||||
|
NativeFormatImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
mainObjectFileID: 2100000
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/spines/ui/ui_battle_yan.ab
|
||||||
|
assetBundleVariant:
|
||||||
31
Assets/arts/spines/ui/ui_battle_yan/ui_battle_yan_skeletondata.asset
Executable 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: ui_battle_yan_skeletondata
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
atlasAssets:
|
||||||
|
- {fileID: 11400000, guid: 1961402d26ff8a94e9593a0e1ceb9352, type: 2}
|
||||||
|
scale: 0.01
|
||||||
|
skeletonJSON: {fileID: 4900000, guid: 8d9654de4eb07ba4abbc52a82873dd76, 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: 5bf0bac615870694bae2be1661b25535
|
||||||
|
NativeFormatImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
mainObjectFileID: 11400000
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/spines/ui/ui_battle_yan.ab
|
||||||
|
assetBundleVariant:
|
||||||
8
Assets/arts/spines/ui/ui_common_light.meta
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 886c9d922d13a47a1b0474372d685a13
|
||||||
|
folderAsset: yes
|
||||||
|
DefaultImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
24
Assets/arts/spines/ui/ui_common_light/ui_common_light.atlas.txt
Executable file
@ -0,0 +1,24 @@
|
|||||||
|
ui_common_light.png
|
||||||
|
size:512,512
|
||||||
|
filter:Linear,Linear
|
||||||
|
frame_4
|
||||||
|
bounds:134,337,98,98
|
||||||
|
frame_5
|
||||||
|
bounds:6,81,98,98
|
||||||
|
frame_6
|
||||||
|
bounds:134,233,98,98
|
||||||
|
g22
|
||||||
|
bounds:238,366,6,69
|
||||||
|
g33
|
||||||
|
bounds:6,6,6,69
|
||||||
|
g44
|
||||||
|
bounds:110,110,6,69
|
||||||
|
g_r
|
||||||
|
bounds:6,313,122,122
|
||||||
|
offsets:1,1,124,124
|
||||||
|
g_y
|
||||||
|
bounds:6,185,122,122
|
||||||
|
offsets:1,1,124,124
|
||||||
|
xx
|
||||||
|
bounds:134,199,28,28
|
||||||
|
offsets:1,0,29,29
|
||||||
7
Assets/arts/spines/ui/ui_common_light/ui_common_light.atlas.txt.meta
Executable file
@ -0,0 +1,7 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 11d42e6f0d290524985cd8d8bdebc2f3
|
||||||
|
TextScriptImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/spines/ui/ui_common_light.ab
|
||||||
|
assetBundleVariant:
|
||||||
BIN
Assets/arts/spines/ui/ui_common_light/ui_common_light.png
Executable file
|
After Width: | Height: | Size: 23 KiB |
147
Assets/arts/spines/ui/ui_common_light/ui_common_light.png.meta
Executable file
@ -0,0 +1,147 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 6bea498b93c24244997937d29a6aa109
|
||||||
|
TextureImporter:
|
||||||
|
internalIDToNameTable: []
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 12
|
||||||
|
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
|
||||||
|
ignoreMasterTextureLimit: 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: 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
|
||||||
|
cookieLightType: 0
|
||||||
|
platformSettings:
|
||||||
|
- serializedVersion: 3
|
||||||
|
buildTarget: DefaultTexturePlatform
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: -1
|
||||||
|
textureCompression: 0
|
||||||
|
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: 0
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 0
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 1
|
||||||
|
- 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: 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: Server
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: -1
|
||||||
|
textureCompression: 0
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 0
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 1
|
||||||
|
spriteSheet:
|
||||||
|
serializedVersion: 2
|
||||||
|
sprites: []
|
||||||
|
outline: []
|
||||||
|
physicsShape: []
|
||||||
|
bones: []
|
||||||
|
spriteID:
|
||||||
|
internalID: 0
|
||||||
|
vertices: []
|
||||||
|
indices:
|
||||||
|
edges: []
|
||||||
|
weights: []
|
||||||
|
secondaryTextures: []
|
||||||
|
nameFileIdTable: {}
|
||||||
|
spritePackingTag:
|
||||||
|
pSDRemoveMatte: 0
|
||||||
|
pSDShowRemoveMatteOption: 0
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/spines/ui/ui_common_light.ab
|
||||||
|
assetBundleVariant:
|
||||||
BIN
Assets/arts/spines/ui/ui_common_light/ui_common_light.skel.bytes
Executable file
7
Assets/arts/spines/ui/ui_common_light/ui_common_light.skel.bytes.meta
Executable file
@ -0,0 +1,7 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: d9d9d3c4689b38c44a7dae464cb64140
|
||||||
|
TextScriptImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/spines/ui/ui_common_light.ab
|
||||||
|
assetBundleVariant:
|
||||||
@ -0,0 +1,19 @@
|
|||||||
|
%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_common_light_atlas
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
textureLoadingMode: 0
|
||||||
|
onDemandTextureLoader: {fileID: 0}
|
||||||
|
atlasFile: {fileID: 4900000, guid: 11d42e6f0d290524985cd8d8bdebc2f3, type: 3}
|
||||||
|
materials:
|
||||||
|
- {fileID: 2100000, guid: 5d8e29f95a59d2d44ab2ab93ea7800a4, type: 2}
|
||||||
8
Assets/arts/spines/ui/ui_common_light/ui_common_light_atlas.asset.meta
Executable file
@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 790d821818988c34c8ffc8cd7346a07d
|
||||||
|
NativeFormatImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
mainObjectFileID: 11400000
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/spines/ui/ui_common_light.ab
|
||||||
|
assetBundleVariant:
|
||||||
@ -0,0 +1,45 @@
|
|||||||
|
%YAML 1.1
|
||||||
|
%TAG !u! tag:unity3d.com,2011:
|
||||||
|
--- !u!21 &2100000
|
||||||
|
Material:
|
||||||
|
serializedVersion: 8
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_Name: ui_common_light_material
|
||||||
|
m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
|
||||||
|
m_ValidKeywords:
|
||||||
|
- _STRAIGHT_ALPHA_INPUT
|
||||||
|
m_InvalidKeywords:
|
||||||
|
- _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: 6bea498b93c24244997937d29a6aa109, type: 3}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
m_Ints: []
|
||||||
|
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}
|
||||||
|
- _glow_color: {r: 0, g: 0, b: 0, a: 1}
|
||||||
|
m_BuildTextureStacks: []
|
||||||
8
Assets/arts/spines/ui/ui_common_light/ui_common_light_material.mat.meta
Executable file
@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 5d8e29f95a59d2d44ab2ab93ea7800a4
|
||||||
|
NativeFormatImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
mainObjectFileID: 2100000
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/spines/ui/ui_common_light.ab
|
||||||
|
assetBundleVariant:
|
||||||
31
Assets/arts/spines/ui/ui_common_light/ui_common_light_skeletondata.asset
Executable 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: ui_common_light_skeletondata
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
atlasAssets:
|
||||||
|
- {fileID: 11400000, guid: 790d821818988c34c8ffc8cd7346a07d, type: 2}
|
||||||
|
scale: 0.01
|
||||||
|
skeletonJSON: {fileID: 4900000, guid: d9d9d3c4689b38c44a7dae464cb64140, type: 3}
|
||||||
|
isUpgradingBlendModeMaterials: 0
|
||||||
|
blendModeMaterials:
|
||||||
|
requiresBlendModeMaterials: 0
|
||||||
|
applyAdditiveMaterial: 0
|
||||||
|
additiveMaterials: []
|
||||||
|
multiplyMaterials: []
|
||||||
|
screenMaterials: []
|
||||||
|
skeletonDataModifiers: []
|
||||||
|
fromAnimation: []
|
||||||
|
toAnimation: []
|
||||||
|
duration: []
|
||||||
|
defaultMix: 0
|
||||||
|
controller: {fileID: 0}
|
||||||
@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: bc7bc75adbf682442a86b84feb1d73b8
|
||||||
|
NativeFormatImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
mainObjectFileID: 11400000
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/spines/ui/ui_common_light.ab
|
||||||
|
assetBundleVariant:
|
||||||
8
Assets/arts/spines/ui/ui_draw_light_1.meta
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: ef5d8477016874d228a09a1bdd8f85e3
|
||||||
|
folderAsset: yes
|
||||||
|
DefaultImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
8
Assets/arts/spines/ui/ui_draw_light_1/ui_draw_light_1.atlas.txt
Executable file
@ -0,0 +1,8 @@
|
|||||||
|
ui_draw_light_1.png
|
||||||
|
size:512,512
|
||||||
|
filter:Linear,Linear
|
||||||
|
bai
|
||||||
|
bounds:6,6,98,98
|
||||||
|
g1
|
||||||
|
bounds:6,110,194,194
|
||||||
|
offsets:2,2,198,198
|
||||||
7
Assets/arts/spines/ui/ui_draw_light_1/ui_draw_light_1.atlas.txt.meta
Executable file
@ -0,0 +1,7 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 88eab76e4bfb81340a8bb706b837ea79
|
||||||
|
TextScriptImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/spines/ui/ui_draw_light_1.ab
|
||||||
|
assetBundleVariant:
|
||||||
BIN
Assets/arts/spines/ui/ui_draw_light_1/ui_draw_light_1.png
Executable file
|
After Width: | Height: | Size: 29 KiB |
147
Assets/arts/spines/ui/ui_draw_light_1/ui_draw_light_1.png.meta
Executable file
@ -0,0 +1,147 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 880464c1784d84947ad59d1fe1d88d1a
|
||||||
|
TextureImporter:
|
||||||
|
internalIDToNameTable: []
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 12
|
||||||
|
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
|
||||||
|
ignoreMasterTextureLimit: 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: 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
|
||||||
|
cookieLightType: 0
|
||||||
|
platformSettings:
|
||||||
|
- serializedVersion: 3
|
||||||
|
buildTarget: DefaultTexturePlatform
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: -1
|
||||||
|
textureCompression: 0
|
||||||
|
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: 0
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 0
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 1
|
||||||
|
- 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: 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: Server
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: -1
|
||||||
|
textureCompression: 0
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 0
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 1
|
||||||
|
spriteSheet:
|
||||||
|
serializedVersion: 2
|
||||||
|
sprites: []
|
||||||
|
outline: []
|
||||||
|
physicsShape: []
|
||||||
|
bones: []
|
||||||
|
spriteID:
|
||||||
|
internalID: 0
|
||||||
|
vertices: []
|
||||||
|
indices:
|
||||||
|
edges: []
|
||||||
|
weights: []
|
||||||
|
secondaryTextures: []
|
||||||
|
nameFileIdTable: {}
|
||||||
|
spritePackingTag:
|
||||||
|
pSDRemoveMatte: 0
|
||||||
|
pSDShowRemoveMatteOption: 0
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/spines/ui/ui_draw_light_1.ab
|
||||||
|
assetBundleVariant:
|
||||||
BIN
Assets/arts/spines/ui/ui_draw_light_1/ui_draw_light_1.skel.bytes
Executable file
7
Assets/arts/spines/ui/ui_draw_light_1/ui_draw_light_1.skel.bytes.meta
Executable file
@ -0,0 +1,7 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 09462931da030014d811b87603f93260
|
||||||
|
TextScriptImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/spines/ui/ui_draw_light_1.ab
|
||||||
|
assetBundleVariant:
|
||||||
@ -0,0 +1,19 @@
|
|||||||
|
%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_draw_light_1_atlas
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
textureLoadingMode: 0
|
||||||
|
onDemandTextureLoader: {fileID: 0}
|
||||||
|
atlasFile: {fileID: 4900000, guid: 88eab76e4bfb81340a8bb706b837ea79, type: 3}
|
||||||
|
materials:
|
||||||
|
- {fileID: 2100000, guid: 3fc9a2746acd6db44aaa9d7d60daa5eb, type: 2}
|
||||||
8
Assets/arts/spines/ui/ui_draw_light_1/ui_draw_light_1_atlas.asset.meta
Executable file
@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 93993eacbb530884fb920644842124ad
|
||||||
|
NativeFormatImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
mainObjectFileID: 11400000
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/spines/ui/ui_draw_light_1.ab
|
||||||
|
assetBundleVariant:
|
||||||
@ -0,0 +1,45 @@
|
|||||||
|
%YAML 1.1
|
||||||
|
%TAG !u! tag:unity3d.com,2011:
|
||||||
|
--- !u!21 &2100000
|
||||||
|
Material:
|
||||||
|
serializedVersion: 8
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_Name: ui_draw_light_1_material
|
||||||
|
m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
|
||||||
|
m_ValidKeywords:
|
||||||
|
- _STRAIGHT_ALPHA_INPUT
|
||||||
|
m_InvalidKeywords:
|
||||||
|
- _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: 880464c1784d84947ad59d1fe1d88d1a, type: 3}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
m_Ints: []
|
||||||
|
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}
|
||||||
|
- _glow_color: {r: 0, g: 0, b: 0, a: 1}
|
||||||
|
m_BuildTextureStacks: []
|
||||||
8
Assets/arts/spines/ui/ui_draw_light_1/ui_draw_light_1_material.mat.meta
Executable file
@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 3fc9a2746acd6db44aaa9d7d60daa5eb
|
||||||
|
NativeFormatImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
mainObjectFileID: 2100000
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/spines/ui/ui_draw_light_1.ab
|
||||||
|
assetBundleVariant:
|
||||||
31
Assets/arts/spines/ui/ui_draw_light_1/ui_draw_light_1_skeletondata.asset
Executable 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: ui_draw_light_1_skeletondata
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
atlasAssets:
|
||||||
|
- {fileID: 11400000, guid: 93993eacbb530884fb920644842124ad, type: 2}
|
||||||
|
scale: 0.01
|
||||||
|
skeletonJSON: {fileID: 4900000, guid: 09462931da030014d811b87603f93260, type: 3}
|
||||||
|
isUpgradingBlendModeMaterials: 0
|
||||||
|
blendModeMaterials:
|
||||||
|
requiresBlendModeMaterials: 0
|
||||||
|
applyAdditiveMaterial: 0
|
||||||
|
additiveMaterials: []
|
||||||
|
multiplyMaterials: []
|
||||||
|
screenMaterials: []
|
||||||
|
skeletonDataModifiers: []
|
||||||
|
fromAnimation: []
|
||||||
|
toAnimation: []
|
||||||
|
duration: []
|
||||||
|
defaultMix: 0
|
||||||
|
controller: {fileID: 0}
|
||||||
@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: e81c72b21f22a5f41acc4ce852f39448
|
||||||
|
NativeFormatImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
mainObjectFileID: 11400000
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/spines/ui/ui_draw_light_1.ab
|
||||||
|
assetBundleVariant:
|
||||||
8
Assets/arts/spines/ui/ui_item_available.meta
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: cf348402aa5cc495e90dd762863c166a
|
||||||
|
folderAsset: yes
|
||||||
|
DefaultImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
21
Assets/arts/spines/ui/ui_item_available/ui_item_available.atlas.txt
Executable file
@ -0,0 +1,21 @@
|
|||||||
|
ui_item_available.png
|
||||||
|
size:256,256
|
||||||
|
filter:Linear,Linear
|
||||||
|
jiao_1
|
||||||
|
bounds:112,74,60,60
|
||||||
|
offsets:1,0,61,61
|
||||||
|
jiao_2
|
||||||
|
bounds:108,12,60,60
|
||||||
|
offsets:0,0,61,61
|
||||||
|
jiao_3
|
||||||
|
bounds:174,74,60,60
|
||||||
|
offsets:1,1,61,61
|
||||||
|
jiao_4
|
||||||
|
bounds:170,12,60,60
|
||||||
|
offsets:0,1,61,61
|
||||||
|
quan1
|
||||||
|
bounds:2,126,108,108
|
||||||
|
quan2
|
||||||
|
bounds:2,20,104,104
|
||||||
|
zhao
|
||||||
|
bounds:112,136,98,98
|
||||||
7
Assets/arts/spines/ui/ui_item_available/ui_item_available.atlas.txt.meta
Executable file
@ -0,0 +1,7 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 7955f62e8e9f4a44cb1de9c23805c318
|
||||||
|
TextScriptImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/spines/ui/ui_item_available.ab
|
||||||
|
assetBundleVariant:
|
||||||
BIN
Assets/arts/spines/ui/ui_item_available/ui_item_available.png
Executable file
|
After Width: | Height: | Size: 12 KiB |
147
Assets/arts/spines/ui/ui_item_available/ui_item_available.png.meta
Executable file
@ -0,0 +1,147 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: ce60efc50e19e2c46a23aaa87c44d5a9
|
||||||
|
TextureImporter:
|
||||||
|
internalIDToNameTable: []
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 12
|
||||||
|
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
|
||||||
|
ignoreMasterTextureLimit: 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: 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
|
||||||
|
cookieLightType: 0
|
||||||
|
platformSettings:
|
||||||
|
- serializedVersion: 3
|
||||||
|
buildTarget: DefaultTexturePlatform
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: -1
|
||||||
|
textureCompression: 0
|
||||||
|
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: 0
|
||||||
|
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: Server
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: -1
|
||||||
|
textureCompression: 0
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 0
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 1
|
||||||
|
- 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: []
|
||||||
|
nameFileIdTable: {}
|
||||||
|
spritePackingTag:
|
||||||
|
pSDRemoveMatte: 0
|
||||||
|
pSDShowRemoveMatteOption: 0
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/spines/ui/ui_item_available.ab
|
||||||
|
assetBundleVariant:
|
||||||
BIN
Assets/arts/spines/ui/ui_item_available/ui_item_available.skel.bytes
Executable file
@ -0,0 +1,7 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 943da316d6753cc4dbe7a09b6debf76e
|
||||||
|
TextScriptImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/spines/ui/ui_item_available.ab
|
||||||
|
assetBundleVariant:
|
||||||
@ -0,0 +1,19 @@
|
|||||||
|
%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_item_available_atlas
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
textureLoadingMode: 0
|
||||||
|
onDemandTextureLoader: {fileID: 0}
|
||||||
|
atlasFile: {fileID: 4900000, guid: 7955f62e8e9f4a44cb1de9c23805c318, type: 3}
|
||||||
|
materials:
|
||||||
|
- {fileID: 2100000, guid: 322785377b43a654698426c7d7b64251, type: 2}
|
||||||
@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 8afd16f37602fce4aa7af4641fdaa3c3
|
||||||
|
NativeFormatImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
mainObjectFileID: 11400000
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/spines/ui/ui_item_available.ab
|
||||||
|
assetBundleVariant:
|
||||||
@ -0,0 +1,45 @@
|
|||||||
|
%YAML 1.1
|
||||||
|
%TAG !u! tag:unity3d.com,2011:
|
||||||
|
--- !u!21 &2100000
|
||||||
|
Material:
|
||||||
|
serializedVersion: 8
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_Name: ui_item_available_material
|
||||||
|
m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
|
||||||
|
m_ValidKeywords:
|
||||||
|
- _STRAIGHT_ALPHA_INPUT
|
||||||
|
m_InvalidKeywords:
|
||||||
|
- _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: ce60efc50e19e2c46a23aaa87c44d5a9, type: 3}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
m_Ints: []
|
||||||
|
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}
|
||||||
|
- _glow_color: {r: 0, g: 0, b: 0, a: 1}
|
||||||
|
m_BuildTextureStacks: []
|
||||||
@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 322785377b43a654698426c7d7b64251
|
||||||
|
NativeFormatImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
mainObjectFileID: 2100000
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/spines/ui/ui_item_available.ab
|
||||||
|
assetBundleVariant:
|
||||||
31
Assets/arts/spines/ui/ui_item_available/ui_item_available_skeletondata.asset
Executable 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: ui_item_available_skeletondata
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
atlasAssets:
|
||||||
|
- {fileID: 11400000, guid: 8afd16f37602fce4aa7af4641fdaa3c3, type: 2}
|
||||||
|
scale: 0.01
|
||||||
|
skeletonJSON: {fileID: 4900000, guid: 943da316d6753cc4dbe7a09b6debf76e, 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: 3401b777b6a670344a06406a9c51157a
|
||||||
|
NativeFormatImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
mainObjectFileID: 11400000
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/spines/ui/ui_item_available.ab
|
||||||
|
assetBundleVariant:
|
||||||
8
Assets/arts/spines/ui/ui_main_btn_idle.meta
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: ae2b03863e46a441890662276c1a3c18
|
||||||
|
folderAsset: yes
|
||||||
|
DefaultImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
62
Assets/arts/spines/ui/ui_main_btn_idle/ui_main_btn_idle.atlas.txt
Executable file
@ -0,0 +1,62 @@
|
|||||||
|
ui_main_btn_idle.png
|
||||||
|
size:256,256
|
||||||
|
filter:Linear,Linear
|
||||||
|
baoshi
|
||||||
|
bounds:178,108,25,25
|
||||||
|
offsets:1,1,27,27
|
||||||
|
baoxiang
|
||||||
|
bounds:2,115,83,55
|
||||||
|
offsets:1,1,86,57
|
||||||
|
jb_1
|
||||||
|
bounds:148,174,66,30
|
||||||
|
offsets:1,2,68,33
|
||||||
|
jb_2
|
||||||
|
bounds:178,135,37,23
|
||||||
|
offsets:1,1,39,25
|
||||||
|
rotate:90
|
||||||
|
jb_3
|
||||||
|
bounds:203,144,28,22
|
||||||
|
offsets:1,1,30,24
|
||||||
|
rotate:90
|
||||||
|
jian
|
||||||
|
bounds:87,120,46,50
|
||||||
|
offsets:1,1,48,52
|
||||||
|
jingxia
|
||||||
|
bounds:71,83,30,26
|
||||||
|
rotate:90
|
||||||
|
long_1
|
||||||
|
bounds:71,74,18,7
|
||||||
|
offsets:3,2,22,11
|
||||||
|
long_19
|
||||||
|
bounds:135,121,41,49
|
||||||
|
long_2
|
||||||
|
bounds:65,66,4,4
|
||||||
|
offsets:1,1,6,6
|
||||||
|
long_3
|
||||||
|
bounds:2,3,19,19
|
||||||
|
offsets:1,1,21,21
|
||||||
|
long_4
|
||||||
|
bounds:2,72,67,41
|
||||||
|
offsets:1,1,69,43
|
||||||
|
long_5
|
||||||
|
bounds:219,214,40,30
|
||||||
|
offsets:1,1,42,32
|
||||||
|
rotate:90
|
||||||
|
long_6
|
||||||
|
bounds:2,24,61,46
|
||||||
|
long_7
|
||||||
|
bounds:148,206,69,48
|
||||||
|
long_8
|
||||||
|
bounds:2,172,144,82
|
||||||
|
offsets:1,1,146,116
|
||||||
|
qipao
|
||||||
|
bounds:23,6,18,16
|
||||||
|
tiao
|
||||||
|
bounds:251,242,3,12
|
||||||
|
xx
|
||||||
|
bounds:205,114,28,28
|
||||||
|
offsets:1,0,29,29
|
||||||
|
xx2
|
||||||
|
bounds:99,89,29,29
|
||||||
|
z
|
||||||
|
bounds:43,6,15,16
|
||||||
7
Assets/arts/spines/ui/ui_main_btn_idle/ui_main_btn_idle.atlas.txt.meta
Executable file
@ -0,0 +1,7 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 73168db2dab5b8940ac232c4cbebb0e9
|
||||||
|
TextScriptImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/spines/ui/ui_main_btn_idle.ab
|
||||||
|
assetBundleVariant:
|
||||||
BIN
Assets/arts/spines/ui/ui_main_btn_idle/ui_main_btn_idle.png
Executable file
|
After Width: | Height: | Size: 41 KiB |
147
Assets/arts/spines/ui/ui_main_btn_idle/ui_main_btn_idle.png.meta
Executable file
@ -0,0 +1,147 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 6ae6a4e685cbc9d4eb9d17e95044a2da
|
||||||
|
TextureImporter:
|
||||||
|
internalIDToNameTable: []
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 12
|
||||||
|
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
|
||||||
|
ignoreMasterTextureLimit: 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: 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
|
||||||
|
cookieLightType: 0
|
||||||
|
platformSettings:
|
||||||
|
- serializedVersion: 3
|
||||||
|
buildTarget: DefaultTexturePlatform
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: -1
|
||||||
|
textureCompression: 0
|
||||||
|
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: 0
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 0
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 1
|
||||||
|
- 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: 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: Server
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: -1
|
||||||
|
textureCompression: 0
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 0
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 1
|
||||||
|
spriteSheet:
|
||||||
|
serializedVersion: 2
|
||||||
|
sprites: []
|
||||||
|
outline: []
|
||||||
|
physicsShape: []
|
||||||
|
bones: []
|
||||||
|
spriteID:
|
||||||
|
internalID: 0
|
||||||
|
vertices: []
|
||||||
|
indices:
|
||||||
|
edges: []
|
||||||
|
weights: []
|
||||||
|
secondaryTextures: []
|
||||||
|
nameFileIdTable: {}
|
||||||
|
spritePackingTag:
|
||||||
|
pSDRemoveMatte: 0
|
||||||
|
pSDShowRemoveMatteOption: 0
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/spines/ui/ui_main_btn_idle.ab
|
||||||
|
assetBundleVariant:
|
||||||
BIN
Assets/arts/spines/ui/ui_main_btn_idle/ui_main_btn_idle.skel.bytes
Executable file
7
Assets/arts/spines/ui/ui_main_btn_idle/ui_main_btn_idle.skel.bytes.meta
Executable file
@ -0,0 +1,7 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 9f797cbe8cfcb9044b669feb25268f06
|
||||||
|
TextScriptImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/spines/ui/ui_main_btn_idle.ab
|
||||||
|
assetBundleVariant:
|
||||||
@ -0,0 +1,19 @@
|
|||||||
|
%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_main_btn_idle_atlas
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
textureLoadingMode: 0
|
||||||
|
onDemandTextureLoader: {fileID: 0}
|
||||||
|
atlasFile: {fileID: 4900000, guid: 73168db2dab5b8940ac232c4cbebb0e9, type: 3}
|
||||||
|
materials:
|
||||||
|
- {fileID: 2100000, guid: bd3518ab35aedea41b5d749db226d2e5, type: 2}
|
||||||
8
Assets/arts/spines/ui/ui_main_btn_idle/ui_main_btn_idle_atlas.asset.meta
Executable file
@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: ccc13927a9faefa4dbdee68bcb2f02af
|
||||||
|
NativeFormatImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
mainObjectFileID: 11400000
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/spines/ui/ui_main_btn_idle.ab
|
||||||
|
assetBundleVariant:
|
||||||
@ -0,0 +1,45 @@
|
|||||||
|
%YAML 1.1
|
||||||
|
%TAG !u! tag:unity3d.com,2011:
|
||||||
|
--- !u!21 &2100000
|
||||||
|
Material:
|
||||||
|
serializedVersion: 8
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_Name: ui_main_btn_idle_material
|
||||||
|
m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
|
||||||
|
m_ValidKeywords:
|
||||||
|
- _STRAIGHT_ALPHA_INPUT
|
||||||
|
m_InvalidKeywords:
|
||||||
|
- _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: 6ae6a4e685cbc9d4eb9d17e95044a2da, type: 3}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
m_Ints: []
|
||||||
|
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}
|
||||||
|
- _glow_color: {r: 0, g: 0, b: 0, a: 1}
|
||||||
|
m_BuildTextureStacks: []
|
||||||
@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: bd3518ab35aedea41b5d749db226d2e5
|
||||||
|
NativeFormatImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
mainObjectFileID: 2100000
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/spines/ui/ui_main_btn_idle.ab
|
||||||
|
assetBundleVariant:
|
||||||
31
Assets/arts/spines/ui/ui_main_btn_idle/ui_main_btn_idle_skeletondata.asset
Executable 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: ui_main_btn_idle_skeletondata
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
atlasAssets:
|
||||||
|
- {fileID: 11400000, guid: ccc13927a9faefa4dbdee68bcb2f02af, type: 2}
|
||||||
|
scale: 0.01
|
||||||
|
skeletonJSON: {fileID: 4900000, guid: 9f797cbe8cfcb9044b669feb25268f06, 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: b3dec547baf29d94b9cc4924df7a4bef
|
||||||
|
NativeFormatImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
mainObjectFileID: 11400000
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/spines/ui/ui_main_btn_idle.ab
|
||||||
|
assetBundleVariant:
|
||||||
8
Assets/arts/spines/ui/ui_main_btn_raffle.meta
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 4d41bfca0b8fa4b5c900aa1f67cd7fb5
|
||||||
|
folderAsset: yes
|
||||||
|
DefaultImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
60
Assets/arts/spines/ui/ui_main_btn_raffle/ui_main_btn_raffle.atlas.txt
Executable file
@ -0,0 +1,60 @@
|
|||||||
|
ui_main_btn_raffle.png
|
||||||
|
size:512,512
|
||||||
|
filter:Linear,Linear
|
||||||
|
bing
|
||||||
|
bounds:441,441,21,21
|
||||||
|
offsets:1,1,23,23
|
||||||
|
bizi
|
||||||
|
bounds:175,375,28,17
|
||||||
|
offsets:1,1,30,19
|
||||||
|
dizuo
|
||||||
|
bounds:2,143,110,52
|
||||||
|
offsets:1,1,112,54
|
||||||
|
rotate:90
|
||||||
|
dizuo2
|
||||||
|
bounds:2,62,22,37
|
||||||
|
offsets:1,1,24,39
|
||||||
|
dizuo3
|
||||||
|
bounds:98,272,22,37
|
||||||
|
offsets:1,1,24,39
|
||||||
|
gan
|
||||||
|
bounds:409,415,15,30
|
||||||
|
offsets:1,1,17,32
|
||||||
|
rotate:90
|
||||||
|
kong
|
||||||
|
bounds:56,204,34,12
|
||||||
|
offsets:1,1,36,14
|
||||||
|
kuang
|
||||||
|
bounds:325,405,82,57
|
||||||
|
offsets:1,1,84,59
|
||||||
|
kuang2
|
||||||
|
bounds:139,394,106,68
|
||||||
|
offsets:1,1,108,70
|
||||||
|
qiu_1
|
||||||
|
bounds:2,101,41,40
|
||||||
|
offsets:1,1,43,42
|
||||||
|
qiu_2
|
||||||
|
bounds:56,218,35,35
|
||||||
|
offsets:1,1,37,37
|
||||||
|
qiu_3
|
||||||
|
bounds:98,311,38,39
|
||||||
|
offsets:1,1,40,41
|
||||||
|
qiu_4
|
||||||
|
bounds:139,357,34,35
|
||||||
|
offsets:1,1,36,37
|
||||||
|
qiu_5
|
||||||
|
bounds:409,432,30,30
|
||||||
|
offsets:1,1,32,32
|
||||||
|
yanhua1
|
||||||
|
bounds:247,388,74,76
|
||||||
|
offsets:1,1,76,78
|
||||||
|
rotate:90
|
||||||
|
yanhua2
|
||||||
|
bounds:2,255,94,95
|
||||||
|
offsets:3,2,100,100
|
||||||
|
yanhua3
|
||||||
|
bounds:325,394,9,55
|
||||||
|
offsets:0,1,9,56
|
||||||
|
rotate:90
|
||||||
|
ying
|
||||||
|
bounds:2,352,135,110
|
||||||
@ -0,0 +1,7 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 9101bd2b4411b7444b62fca0f12e69cc
|
||||||
|
TextScriptImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/spines/ui/ui_main_btn_raffle.ab
|
||||||
|
assetBundleVariant:
|
||||||
BIN
Assets/arts/spines/ui/ui_main_btn_raffle/ui_main_btn_raffle.png
Executable file
|
After Width: | Height: | Size: 42 KiB |
147
Assets/arts/spines/ui/ui_main_btn_raffle/ui_main_btn_raffle.png.meta
Executable file
@ -0,0 +1,147 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: aa61bedd1ae18e2419e344e7f2ccf1ee
|
||||||
|
TextureImporter:
|
||||||
|
internalIDToNameTable: []
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 12
|
||||||
|
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
|
||||||
|
ignoreMasterTextureLimit: 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: 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
|
||||||
|
cookieLightType: 0
|
||||||
|
platformSettings:
|
||||||
|
- serializedVersion: 3
|
||||||
|
buildTarget: DefaultTexturePlatform
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: -1
|
||||||
|
textureCompression: 0
|
||||||
|
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: 0
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 0
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 1
|
||||||
|
- 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: 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: Server
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: -1
|
||||||
|
textureCompression: 0
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 0
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 1
|
||||||
|
spriteSheet:
|
||||||
|
serializedVersion: 2
|
||||||
|
sprites: []
|
||||||
|
outline: []
|
||||||
|
physicsShape: []
|
||||||
|
bones: []
|
||||||
|
spriteID:
|
||||||
|
internalID: 0
|
||||||
|
vertices: []
|
||||||
|
indices:
|
||||||
|
edges: []
|
||||||
|
weights: []
|
||||||
|
secondaryTextures: []
|
||||||
|
nameFileIdTable: {}
|
||||||
|
spritePackingTag:
|
||||||
|
pSDRemoveMatte: 0
|
||||||
|
pSDShowRemoveMatteOption: 0
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/spines/ui/ui_main_btn_raffle.ab
|
||||||
|
assetBundleVariant:
|
||||||
BIN
Assets/arts/spines/ui/ui_main_btn_raffle/ui_main_btn_raffle.skel.bytes
Executable file
@ -0,0 +1,7 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 39df3662947a8cf4c8b85f3bc846ba3c
|
||||||
|
TextScriptImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/spines/ui/ui_main_btn_raffle.ab
|
||||||
|
assetBundleVariant:
|
||||||
@ -0,0 +1,19 @@
|
|||||||
|
%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_main_btn_raffle_atlas
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
textureLoadingMode: 0
|
||||||
|
onDemandTextureLoader: {fileID: 0}
|
||||||
|
atlasFile: {fileID: 4900000, guid: 9101bd2b4411b7444b62fca0f12e69cc, type: 3}
|
||||||
|
materials:
|
||||||
|
- {fileID: 2100000, guid: ae71276a413cb0d42bf836ab50925f57, type: 2}
|
||||||
@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 805deaca66bc30e439322bd805d23147
|
||||||
|
NativeFormatImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
mainObjectFileID: 11400000
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/spines/ui/ui_main_btn_raffle.ab
|
||||||
|
assetBundleVariant:
|
||||||
@ -0,0 +1,45 @@
|
|||||||
|
%YAML 1.1
|
||||||
|
%TAG !u! tag:unity3d.com,2011:
|
||||||
|
--- !u!21 &2100000
|
||||||
|
Material:
|
||||||
|
serializedVersion: 8
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_Name: ui_main_btn_raffle_material
|
||||||
|
m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
|
||||||
|
m_ValidKeywords:
|
||||||
|
- _STRAIGHT_ALPHA_INPUT
|
||||||
|
m_InvalidKeywords:
|
||||||
|
- _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: aa61bedd1ae18e2419e344e7f2ccf1ee, type: 3}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
m_Ints: []
|
||||||
|
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}
|
||||||
|
- _glow_color: {r: 0, g: 0, b: 0, a: 1}
|
||||||
|
m_BuildTextureStacks: []
|
||||||
@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: ae71276a413cb0d42bf836ab50925f57
|
||||||
|
NativeFormatImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
mainObjectFileID: 2100000
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/spines/ui/ui_main_btn_raffle.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_main_btn_raffle_skeletondata
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
atlasAssets:
|
||||||
|
- {fileID: 11400000, guid: 805deaca66bc30e439322bd805d23147, type: 2}
|
||||||
|
scale: 0.01
|
||||||
|
skeletonJSON: {fileID: 4900000, guid: 39df3662947a8cf4c8b85f3bc846ba3c, 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: 39dc93c7739e9f24ea91246f1d7c8f99
|
||||||
|
NativeFormatImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
mainObjectFileID: 11400000
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/spines/ui/ui_main_btn_raffle.ab
|
||||||
|
assetBundleVariant:
|
||||||
8
Assets/arts/spines/ui/ui_main_reward_1.meta
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 905baff7db74d4ca59761b21773488f4
|
||||||
|
folderAsset: yes
|
||||||
|
DefaultImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
11
Assets/arts/spines/ui/ui_main_reward_1/ui_main_reward_1.atlas.txt
Executable file
@ -0,0 +1,11 @@
|
|||||||
|
ui_main_reward_1.png
|
||||||
|
size:128,128
|
||||||
|
filter:Linear,Linear
|
||||||
|
box1_1
|
||||||
|
bounds:66,95,60,31
|
||||||
|
offsets:1,1,62,33
|
||||||
|
box1_2
|
||||||
|
bounds:2,19,52,45
|
||||||
|
offsets:1,1,54,47
|
||||||
|
box2_1
|
||||||
|
bounds:2,66,62,60
|
||||||
7
Assets/arts/spines/ui/ui_main_reward_1/ui_main_reward_1.atlas.txt.meta
Executable file
@ -0,0 +1,7 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 82e2f73961b952b4895ac744471b7a76
|
||||||
|
TextScriptImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/spines/ui/ui_main_reward_1.ab
|
||||||
|
assetBundleVariant:
|
||||||
BIN
Assets/arts/spines/ui/ui_main_reward_1/ui_main_reward_1.png
Executable file
|
After Width: | Height: | Size: 3.2 KiB |
147
Assets/arts/spines/ui/ui_main_reward_1/ui_main_reward_1.png.meta
Executable file
@ -0,0 +1,147 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 0ea20bca4d9c2074a83a2f678ab02bd7
|
||||||
|
TextureImporter:
|
||||||
|
internalIDToNameTable: []
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 12
|
||||||
|
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
|
||||||
|
ignoreMasterTextureLimit: 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: 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
|
||||||
|
cookieLightType: 0
|
||||||
|
platformSettings:
|
||||||
|
- serializedVersion: 3
|
||||||
|
buildTarget: DefaultTexturePlatform
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: -1
|
||||||
|
textureCompression: 0
|
||||||
|
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: 0
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 0
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 1
|
||||||
|
- 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: 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: Server
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: -1
|
||||||
|
textureCompression: 0
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 0
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 1
|
||||||
|
spriteSheet:
|
||||||
|
serializedVersion: 2
|
||||||
|
sprites: []
|
||||||
|
outline: []
|
||||||
|
physicsShape: []
|
||||||
|
bones: []
|
||||||
|
spriteID:
|
||||||
|
internalID: 0
|
||||||
|
vertices: []
|
||||||
|
indices:
|
||||||
|
edges: []
|
||||||
|
weights: []
|
||||||
|
secondaryTextures: []
|
||||||
|
nameFileIdTable: {}
|
||||||
|
spritePackingTag:
|
||||||
|
pSDRemoveMatte: 0
|
||||||
|
pSDShowRemoveMatteOption: 0
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/spines/ui/ui_main_reward_1.ab
|
||||||
|
assetBundleVariant:
|
||||||
BIN
Assets/arts/spines/ui/ui_main_reward_1/ui_main_reward_1.skel.bytes
Executable file
7
Assets/arts/spines/ui/ui_main_reward_1/ui_main_reward_1.skel.bytes.meta
Executable file
@ -0,0 +1,7 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: a6d4ee468de139b47ba1a3a87932002c
|
||||||
|
TextScriptImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/spines/ui/ui_main_reward_1.ab
|
||||||
|
assetBundleVariant:
|
||||||
@ -0,0 +1,19 @@
|
|||||||
|
%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_main_reward_1_atlas
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
textureLoadingMode: 0
|
||||||
|
onDemandTextureLoader: {fileID: 0}
|
||||||
|
atlasFile: {fileID: 4900000, guid: 82e2f73961b952b4895ac744471b7a76, type: 3}
|
||||||
|
materials:
|
||||||
|
- {fileID: 2100000, guid: 4267f0cf47be41148b9affa6cf49b988, type: 2}
|
||||||
8
Assets/arts/spines/ui/ui_main_reward_1/ui_main_reward_1_atlas.asset.meta
Executable file
@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 4b40728fcae05894ead520437a6090de
|
||||||
|
NativeFormatImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
mainObjectFileID: 11400000
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/spines/ui/ui_main_reward_1.ab
|
||||||
|
assetBundleVariant:
|
||||||
@ -0,0 +1,45 @@
|
|||||||
|
%YAML 1.1
|
||||||
|
%TAG !u! tag:unity3d.com,2011:
|
||||||
|
--- !u!21 &2100000
|
||||||
|
Material:
|
||||||
|
serializedVersion: 8
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_Name: ui_main_reward_1_material
|
||||||
|
m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
|
||||||
|
m_ValidKeywords:
|
||||||
|
- _STRAIGHT_ALPHA_INPUT
|
||||||
|
m_InvalidKeywords:
|
||||||
|
- _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: 0ea20bca4d9c2074a83a2f678ab02bd7, type: 3}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
m_Ints: []
|
||||||
|
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}
|
||||||
|
- _glow_color: {r: 0, g: 0, b: 0, a: 1}
|
||||||
|
m_BuildTextureStacks: []
|
||||||
@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 4267f0cf47be41148b9affa6cf49b988
|
||||||
|
NativeFormatImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
mainObjectFileID: 2100000
|
||||||
|
userData:
|
||||||
|
assetBundleName: arts/spines/ui/ui_main_reward_1.ab
|
||||||
|
assetBundleVariant:
|
||||||