game 1
|
|
@ -31,6 +31,8 @@ local view_url = {
|
|||
--@param self
|
||||
--@param #string url
|
||||
function M:InitView(url)
|
||||
print("什么鬼地址"..url)
|
||||
print(InnerFunction())
|
||||
self._root_view = UIPackage.CreateObjectFromURL(self._full and view_url[2] or view_url[1])
|
||||
local contentPane = self._root_view:GetChild("contentPane")
|
||||
self._view = UIPackage.CreateObjectFromURL(url)
|
||||
|
|
|
|||
|
|
@ -389,3 +389,359 @@ function printlog(...)
|
|||
print(...)
|
||||
end
|
||||
end
|
||||
|
||||
function PrintStackTrace(ignoreCount, options)
|
||||
-- 默认参数
|
||||
ignoreCount = ignoreCount or 3
|
||||
options = options or {}
|
||||
|
||||
-- 合并配置选项
|
||||
local config = {
|
||||
maxDepth = options.maxDepth or 20,
|
||||
indentSize = options.indentSize or 2,
|
||||
showVariables = options.showVariables ~= false, -- 默认true
|
||||
maxVariableLength = options.maxVariableLength or 50,
|
||||
showLineNumbers = options.showLineNumbers ~= false,
|
||||
showFunctionType = options.showFunctionType ~= false,
|
||||
showFullPath = options.showFullPath or false,
|
||||
colorOutput = options.colorOutput or false,
|
||||
skipDebuggerFrames = options.skipDebuggerFrames ~= false,
|
||||
debuggerFiles = options.debuggerFiles or {
|
||||
"debugger.lua",
|
||||
"LuaDebugger.lua",
|
||||
"=[C]"
|
||||
},
|
||||
includeTimestamp = options.includeTimestamp or false,
|
||||
maxStackDepth = options.maxStackDepth or 100
|
||||
}
|
||||
|
||||
-- ANSI颜色代码(用于彩色输出)
|
||||
local colors = {
|
||||
reset = "\27[0m",
|
||||
red = "\27[31m",
|
||||
green = "\27[32m",
|
||||
yellow = "\27[33m",
|
||||
blue = "\27[34m",
|
||||
magenta = "\27[35m",
|
||||
cyan = "\27[36m",
|
||||
white = "\27[37m",
|
||||
gray = "\27[90m"
|
||||
}
|
||||
|
||||
-- 如果不支持彩色输出,使用空字符串
|
||||
if not config.colorOutput then
|
||||
for k, _ in pairs(colors) do
|
||||
colors[k] = ""
|
||||
end
|
||||
end
|
||||
|
||||
-- 辅助函数:判断是否为调试器自身的帧
|
||||
local function isDebuggerFrame(frameInfo)
|
||||
if not config.skipDebuggerFrames then
|
||||
return false
|
||||
end
|
||||
|
||||
for _, pattern in ipairs(config.debuggerFiles) do
|
||||
if frameInfo.src and frameInfo.src:find(pattern, 1, true) then
|
||||
return true
|
||||
end
|
||||
if frameInfo.source and frameInfo.source:find(pattern, 1, true) then
|
||||
return true
|
||||
end
|
||||
end
|
||||
return false
|
||||
end
|
||||
|
||||
-- 辅助函数:格式化变量值(限制长度)
|
||||
local function formatValue(value, maxLength)
|
||||
if value == nil then
|
||||
return colors.gray .. "nil" .. colors.reset
|
||||
end
|
||||
|
||||
local valueType = type(value)
|
||||
local str
|
||||
|
||||
if valueType == "string" then
|
||||
str = colors.green .. string.format("%q", value) .. colors.reset
|
||||
elseif valueType == "number" then
|
||||
str = colors.yellow .. tostring(value) .. colors.reset
|
||||
elseif valueType == "boolean" then
|
||||
str = colors.cyan .. tostring(value) .. colors.reset
|
||||
elseif valueType == "table" then
|
||||
local mt = getmetatable(value)
|
||||
if mt and mt.__tostring then
|
||||
str = tostring(value)
|
||||
else
|
||||
str = colors.magenta .. string.format("table: %p", value) .. colors.reset
|
||||
end
|
||||
elseif valueType == "function" then
|
||||
str = colors.blue .. string.format("function: %p", value) .. colors.reset
|
||||
elseif valueType == "userdata" or valueType == "thread" then
|
||||
str = colors.white .. string.format("%s: %p", valueType, value) .. colors.reset
|
||||
else
|
||||
str = colors.gray .. tostring(value) .. colors.reset
|
||||
end
|
||||
|
||||
-- 限制长度
|
||||
if #str > maxLength * 2 then -- 乘以2因为ANSI代码也占长度
|
||||
str = str:sub(1, maxLength * 2) .. "..."
|
||||
end
|
||||
|
||||
return str
|
||||
end
|
||||
|
||||
-- 辅助函数:格式化变量信息
|
||||
local function formatVariables(vars, indent)
|
||||
if not vars or not config.showVariables then
|
||||
return ""
|
||||
end
|
||||
|
||||
local lines = {}
|
||||
local prefix = string.rep(" ", indent)
|
||||
|
||||
-- 处理局部变量
|
||||
if vars.locals then
|
||||
local hasLocals = false
|
||||
local localNames = {}
|
||||
for name, _ in pairs(vars.locals) do
|
||||
table.insert(localNames, name)
|
||||
end
|
||||
table.sort(localNames) -- 按字母顺序排序
|
||||
|
||||
for _, name in ipairs(localNames) do
|
||||
local info = vars.locals[name]
|
||||
if not hasLocals then
|
||||
table.insert(lines, prefix .. colors.cyan .. "Local Variables:" .. colors.reset)
|
||||
hasLocals = true
|
||||
end
|
||||
local valueStr = formatValue(info.value, config.maxVariableLength)
|
||||
table.insert(lines, string.format("%s %s%s%s = %s",
|
||||
prefix, colors.yellow, name, colors.reset, valueStr))
|
||||
end
|
||||
end
|
||||
|
||||
-- 处理上值(upvalues)
|
||||
if vars.upvalues then
|
||||
local hasUpvalues = false
|
||||
local upvalueNames = {}
|
||||
for name, _ in pairs(vars.upvalues) do
|
||||
table.insert(upvalueNames, name)
|
||||
end
|
||||
table.sort(upvalueNames)
|
||||
|
||||
for _, name in ipairs(upvalueNames) do
|
||||
local info = vars.upvalues[name]
|
||||
if not hasUpvalues then
|
||||
table.insert(lines, prefix .. colors.cyan .. "Upvalues:" .. colors.reset)
|
||||
hasUpvalues = true
|
||||
end
|
||||
local valueStr = formatValue(info.value, config.maxVariableLength)
|
||||
table.insert(lines, string.format("%s %s%s%s = %s",
|
||||
prefix, colors.yellow, name, colors.reset, valueStr))
|
||||
end
|
||||
end
|
||||
|
||||
if #lines > 0 then
|
||||
return table.concat(lines, "\n") .. "\n"
|
||||
end
|
||||
return ""
|
||||
end
|
||||
|
||||
-- 获取堆栈信息
|
||||
local stackInfo = {}
|
||||
local outputLines = {}
|
||||
|
||||
-- 添加标题
|
||||
if config.includeTimestamp then
|
||||
table.insert(outputLines, colors.white .. "=== Stack Trace @" .. os.date("%H:%M:%S") .. " ===" .. colors.reset)
|
||||
else
|
||||
table.insert(outputLines, colors.white .. "=== Stack Trace ===" .. colors.reset)
|
||||
end
|
||||
|
||||
-- 收集堆栈信息
|
||||
local frameCount = 0
|
||||
local skippedDebuggerFrames = 0
|
||||
|
||||
for level = ignoreCount, config.maxStackDepth do
|
||||
local source = debug.getinfo(level, "Snlf")
|
||||
if not source then
|
||||
break
|
||||
end
|
||||
|
||||
-- 构建栈帧信息
|
||||
local frameInfo = {
|
||||
level = level - ignoreCount + 1,
|
||||
src = source.source,
|
||||
funcName = source.name or "<anonymous>",
|
||||
currentline = source.currentline,
|
||||
linedefined = source.linedefined,
|
||||
lastlinedefined = source.lastlinedefined,
|
||||
what = source.what,
|
||||
namewhat = source.namewhat or "",
|
||||
source = source.source
|
||||
}
|
||||
|
||||
-- 跳过调试器自身的帧
|
||||
if isDebuggerFrame(frameInfo) then
|
||||
skippedDebuggerFrames = skippedDebuggerFrames + 1
|
||||
goto continue
|
||||
end
|
||||
|
||||
-- 达到最大显示深度时停止
|
||||
if frameCount >= config.maxDepth then
|
||||
table.insert(outputLines, colors.gray .. string.format("... (%d more frames hidden)",
|
||||
(config.maxStackDepth - level + 1)) .. colors.reset)
|
||||
break
|
||||
end
|
||||
|
||||
-- 格式化文件路径
|
||||
local filePath
|
||||
if config.showFullPath then
|
||||
filePath = source.source
|
||||
else
|
||||
-- 提取文件名
|
||||
if source.source:sub(1, 1) == "@" then
|
||||
local path = source.source:sub(2)
|
||||
local _, filename = path:match("^.*[/\\](.+)$")
|
||||
filePath = filename or path
|
||||
elseif source.source:sub(1, 1) == "=" then
|
||||
filePath = source.source:sub(2)
|
||||
else
|
||||
filePath = "[string]"
|
||||
end
|
||||
end
|
||||
|
||||
-- 构建帧描述
|
||||
local indent = string.rep(" ", config.indentSize)
|
||||
local framePrefix = string.format("#%d ", frameCount + 1)
|
||||
|
||||
local frameLine
|
||||
if config.showLineNumbers then
|
||||
if source.currentline > 0 then
|
||||
frameLine = string.format("%s%s in %s%s%s at %s%s%s:%s%d%s",
|
||||
colors.white, framePrefix,
|
||||
colors.yellow, frameInfo.funcName, colors.reset,
|
||||
colors.blue, filePath, colors.reset,
|
||||
colors.green, source.currentline, colors.reset)
|
||||
else
|
||||
frameLine = string.format("%s%s in %s%s%s at %s%s%s",
|
||||
colors.white, framePrefix,
|
||||
colors.yellow, frameInfo.funcName, colors.reset,
|
||||
colors.blue, filePath, colors.reset)
|
||||
end
|
||||
else
|
||||
frameLine = string.format("%s%s in %s%s%s",
|
||||
colors.white, framePrefix,
|
||||
colors.yellow, frameInfo.funcName, colors.reset)
|
||||
end
|
||||
|
||||
-- 添加函数类型信息
|
||||
if config.showFunctionType then
|
||||
local typeColor = colors.gray
|
||||
if source.what == "Lua" then
|
||||
typeColor = colors.green
|
||||
elseif source.what == "C" then
|
||||
typeColor = colors.red
|
||||
elseif source.what == "main" then
|
||||
typeColor = colors.cyan
|
||||
end
|
||||
|
||||
frameLine = frameLine .. string.format(" [%s%s%s]",
|
||||
typeColor, source.what, colors.reset)
|
||||
end
|
||||
|
||||
table.insert(outputLines, frameLine)
|
||||
|
||||
-- 获取并格式化变量
|
||||
if config.showVariables then
|
||||
local success, vars = pcall(function()
|
||||
local varInfo = {}
|
||||
|
||||
-- 获取局部变量
|
||||
varInfo.locals = {}
|
||||
local idx = 1
|
||||
while true do
|
||||
local name, value = debug.getlocal(level + 1, idx)
|
||||
if not name then break end
|
||||
|
||||
-- 过滤掉调试器内部变量
|
||||
if not name:find("^_debugger_") then
|
||||
varInfo.locals[name] = {
|
||||
value = value,
|
||||
type = type(value)
|
||||
}
|
||||
end
|
||||
idx = idx + 1
|
||||
end
|
||||
|
||||
-- 获取上值
|
||||
varInfo.upvalues = {}
|
||||
local func = debug.getinfo(level + 1, "f").func
|
||||
if func then
|
||||
idx = 1
|
||||
while true do
|
||||
local name, value = debug.getupvalue(func, idx)
|
||||
if not name then break end
|
||||
|
||||
varInfo.upvalues[name] = {
|
||||
value = value,
|
||||
type = type(value)
|
||||
}
|
||||
idx = idx + 1
|
||||
end
|
||||
end
|
||||
|
||||
return varInfo
|
||||
end)
|
||||
|
||||
if success then
|
||||
local varsStr = formatVariables(vars, config.indentSize * 2)
|
||||
if varsStr ~= "" then
|
||||
table.insert(outputLines, varsStr)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
frameCount = frameCount + 1
|
||||
|
||||
-- 到达主程序层时停止
|
||||
if source.what == "main" then
|
||||
break
|
||||
end
|
||||
|
||||
::continue::
|
||||
end
|
||||
|
||||
-- 添加统计信息
|
||||
table.insert(outputLines, "")
|
||||
table.insert(outputLines, colors.gray .. string.format(
|
||||
"Total frames: %d (skipped %d debugger frames)",
|
||||
frameCount, skippedDebuggerFrames) .. colors.reset)
|
||||
|
||||
-- 如果没有找到任何帧
|
||||
if frameCount == 0 then
|
||||
table.insert(outputLines,
|
||||
colors.yellow .. "No stack frames found (possibly all frames were skipped)" .. colors.reset)
|
||||
end
|
||||
|
||||
-- 添加分隔线
|
||||
table.insert(outputLines, colors.white .. "====================" .. colors.reset)
|
||||
|
||||
return table.concat(outputLines, "\n")
|
||||
end
|
||||
|
||||
function InnerFunction()
|
||||
local x = 42
|
||||
local name = "Test"
|
||||
local data = { a = 1, b = 2 }
|
||||
|
||||
-- 打印堆栈信息
|
||||
local trace = PrintStackTrace(2, {
|
||||
showVariables = false,
|
||||
colorOutput = false,
|
||||
maxDepth = 20
|
||||
})
|
||||
|
||||
return trace
|
||||
end
|
||||
|
||||
|
|
|
|||
|
|
@ -94,10 +94,12 @@ function M:setBtn()
|
|||
local rightpanel = self._view:GetChild('right_panel')
|
||||
local btn_rule = rightpanel:GetChild('btn_log')
|
||||
local gcm_chat = self._view:GetChild('gcm_chat')
|
||||
|
||||
-- # zlx 20260208 注释两行
|
||||
local _btn_chat = gcm_chat:GetChild('n1')
|
||||
_btn_chat:GetChild('icon').icon = 'ui://Main_RunBeard/chat_img'
|
||||
-- # _btn_chat:GetChild('icon').icon = 'ui://Main_RunBeard/chat_img'
|
||||
local btn_record = gcm_chat:GetChild('btn_record')
|
||||
btn_record:GetChild('icon').icon = 'ui://Main_RunBeard/yuyin_img'
|
||||
-- # btn_record:GetChild('icon').icon = 'ui://Main_RunBeard/yuyin_img'
|
||||
|
||||
if btn_rule ~= nil then
|
||||
btn_rule.onClick:Set(
|
||||
|
|
|
|||
|
|
@ -185,6 +185,40 @@ function M:InitView(url, isdisplay, open_social, change_card_size, qihu)
|
|||
--printlog("OneventResultinit8")
|
||||
self:InitXiPai1()
|
||||
--printlog("OneventResultinit9")
|
||||
|
||||
local btn_safe = self._view:GetChild('btn_safe')
|
||||
self.safe_arrow1 = btn_safe:GetChild("arrow1")
|
||||
self.safe_arrow2 = btn_safe:GetChild("arrow2")
|
||||
btn_safe.onClick:Set(
|
||||
function()
|
||||
self:BtnsSafe()
|
||||
end
|
||||
)
|
||||
self:BtnsSafe()
|
||||
end
|
||||
|
||||
-- zlx 20260208
|
||||
function M:BtnsSafe()
|
||||
local btn_temp1 = self._view:GetChild("btn_back_lobby")
|
||||
local btn_temp2 = self._view:GetChild("Btn_jiesan_lobby")
|
||||
local btn_temp3 = self._view:GetChild("btn_leave_lobby")
|
||||
local btn_temp4 = self._view:GetChild("btn_setting")
|
||||
|
||||
btn_temp1.visible = not btn_temp1.visible
|
||||
btn_temp2.visible = not btn_temp2.visible
|
||||
btn_temp3.visible = not btn_temp3.visible
|
||||
btn_temp4.visible = not btn_temp4.visible
|
||||
|
||||
local safe = self._view:GetChild("safe_bg")
|
||||
safe.visible = not safe.visible
|
||||
|
||||
if safe.visible then
|
||||
self.safe_arrow1.visible = false
|
||||
self.safe_arrow2.visible = true
|
||||
else
|
||||
self.safe_arrow1.visible = true
|
||||
self.safe_arrow2.visible = false
|
||||
end
|
||||
end
|
||||
|
||||
function M:InitXiPai()
|
||||
|
|
@ -301,7 +335,7 @@ end
|
|||
|
||||
-- 设置 更新 手牌大小
|
||||
function M:UpdateCardSize(index)
|
||||
-- print("lingmeng UpdateCardSize")
|
||||
-- print("lingmeng UpdateCardSize")
|
||||
if index == 0 then
|
||||
self._room.change_card_size = 1.3
|
||||
elseif index == 1 then
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 1.4 MiB After Width: | Height: | Size: 1.5 MiB |
|
Before Width: | Height: | Size: 2.0 MiB After Width: | Height: | Size: 2.2 MiB |
|
Before Width: | Height: | Size: 3.0 MiB After Width: | Height: | Size: 3.7 MiB |
|
Before Width: | Height: | Size: 238 KiB After Width: | Height: | Size: 210 KiB |
|
Before Width: | Height: | Size: 250 KiB After Width: | Height: | Size: 239 KiB |
|
Before Width: | Height: | Size: 965 KiB After Width: | Height: | Size: 866 KiB |
|
Before Width: | Height: | Size: 1.9 MiB After Width: | Height: | Size: 2.0 MiB |
|
Before Width: | Height: | Size: 2.6 MiB After Width: | Height: | Size: 2.6 MiB |
|
Before Width: | Height: | Size: 1.6 MiB After Width: | Height: | Size: 1.7 MiB |
|
Before Width: | Height: | Size: 1.8 MiB After Width: | Height: | Size: 1.8 MiB |
|
Before Width: | Height: | Size: 1.4 MiB After Width: | Height: | Size: 1.3 MiB |
|
Before Width: | Height: | Size: 1.5 MiB After Width: | Height: | Size: 43 KiB |
|
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 1.4 MiB |
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"objectStatus": {
|
||||
"n89_ybf5": {
|
||||
"collapsed": true
|
||||
},
|
||||
"n33_e7qn": {
|
||||
"collapsed": true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
"objectStatus": {
|
||||
"n86_ybf5": {
|
||||
"collapsed": true
|
||||
},
|
||||
"n39_e7qn": {
|
||||
"collapsed": true
|
||||
},
|
||||
"n57_r1mo": {
|
||||
"collapsed": true
|
||||
},
|
||||
"n74_o49p": {
|
||||
"collapsed": true
|
||||
},
|
||||
"n49_lr5d": {
|
||||
"collapsed": true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"objectStatus": {
|
||||
"n154_r1mo": {
|
||||
"collapsed": true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 2.3 MiB |
|
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 1.8 KiB |
|
|
@ -1355,6 +1355,7 @@
|
|||
<image id="qcrm7ivv" name="82 - 伙.png" path="/font/fontTitle/"/>
|
||||
<image id="qcrm7ivw" name="btn_showPartner.png" path="/images/" exported="true"/>
|
||||
<image id="qcrm7ivx" name="bg_game_战绩.png" path="/images/" exported="true"/>
|
||||
<image id="h5b17ivz" name="Frame 1153.png" path="/buttons/" exported="true"/>
|
||||
</resources>
|
||||
<publish name="Common" path="..\wb_unity_pro\Assets\ART\base\common\ui" packageCount="2">
|
||||
<atlas name="默认" index="0"/>
|
||||
|
|
|
|||
|
|
@ -1,22 +1,37 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<component size="2532,1172" designImage="ui://3vytbifonu0l2f" designImageOffsetX="-200" designImageOffsetY="-100">
|
||||
<controller name="state" pages="0,准备状态,1,游戏状态,2,回合间状态,3,回放状态" selected="0"/>
|
||||
<controller name="state" pages="0,准备状态,1,游戏状态,2,回合间状态,3,回放状态" selected="1"/>
|
||||
<controller name="sdk" pages="0,,1," selected="0"/>
|
||||
<controller name="action" pages="2,空,0,准备,1,开始" selected="1"/>
|
||||
<controller name="action" pages="2,空,0,准备,1,开始" selected="0"/>
|
||||
<controller name="jushu" pages="0,,1," selected="0"/>
|
||||
<controller name="bg_state" pages="0,,1,,2," selected="0"/>
|
||||
<displayList>
|
||||
<text id="n176_fgao" name="di_text" xy="1072,8" size="450,51" font="Microsoft YaHei" fontSize="32" color="#330000" align="center" vAlign="middle" autoSize="none" strokeColor="#296137" text="123456789">
|
||||
<image id="n196_h5b1" name="n196" src="h5b1rn" fileName="component/Main/images/floorTop.png" xy="973,0"/>
|
||||
<text id="n176_fgao" name="di_text" xy="1072,8" size="450,51" group="n150_8th3" font="Microsoft YaHei" fontSize="32" color="#330000" align="center" vAlign="middle" autoSize="none" strokeColor="#296137" text="123456789">
|
||||
<gearDisplay controller="state" pages="0,1,2"/>
|
||||
<gearColor controller="bg_state" pages="0,1" values="#330000,#296137|#655c6a,#322e34" default="#367c7d,#235557"/>
|
||||
<relation target="" sidePair="center-center"/>
|
||||
</text>
|
||||
<component id="n24" name="right_panel" src="peuq4i" fileName="component/Main/component/Folder/RightPanel.xml" xy="868,8" size="751,112" group="n150_8th3">
|
||||
<gearDisplay controller="state" pages="0,1,2"/>
|
||||
<relation target="" sidePair="left-left"/>
|
||||
</component>
|
||||
<component id="n31_h1uu" name="roominfo_panel" src="peuq8q" fileName="component/Main/RoomInfoPanel1.xml" xy="1115,222" size="139,80" group="n150_8th3" touchable="false">
|
||||
<relation target="" sidePair="center-center,top-top"/>
|
||||
</component>
|
||||
<group id="n150_8th3" name="n150" xy="868,8" size="751,294" advanced="true">
|
||||
<relation target="" sidePair="left-left"/>
|
||||
</group>
|
||||
<component id="n149_qpk6" name="btn_reset" src="peuq3v" fileName="component/Main/component/Folder/component/phone_info/Btn_reset.xml" xy="53,512" size="109,109">
|
||||
<gearDisplay controller="state" pages="1,2"/>
|
||||
<relation target="" sidePair="middle-middle"/>
|
||||
</component>
|
||||
<image id="n177_cbxl" name="n177" src="peuq72" fileName="component/Main/images/zipai3.png" xy="1215,93">
|
||||
<gearDisplay controller="state" pages="1,3"/>
|
||||
<relation target="" sidePair="center-center"/>
|
||||
</image>
|
||||
<loader id="n156_mk2u" name="jiang" xy="456,85" size="65,75" fill="scaleFree"/>
|
||||
<component id="n151_8th3" name="player_card_info2" src="peuq6p" fileName="component/Main/component/Player_card_info_2.xml" xy="149,52" size="343,304">
|
||||
<component id="n151_8th3" name="player_card_info2" src="peuq6p" fileName="component/Main/component/Player_card_info_2.xml" xy="159,52" size="343,304">
|
||||
<gearDisplay controller="state" pages="1,3"/>
|
||||
<relation target="n147_nu0l" sidePair="left-left"/>
|
||||
</component>
|
||||
|
|
@ -24,66 +39,51 @@
|
|||
<gearDisplay controller="state" pages="1,3"/>
|
||||
<relation target="" sidePair="width-width,bottom-bottom"/>
|
||||
</component>
|
||||
<component id="n147_nu0l" name="player_info2" src="peuq6r" fileName="component/Main/component/PlayerHead_2.xml" xy="17,235">
|
||||
<relation target="" sidePair="left-left,leftext-left"/>
|
||||
</component>
|
||||
<component id="n7" name="player_info1" src="peuq6e" fileName="component/Main/component/PlayerHead_1.xml" xy="20,524" size="189,67">
|
||||
<gearXY controller="state" pages="0,1,2,3" values="20,524|22,548|48,771|8,570"/>
|
||||
<relation target="" sidePair="left-left,leftext-left"/>
|
||||
<component id="n147_nu0l" name="player_info2" src="peuq6r" fileName="component/Main/component/PlayerHead_2.xml" xy="27,192" size="200,300">
|
||||
<relation target="" sidePair="rightext-left,topext-top,bottomext-top,leftext-left"/>
|
||||
</component>
|
||||
<component id="n194_syh3" name="gcm_chat" src="syh3rk" fileName="component/Main/Main_2_chat.xml" xy="2380,453"/>
|
||||
<component id="n34_k3io" name="btn_ready1" src="peuq39" fileName="buttons/Btn_Yellow.xml" xy="1090,777" group="n36_k3io" visible="false">
|
||||
<component id="n7" name="player_info1" src="peuq6e" fileName="component/Main/component/PlayerHead_1.xml" xy="17,614" size="200,300">
|
||||
<gearXY controller="state" pages="0,1,2,3" values="18,681|17,614|48,771|8,570"/>
|
||||
<relation target="" sidePair="rightext-left,topext-bottom%,bottomext-bottom,leftext-left"/>
|
||||
</component>
|
||||
<component id="n34_k3io" name="btn_ready1" src="peuq39" fileName="buttons/Btn_Yellow.xml" xy="1090,873" group="n36_k3io" visible="false">
|
||||
<gearDisplay controller="action" pages="0"/>
|
||||
<Button icon="ui://lkq9ne9speuq8i"/>
|
||||
</component>
|
||||
<component id="n35_k3io" name="btn_start1" src="peuq39" fileName="buttons/Btn_Yellow.xml" xy="1094,779" group="n36_k3io" visible="false">
|
||||
<component id="n35_k3io" name="btn_start1" src="peuq39" fileName="buttons/Btn_Yellow.xml" xy="1094,875" group="n36_k3io" visible="false">
|
||||
<Button icon="ui://lkq9ne9speuq8j"/>
|
||||
</component>
|
||||
<component id="n169_o49p" name="btn_ready" src="peuq8k" fileName="component/game/btn_ready.xml" xy="782,784" group="n36_k3io">
|
||||
<component id="n169_o49p" name="btn_ready" src="peuq8k" fileName="component/game/btn_ready.xml" xy="782,880" group="n36_k3io">
|
||||
<gearDisplay controller="action" pages="0,1"/>
|
||||
<Button icon="ui://lkq9ne9speuq8m"/>
|
||||
</component>
|
||||
<component id="n170_o49p" name="btn_start" src="peuq8n" fileName="buttons/Btn_newYellow_long.xml" xy="1166,787" group="n36_k3io" visible="false">
|
||||
<component id="n170_o49p" name="btn_start" src="peuq8n" fileName="buttons/Btn_newYellow_long.xml" xy="1166,883" group="n36_k3io" visible="false">
|
||||
<Button icon="ui://lkq9ne9ssyh3rm"/>
|
||||
</component>
|
||||
<component id="n184_a81d" name="btn_xipai" src="peuq6u" fileName="component/Main/component/btn_xipai.xml" xy="1361,784" group="n36_k3io">
|
||||
<component id="n184_a81d" name="btn_xipai" src="peuq6u" fileName="component/Main/component/btn_xipai.xml" xy="1361,880" group="n36_k3io">
|
||||
<gearDisplay controller="action" pages="0,1"/>
|
||||
</component>
|
||||
<group id="n36_k3io" name="n36" xy="782,777" size="979,176" advanced="true">
|
||||
<group id="n36_k3io" name="n36" xy="782,873" size="979,176" advanced="true">
|
||||
<gearDisplay controller="state" pages="0"/>
|
||||
<relation target="" sidePair="center-center"/>
|
||||
</group>
|
||||
<text id="n58_zzcq" name="tex_version" xy="2396,242" size="130,33" fontSize="22" color="#ffffff" align="center" vAlign="middle" autoSize="none" text="v2.0.0">
|
||||
<text id="n58_zzcq" name="tex_version" xy="2348,1079" size="130,49" fontSize="36" color="#ffffff" align="center" vAlign="middle" autoSize="none" text="v2.0.0">
|
||||
<gearDisplay controller="state" pages="0,1,2"/>
|
||||
<relation target="" sidePair="right-right"/>
|
||||
<relation target="" sidePair="rightext-right,topext-bottom,bottomext-bottom,leftext-right"/>
|
||||
</text>
|
||||
<text id="n146_lr5d" name="time" xy="655,294" size="10,6" visible="false" fontSize="0" color="#cccccc" align="center" leading="0" autoSize="none" text="">
|
||||
<gearDisplay controller="state" pages="1,3"/>
|
||||
</text>
|
||||
<component id="n149_qpk6" name="btn_reset" src="peuq3v" fileName="component/Main/component/Folder/component/phone_info/Btn_reset.xml" xy="8,312" size="80,80">
|
||||
<gearDisplay controller="state" pages="1,2"/>
|
||||
<relation target="" sidePair="left-left"/>
|
||||
</component>
|
||||
<component id="n24" name="right_panel" src="peuq4i" fileName="component/Main/component/Folder/RightPanel.xml" xy="0,-11" size="920,82" group="n150_8th3">
|
||||
<gearDisplay controller="state" pages="0,1,2"/>
|
||||
<relation target="" sidePair="left-left"/>
|
||||
</component>
|
||||
<component id="n31_h1uu" name="roominfo_panel" src="peuq8q" fileName="component/Main/RoomInfoPanel1.xml" xy="1048,2" size="461,97" group="n150_8th3" touchable="false">
|
||||
<relation target="" sidePair="center-center,top-top"/>
|
||||
</component>
|
||||
<component id="n46_u4l2" name="btn_rule1" src="peuq3n" fileName="component/Main/component/Folder/component/phone_info/Btn_log.xml" xy="562,-92" size="157,4" group="n150_8th3" visible="false"/>
|
||||
<group id="n150_8th3" name="n150" xy="0,-92" size="1509,191" advanced="true">
|
||||
<relation target="" sidePair="left-left"/>
|
||||
</group>
|
||||
<image id="n152_8th3" name="n152" src="peuq6w" fileName="component/Main/images/di00.png" xy="976,-91" size="580,86" visible="false">
|
||||
<gearDisplay controller="state" pages="3"/>
|
||||
<relation target="" sidePair="center-center"/>
|
||||
</image>
|
||||
<text id="n42_lryk" name="tex_round" xy="1164,150" size="267,42" group="n154_r1mo" fontSize="30" color="#ffffff" align="center" autoSize="none" text="剩余 5 张牌 1/8局">
|
||||
<text id="n42_lryk" name="tex_round" xy="1132,168" size="318,42" group="n154_r1mo" fontSize="30" color="#ffffff" align="center" autoSize="none" text="剩余 5 张牌 1/8局">
|
||||
<gearDisplay controller="state" pages="1,3"/>
|
||||
<relation target="" sidePair="center-center"/>
|
||||
</text>
|
||||
<group id="n154_r1mo" name="n154" xy="1164,150" size="267,42" advanced="true">
|
||||
<group id="n154_r1mo" name="n154" xy="1132,168" size="318,42" advanced="true">
|
||||
<gearDisplay controller="jushu" pages="1"/>
|
||||
</group>
|
||||
<loader id="n153_8th3" name="cardAnima" xy="625,86" size="50,30" visible="false" touchable="false" url="ui://3bfrwj0h8th37l" autoSize="true">
|
||||
|
|
@ -116,23 +116,23 @@
|
|||
<gearDisplay controller="state" pages="1,3"/>
|
||||
<relation target="" sidePair="center-center"/>
|
||||
</text>
|
||||
<component id="n166_o49p" name="btn_back_lobby" src="peuq3r" fileName="component/Main/component/Folder/component/phone_info/Btn_back_lobby.xml" xy="2383,361" group="n183_yfzf">
|
||||
<image id="n198_h5b1" name="safe_bg" src="h5b1rp" fileName="component/Main/images/safe.png" xy="1468,0" size="1064,2000"/>
|
||||
<component id="n193_syh3" name="btn_safe" src="syh3rj" fileName="component/Main/btn_safe.xml" xy="2385,30" size="109,109"/>
|
||||
<component id="n166_o49p" name="btn_back_lobby" src="peuq3r" fileName="component/Main/component/Folder/component/phone_info/Btn_back_lobby.xml" xy="2388,366" size="109,109" group="n183_yfzf">
|
||||
<gearDisplay controller="state" pages="0,3"/>
|
||||
</component>
|
||||
<component id="n167_o49p" name="Btn_jiesan_lobby" src="peuq3z" fileName="component/Main/component/Folder/component/phone_info/Btn_jiesan_lobby.xml" xy="2380,358" group="n183_yfzf">
|
||||
<component id="n167_o49p" name="Btn_jiesan_lobby" src="peuq3z" fileName="component/Main/component/Folder/component/phone_info/Btn_jiesan_lobby.xml" xy="2388,362" size="109,109" group="n183_yfzf">
|
||||
<gearDisplay controller="state" pages="1,2"/>
|
||||
</component>
|
||||
<component id="n181_r1z9" name="btn_leave_lobby" src="peuq45" fileName="component/Main/component/Folder/component/phone_info/Btn_leave_lobby.xml" xy="2375,523" group="n183_yfzf">
|
||||
<component id="n181_r1z9" name="btn_leave_lobby" src="peuq45" fileName="component/Main/component/Folder/component/phone_info/Btn_leave_lobby.xml" xy="2388,536" size="109,109" group="n183_yfzf">
|
||||
<gearDisplay controller="state" pages="0,3"/>
|
||||
</component>
|
||||
<component id="n168_o49p" name="btn_setting" src="peuq3c" fileName="component/Main/component/Folder/component/phone_info/Btn_setting.xml" xy="2384,199" group="n183_yfzf">
|
||||
<component id="n168_o49p" name="btn_setting" src="peuq3c" fileName="component/Main/component/Folder/component/phone_info/Btn_setting.xml" xy="2388,206" size="109,109" group="n183_yfzf">
|
||||
<gearDisplay controller="state" pages="0,1,2"/>
|
||||
</component>
|
||||
<component id="n193_syh3" name="n193" src="syh3rj" fileName="component/Main/btn_safe.xml" xy="2385,30" group="n183_yfzf"/>
|
||||
<group id="n183_yfzf" name="n183" xy="2375,30" size="119,602" advanced="true">
|
||||
<group id="n183_yfzf" name="n183" xy="2388,206" size="109,439" advanced="true">
|
||||
<relation target="" sidePair=""/>
|
||||
</group>
|
||||
<image id="n191_syh3" name="n191" pkg="27vd145b" src="syh37ivy" fileName="Frame 1171.png" xy="0,0" alpha="0.5"/>
|
||||
</displayList>
|
||||
<transition name="outcard1">
|
||||
<item time="0" type="XY" target="n153_8th3" tween="true" startValue="625.3,86.3" endValue="239,261" duration="12"/>
|
||||
|
|
|
|||
|
|
@ -6,7 +6,9 @@
|
|||
<component id="n1_h1uu" name="n1" src="peuq8d" fileName="Btn_chat.xml" xy="3,149" controller="ban,0">
|
||||
<Button icon="ui://lkq9ne9ssyh3rf"/>
|
||||
</component>
|
||||
<component id="n4_syh3" name="n2" src="syh3rl" fileName="component/Main/VoiceMask.xml" xy="1,-59"/>
|
||||
<component id="n4_syh3" name="n2" src="syh3rl" fileName="component/Main/VoiceMask.xml" xy="1,-59">
|
||||
<gearDisplay controller="voice" pages="1"/>
|
||||
</component>
|
||||
<component id="n3_h1uu" name="btn_record" src="peuq8d" fileName="Btn_chat.xml" xy="-1,5" size="109,109" controller="ban,0">
|
||||
<gearDisplay controller="sdk" pages="0"/>
|
||||
<Button icon="ui://lkq9ne9ssyh3re"/>
|
||||
|
|
|
|||
|
|
@ -2,7 +2,8 @@
|
|||
<component size="109,109" extention="Button">
|
||||
<controller name="button" pages="0,up,1,down,2,over,3,selectedOver" selected="0"/>
|
||||
<displayList>
|
||||
<image id="n3_syh3" name="n3" src="syh3ri" fileName="image/main_2/game_safe.png" xy="0,0"/>
|
||||
<image id="n3_syh3" name="arrow1" src="syh3ri" fileName="image/main_2/game_safe.png" xy="0,0"/>
|
||||
<image id="n4_h5b1" name="arrow2" src="syh3ri" fileName="image/main_2/game_safe.png" xy="109,0" scale="-1,1"/>
|
||||
</displayList>
|
||||
<Button/>
|
||||
</component>
|
||||
|
|
@ -1,9 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<component size="80,80" extention="Button" initName="btn_back_lobby">
|
||||
<component size="109,109" extention="Button" initName="btn_back_lobby">
|
||||
<controller name="button" pages="0,up,1,down" selected="0"/>
|
||||
<displayList>
|
||||
<image id="n3_hp0b" name="n3" src="peuq3w" fileName="component/Main/images/shuaxin.png" xy="-2,0" pivot="0.5,0" visible="false"/>
|
||||
<image id="n5_o49p" name="n5" src="peuq3x" fileName="component/Main/component/new_ui/refresh_img.png" xy="11,11"/>
|
||||
<image id="n5_o49p" name="n5" src="peuq3x" fileName="component/Main/component/new_ui/refresh_img.png" xy="0,0"/>
|
||||
</displayList>
|
||||
<Button downEffect="dark" downEffectValue="0.80"/>
|
||||
<Button downEffect="dark" downEffectValue="0.8"/>
|
||||
</component>
|
||||
|
|
@ -1,12 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<component size="236,119" opaque="false" initName="gcm_info">
|
||||
<component size="200,300" opaque="false" initName="gcm_info">
|
||||
<controller name="room_owner" pages="0,,1," selected="0"/>
|
||||
<controller name="bank" pages="0,,1," selected="0"/>
|
||||
<controller name="read" pages="0,,1," selected="0"/>
|
||||
<controller name="offline" pages="0,,1," selected="0"/>
|
||||
<controller name="mask_voice" pages="0,,1," selected="0"/>
|
||||
<controller name="dismiss_room" pages="0,,1," selected="0"/>
|
||||
<controller name="time" pages="0,,1," selected="1"/>
|
||||
<controller name="time" pages="0,,1," selected="0"/>
|
||||
<controller name="huxi" pages="0,,1," selected="0"/>
|
||||
<controller name="tuo" pages="0,,1," selected="0"/>
|
||||
<controller name="piao" pages="0,,1," selected="0"/>
|
||||
|
|
@ -16,103 +16,103 @@
|
|||
<controller name="zhanji" pages="0,,1," selected="0"/>
|
||||
<controller name="niao" pages="0,,1," selected="0"/>
|
||||
<displayList>
|
||||
<image id="n77_o49p" name="n77" src="peuq4x" fileName="component/Main/component/new_ui/touxiang_img.png" xy="2,-76" size="121,173"/>
|
||||
<image id="n28_e54q" name="n28" src="peuq5v" fileName="font/images/head/index_bg_01.png" xy="-1,-51" size="100,98" group="n33_e7qn" aspect="true" visible="false"/>
|
||||
<image id="n34_u4l2" name="zhuang1" pkg="27vd145b" src="e54q3w" fileName="images/head/bank.png" xy="-40,-92" group="n33_e7qn" visible="false">
|
||||
<image id="n77_o49p" name="n77" src="peuq4x" fileName="component/Main/component/new_ui/touxiang_img.png" xy="49,65" size="93,92"/>
|
||||
<image id="n28_e54q" name="n28" src="peuq5v" fileName="font/images/head/index_bg_01.png" xy="36,78" size="100,98" group="n33_e7qn" aspect="true" visible="false"/>
|
||||
<image id="n34_u4l2" name="zhuang1" pkg="27vd145b" src="e54q3w" fileName="images/head/bank.png" xy="-3,37" group="n33_e7qn" visible="false">
|
||||
<gearDisplay controller="time" pages="1"/>
|
||||
</image>
|
||||
<component id="n82_g4bl" name="btn_head" src="peuq6f" fileName="component/Main/Head4.xml" xy="14,-69" group="n33_e7qn"/>
|
||||
<image id="n79_cbxl" name="zhuang" src="peuq4z" fileName="component/Main/component/new_ui/touxiangkuang_img.png" xy="11,-72" size="98,98" group="n33_e7qn">
|
||||
<component id="n82_g4bl" name="btn_head" src="peuq6f" fileName="component/Main/Head4.xml" xy="51,60" group="n33_e7qn"/>
|
||||
<image id="n79_cbxl" name="zhuang" src="peuq4z" fileName="component/Main/component/new_ui/touxiangkuang_img.png" xy="48,57" size="98,98" group="n33_e7qn">
|
||||
<gearDisplay controller="time" pages="1"/>
|
||||
</image>
|
||||
<text id="n37_aawn" name="n37" xy="28,-36" size="64,42" group="n33_e7qn" fontSize="30" color="#ffffff" text="离线">
|
||||
<text id="n37_aawn" name="n37" xy="65,93" size="64,42" group="n33_e7qn" fontSize="30" color="#ffffff" text="离线">
|
||||
<gearDisplay controller="offline" pages="1"/>
|
||||
</text>
|
||||
<image id="n81_cbxl" name="fangzhu" src="peuq57" fileName="component/Main/component/new_ui/房主.png" xy="3,-75" group="n33_e7qn" visible="false">
|
||||
<image id="n81_cbxl" name="fangzhu" src="peuq57" fileName="component/Main/component/new_ui/房主.png" xy="40,54" group="n33_e7qn" visible="false">
|
||||
<gearDisplay controller="room_owner" pages="1"/>
|
||||
</image>
|
||||
<graph id="n32_kba2" name="offLine" xy="9,-73" size="105,105" group="n33_e7qn" aspect="true" touchable="false" type="rect" lineSize="0" fillColor="#b3000000">
|
||||
<graph id="n32_kba2" name="offLine" xy="46,56" size="105,105" group="n33_e7qn" aspect="true" touchable="false" type="rect" lineSize="0" fillColor="#b3000000">
|
||||
<gearDisplay controller="offline" pages="1"/>
|
||||
</graph>
|
||||
<component id="n36_h4ge" name="n36" xy="9,-41" size="100,100" group="n33_e7qn" touchable="false">
|
||||
<component id="n36_h4ge" name="n36" xy="46,88" size="100,100" group="n33_e7qn" touchable="false">
|
||||
<gearDisplay controller="dismiss_room" pages="1"/>
|
||||
</component>
|
||||
<graph id="n61_vt54" name="sishou" xy="8,-73" size="107,107" group="n33_e7qn" aspect="true" touchable="false" type="rect" lineSize="0" fillColor="#b3000000">
|
||||
<graph id="n61_vt54" name="sishou" xy="45,56" size="107,107" group="n33_e7qn" aspect="true" touchable="false" type="rect" lineSize="0" fillColor="#b3000000">
|
||||
<gearDisplay controller="sishou" pages="1"/>
|
||||
</graph>
|
||||
<image id="n57_fnpw" name="n57" src="peuq5z" fileName="component/Main/images/niuniu_icon_12.png" xy="0,-85" group="n33_e7qn" visible="false">
|
||||
<image id="n57_fnpw" name="n57" src="peuq5z" fileName="component/Main/images/niuniu_icon_12.png" xy="37,44" group="n33_e7qn" visible="false">
|
||||
<gearDisplay controller="bank" pages="1"/>
|
||||
</image>
|
||||
<text id="n62_vt54" name="n62" xy="30,-36" size="64,42" group="n33_e7qn" fontSize="30" color="#ffffff" text="死手">
|
||||
<text id="n62_vt54" name="n62" xy="67,93" size="64,42" group="n33_e7qn" fontSize="30" color="#ffffff" text="死手">
|
||||
<gearDisplay controller="sishou" pages="1"/>
|
||||
</text>
|
||||
<image id="n80_cbxl" name="n80" src="peuq56" fileName="component/Main/component/new_ui/zhuang_img.png" xy="82,-86" group="n33_e7qn">
|
||||
<image id="n80_cbxl" name="n80" src="peuq56" fileName="component/Main/component/new_ui/zhuang_img.png" xy="119,43" group="n33_e7qn">
|
||||
<gearDisplay controller="bank" pages="1"/>
|
||||
</image>
|
||||
<group id="n33_e7qn" name="n33" xy="-40,-92" size="187,151"/>
|
||||
<image id="n8" name="ready" src="peuq63" fileName="font/images/game/game_fonts_01.png" xy="133,-58" visible="false">
|
||||
<group id="n33_e7qn" name="n33" xy="-3,37" size="187,151"/>
|
||||
<image id="n8" name="ready" src="peuq63" fileName="font/images/game/game_fonts_01.png" xy="170,71" visible="false">
|
||||
<gearDisplay controller="read" pages="1"/>
|
||||
</image>
|
||||
<component id="n78_fgao" name="info" src="peuq6g" fileName="component/Main/component/HeadNameBG.xml" xy="-1,35" size="124,49"/>
|
||||
<component id="n31_e54q" name="chat" src="peuq6h" fileName="component/MsgBubble2.xml" xy="-18,-137" alpha="0"/>
|
||||
<component id="n27_e54q" name="face" src="peuq62" fileName="component/Face3.xml" xy="58,-141" alpha="0"/>
|
||||
<loader id="n39_oqwm" name="icon" xy="21,-63" size="80,83" visible="false" align="center" vAlign="middle"/>
|
||||
<image id="n40_jali" name="n40" src="peuq61" fileName="images/game_icon_07.png" xy="-54,-154">
|
||||
<component id="n78_fgao" name="info" src="peuq6g" fileName="component/Main/component/HeadNameBG.xml" xy="36,164" size="124,56"/>
|
||||
<component id="n31_e54q" name="chat" src="peuq6h" fileName="component/MsgBubble2.xml" xy="19,-8" alpha="0"/>
|
||||
<component id="n27_e54q" name="face" src="peuq62" fileName="component/Face3.xml" xy="95,-12" alpha="0"/>
|
||||
<loader id="n39_oqwm" name="icon" xy="58,66" size="80,83" visible="false" align="center" vAlign="middle"/>
|
||||
<image id="n40_jali" name="n40" src="peuq61" fileName="images/game_icon_07.png" xy="-17,-25">
|
||||
<gearDisplay controller="mask_voice" pages="1"/>
|
||||
</image>
|
||||
<component id="n41_jali" name="n41" src="peuq66" fileName="component/VoiceMask(1).xml" xy="-8,-128">
|
||||
<component id="n41_jali" name="n41" pkg="lkq9ne9s" src="peuq66" fileName="component/VoiceMask(1).xml" xy="29,1">
|
||||
<gearDisplay controller="mask_voice" pages="1"/>
|
||||
</component>
|
||||
<image id="n73_o49p" name="n73" src="peuq6i" fileName="component/Main/new_ui/jifen_bg_img.png" xy="-2,93" size="130,35" group="n51_m25s" aspect="true"/>
|
||||
<text id="n49_m25s" name="huxi" xy="52,93" size="77,31" group="n51_m25s" fontSize="22" color="#ffffff" align="center" vAlign="middle" leading="0" autoSize="shrink" singleLine="true" text="11111"/>
|
||||
<text id="n50_m25s" name="n50" xy="2,96" size="47,27" group="n51_m25s" fontSize="20" color="#512e06" align="center" vAlign="middle" autoSize="none" singleLine="true" text="胡息
"/>
|
||||
<group id="n51_m25s" name="n51" xy="-2,93" size="132,35" advanced="true">
|
||||
<image id="n73_o49p" name="n73" src="peuq6i" fileName="component/Main/new_ui/jifen_bg_img.png" xy="35,222" size="130,35" group="n51_m25s" aspect="true"/>
|
||||
<text id="n49_m25s" name="huxi" xy="89,222" size="77,31" group="n51_m25s" fontSize="22" color="#ffffff" align="center" vAlign="middle" leading="0" autoSize="shrink" singleLine="true" text="11111"/>
|
||||
<text id="n50_m25s" name="n50" xy="39,225" size="47,27" group="n51_m25s" fontSize="20" color="#512e06" align="center" vAlign="middle" autoSize="none" singleLine="true" text="胡息
"/>
|
||||
<group id="n51_m25s" name="n51" xy="35,222" size="132,35" advanced="true">
|
||||
<gearDisplay controller="huxi" pages="1"/>
|
||||
</group>
|
||||
<image id="n52_nu0l" name="n52" src="peuq6b" fileName="component/Main/images/c00.png" xy="-2,4" visible="false">
|
||||
<image id="n52_nu0l" name="n52" src="peuq6b" fileName="component/Main/images/c00.png" xy="35,133" visible="false">
|
||||
<gearDisplay controller="tuo" pages="1"/>
|
||||
</image>
|
||||
<image id="n54_r1mo" name="n54" src="peuq6c" fileName="images/di(1)(1).png" xy="-11,-108" group="n56_r1mo">
|
||||
<image id="n54_r1mo" name="n54" src="peuq6c" fileName="images/di(1)(1).png" xy="26,21" group="n56_r1mo">
|
||||
<gearDisplay controller="piao" pages="1"/>
|
||||
</image>
|
||||
<text id="n55_r1mo" name="piaotext" xy="26,-98" size="69,31" group="n56_r1mo" fontSize="15" color="#ffd554" align="center" vAlign="middle" autoSize="none" text="飘鸟 10
">
|
||||
<text id="n55_r1mo" name="piaotext" xy="63,31" size="69,31" group="n56_r1mo" fontSize="15" color="#ffd554" align="center" vAlign="middle" autoSize="none" text="飘鸟 10
">
|
||||
<gearDisplay controller="piao" pages="1"/>
|
||||
</text>
|
||||
<group id="n56_r1mo" name="n56" xy="-11,-108" size="148,42"/>
|
||||
<image id="n58_mk2u" name="n58" src="peuq6d" fileName="component/Main/images/hand.png" xy="83,-24" size="56,59">
|
||||
<group id="n56_r1mo" name="n56" xy="26,21" size="148,42"/>
|
||||
<image id="n58_mk2u" name="n58" src="peuq6d" fileName="component/Main/images/hand.png" xy="120,105" size="56,59">
|
||||
<gearDisplay controller="jushou" pages="1"/>
|
||||
</image>
|
||||
<image id="n59_enxu" name="n59" src="peuq6j" fileName="images/jiachui.png" xy="155,1" visible="false">
|
||||
<image id="n59_enxu" name="n59" src="peuq6j" fileName="images/jiachui.png" xy="192,130" visible="false">
|
||||
<gearDisplay controller="chui" pages="1,2"/>
|
||||
</image>
|
||||
<image id="n69_o49p" name="n69" pkg="3bfrwj0h" src="kd7ro6" fileName="component/Main/new_ui/jiatuo_img.png" xy="0,-5">
|
||||
<image id="n69_o49p" name="n69" pkg="3bfrwj0h" src="kd7ro6" fileName="component/Main/new_ui/jiatuo_img.png" xy="37,124">
|
||||
<gearDisplay controller="tuo" pages="1"/>
|
||||
</image>
|
||||
<image id="n70_o49p" name="n70" pkg="3bfrwj0h" src="o49ppl" fileName="component/Main/new_ui/jiachui_img.png" xy="0,-9">
|
||||
<image id="n70_o49p" name="n70" pkg="3bfrwj0h" src="o49ppl" fileName="component/Main/new_ui/jiachui_img.png" xy="37,120">
|
||||
<gearDisplay controller="chui" pages="1,2"/>
|
||||
</image>
|
||||
<image id="n71_o49p" name="n71" src="peuq6k" fileName="font/images/game/game_new_fonts_01.png" xy="134,-60">
|
||||
<image id="n71_o49p" name="n71" src="peuq6k" fileName="font/images/game/game_new_fonts_01.png" xy="171,69">
|
||||
<gearDisplay controller="read" pages="1"/>
|
||||
</image>
|
||||
<image id="n74_o49p" name="n74" src="peuq6i" fileName="component/Main/new_ui/jifen_bg_img.png" xy="-2,128" size="126,33" group="n76_o49p"/>
|
||||
<text id="n60_seby" name="tex_jifen" xy="60,124" size="77,39" group="n76_o49p" fontSize="26" color="#ffffff" align="center" vAlign="middle" autoSize="shrink" text="22222"/>
|
||||
<text id="n75_o49p" name="tex_jifen_text" xy="-8,130" size="69,29" group="n76_o49p" fontSize="20" color="#512e06" align="center" vAlign="middle" autoSize="none" text="战绩"/>
|
||||
<group id="n76_o49p" name="n76" xy="-8,124" size="145,39" advanced="true">
|
||||
<image id="n74_o49p" name="n74" src="peuq6i" fileName="component/Main/new_ui/jifen_bg_img.png" xy="11,257" size="185,41" group="n76_o49p"/>
|
||||
<text id="n60_seby" name="tex_jifen" xy="109,256" size="81,36" group="n76_o49p" fontSize="26" color="#ffffff" align="center" vAlign="middle" autoSize="shrink" text="22222"/>
|
||||
<text id="n75_o49p" name="tex_jifen_text" xy="23,261" size="69,29" group="n76_o49p" fontSize="20" color="#512e06" align="center" vAlign="middle" autoSize="none" text="战绩"/>
|
||||
<group id="n76_o49p" name="n76" xy="11,256" size="185,42" advanced="true">
|
||||
<gearDisplay controller="zhanji" pages="1"/>
|
||||
</group>
|
||||
<text id="n84_nkur" name="tuoguanTips" xy="122,-106" size="302,48" visible="false" fontSize="22" color="#ff0000" vAlign="middle" autoSize="none" text="开启托管剩余时间"/>
|
||||
<text id="n85_j34t" name="piao" xy="130,-50" size="92,29" fontSize="20" color="#ffd100" align="center" vAlign="middle" autoSize="none" text=""/>
|
||||
<image id="n87_ybf5" name="niao8" src="peuq6c" fileName="images/di(1)(1).png" xy="-9,-105" group="n89_ybf5">
|
||||
<text id="n84_nkur" name="tuoguanTips" xy="159,23" size="302,48" visible="false" fontSize="22" color="#ff0000" vAlign="middle" autoSize="none" text="开启托管剩余时间"/>
|
||||
<text id="n85_j34t" name="piao" xy="167,79" size="92,29" fontSize="20" color="#ffd100" align="center" vAlign="middle" autoSize="none" text=""/>
|
||||
<image id="n87_ybf5" name="niao8" src="peuq6c" fileName="images/di(1)(1).png" xy="28,24" group="n89_ybf5">
|
||||
<gearDisplay controller="niao" pages="1"/>
|
||||
</image>
|
||||
<text id="n88_ybf5" name="niaotext" xy="17,-102" size="89,34" group="n89_ybf5" font="Microsoft YaHei" fontSize="24" color="#ffd554" align="center" vAlign="middle" autoSize="none" text="打鸟">
|
||||
<text id="n88_ybf5" name="niaotext" xy="54,27" size="89,34" group="n89_ybf5" font="Microsoft YaHei" fontSize="24" color="#ffd554" align="center" vAlign="middle" autoSize="none" text="打鸟">
|
||||
<gearDisplay controller="niao" pages="1"/>
|
||||
</text>
|
||||
<group id="n89_ybf5" name="n89" xy="-9,-105" size="148,42"/>
|
||||
<component id="n92_xrdz" name="pb_tuoGuan_Bg" src="peuq6l" fileName="component/pb_tuoGuan_Bg.xml" xy="15,-64" size="90,89">
|
||||
<group id="n89_ybf5" name="n89" xy="28,24" size="148,42"/>
|
||||
<component id="n92_xrdz" name="pb_tuoGuan_Bg" src="peuq6l" fileName="component/pb_tuoGuan_Bg.xml" xy="52,65" size="90,89">
|
||||
<ProgressBar value="50" max="100"/>
|
||||
</component>
|
||||
<component id="n93_xrdz" name="pb_tuoGuan_Border" src="peuq6n" fileName="component/pb_tuoGuan_Border.xml" xy="14,-62" size="90,83">
|
||||
<component id="n93_xrdz" name="pb_tuoGuan_Border" src="peuq6n" fileName="component/pb_tuoGuan_Border.xml" xy="51,67" size="90,83">
|
||||
<ProgressBar value="50" max="100"/>
|
||||
</component>
|
||||
</displayList>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<component size="144,151" opaque="false" initName="gcm_info" designImageLayer="1">
|
||||
<component size="200,300" opaque="false" initName="gcm_info" designImageLayer="1">
|
||||
<controller name="room_owner" pages="0,,1," selected="0"/>
|
||||
<controller name="bank" pages="0,,1," selected="0"/>
|
||||
<controller name="read" pages="0,,1," selected="0"/>
|
||||
|
|
@ -15,103 +15,103 @@
|
|||
<controller name="zhanji" pages="0,,1," selected="0"/>
|
||||
<controller name="niao" pages="0,,1," selected="0"/>
|
||||
<displayList>
|
||||
<image id="n76_o49p" name="n76" src="peuq4x" fileName="component/Main/component/new_ui/touxiang_img.png" xy="12,-26" size="123,172"/>
|
||||
<image id="n34_e7qn" name="n34" src="peuq5v" fileName="font/images/head/index_bg_01.png" xy="17,0" size="100,98" group="n39_e7qn" aspect="true" visible="false"/>
|
||||
<image id="n38_e7qn" name="zhuang1" pkg="27vd145b" src="e54q3w" fileName="images/head/bank.png" xy="21,-19" group="n39_e7qn" aspect="true" visible="false">
|
||||
<image id="n76_o49p" name="n76" src="peuq4x" fileName="component/Main/component/new_ui/touxiang_img.png" xy="52,62" size="92,96"/>
|
||||
<image id="n34_e7qn" name="n34" src="peuq5v" fileName="font/images/head/index_bg_01.png" xy="43,80" size="100,98" group="n39_e7qn" aspect="true" visible="false"/>
|
||||
<image id="n38_e7qn" name="zhuang1" pkg="27vd145b" src="e54q3w" fileName="images/head/bank.png" xy="47,61" size="100,100" group="n39_e7qn" aspect="true" visible="false">
|
||||
<gearDisplay controller="time" pages="1"/>
|
||||
</image>
|
||||
<component id="n81_g4bl" name="btn_head" src="peuq6f" fileName="component/Main/Head4.xml" xy="26,-19" group="n39_e7qn"/>
|
||||
<image id="n79_cbxl" name="n79" src="peuq4z" fileName="component/Main/component/new_ui/touxiangkuang_img.png" xy="23,-22" size="98,98" group="n39_e7qn">
|
||||
<component id="n81_g4bl" name="btn_head" src="peuq6f" fileName="component/Main/Head4.xml" xy="52,61" size="94,94" group="n39_e7qn"/>
|
||||
<image id="n79_cbxl" name="n79" src="peuq4z" fileName="component/Main/component/new_ui/touxiangkuang_img.png" xy="49,58" size="98,98" group="n39_e7qn">
|
||||
<gearDisplay controller="time" pages="1"/>
|
||||
</image>
|
||||
<image id="n78_cbxl" name="n78" src="peuq56" fileName="component/Main/component/new_ui/zhuang_img.png" xy="71,-27" group="n39_e7qn">
|
||||
<image id="n78_cbxl" name="n78" src="peuq56" fileName="component/Main/component/new_ui/zhuang_img.png" xy="97,53" size="65,41" group="n39_e7qn">
|
||||
<gearDisplay controller="bank" pages="1"/>
|
||||
</image>
|
||||
<graph id="n62_vt54" name="sishou" xy="20,-23" size="105,105" group="n39_e7qn" aspect="true" touchable="false" type="rect" lineSize="0" fillColor="#b3000000">
|
||||
<graph id="n62_vt54" name="sishou" xy="46,57" size="105,105" group="n39_e7qn" aspect="true" touchable="false" type="rect" lineSize="0" fillColor="#b3000000">
|
||||
<gearDisplay controller="sishou" pages="1"/>
|
||||
</graph>
|
||||
<text id="n63_vt54" name="n63" xy="43,14" size="64,41" group="n39_e7qn" fontSize="30" color="#ffffff" text="死手">
|
||||
<text id="n63_vt54" name="n63" xy="69,94" size="64,42" group="n39_e7qn" fontSize="30" color="#ffffff" text="死手">
|
||||
<gearDisplay controller="sishou" pages="1"/>
|
||||
</text>
|
||||
<graph id="n36_e7qn" name="offLine" xy="19,-23" size="107,107" group="n39_e7qn" aspect="true" touchable="false" type="rect" lineSize="0" fillColor="#b3000000">
|
||||
<graph id="n36_e7qn" name="offLine" xy="45,57" size="107,107" group="n39_e7qn" aspect="true" touchable="false" type="rect" lineSize="0" fillColor="#b3000000">
|
||||
<gearDisplay controller="offline" pages="1"/>
|
||||
</graph>
|
||||
<image id="n37_e7qn" name="fangzhu" src="peuq5y" fileName="component/Main/images/owner.png" xy="9,-26" group="n39_e7qn" visible="false">
|
||||
<image id="n37_e7qn" name="fangzhu" src="peuq5y" fileName="component/Main/images/owner.png" xy="35,54" size="40,43" group="n39_e7qn" visible="false">
|
||||
<gearDisplay controller="room_owner" pages="1"/>
|
||||
</image>
|
||||
<text id="n42_aawn" name="n42" xy="41,14" size="64,41" group="n39_e7qn" fontSize="30" color="#ffffff" text="离线">
|
||||
<text id="n42_aawn" name="n42" xy="67,94" size="64,42" group="n39_e7qn" fontSize="30" color="#ffffff" text="离线">
|
||||
<gearDisplay controller="offline" pages="1"/>
|
||||
</text>
|
||||
<image id="n58_fnpw" name="n58" src="peuq5z" fileName="component/Main/images/niuniu_icon_12.png" xy="82,1" group="n39_e7qn" visible="false">
|
||||
<image id="n58_fnpw" name="n58" src="peuq5z" fileName="component/Main/images/niuniu_icon_12.png" xy="108,81" size="40,43" group="n39_e7qn" visible="false">
|
||||
<gearDisplay controller="bank" pages="1"/>
|
||||
</image>
|
||||
<image id="n66_o49p" name="n66" pkg="3bfrwj0h" src="kd7ro6" fileName="component/Main/new_ui/jiatuo_img.png" xy="14,37" size="100,102" group="n39_e7qn">
|
||||
<image id="n66_o49p" name="n66" pkg="3bfrwj0h" src="kd7ro6" fileName="component/Main/new_ui/jiatuo_img.png" xy="40,117" size="100,102" group="n39_e7qn">
|
||||
<gearDisplay controller="tuo" pages="1"/>
|
||||
</image>
|
||||
<image id="n70_o49p" name="n70" pkg="3bfrwj0h" src="o49ppl" fileName="component/Main/new_ui/jiachui_img.png" xy="12,41" group="n39_e7qn">
|
||||
<image id="n70_o49p" name="n70" pkg="3bfrwj0h" src="o49ppl" fileName="component/Main/new_ui/jiachui_img.png" xy="38,121" size="100,100" group="n39_e7qn">
|
||||
<gearDisplay controller="chui" pages="1,2"/>
|
||||
</image>
|
||||
<image id="n80_cbxl" name="n80" src="peuq57" fileName="component/Main/component/new_ui/房主.png" xy="14,-23" group="n39_e7qn" visible="false">
|
||||
<image id="n80_cbxl" name="n80" src="peuq57" fileName="component/Main/component/new_ui/房主.png" xy="40,57" size="26,54" group="n39_e7qn" visible="false">
|
||||
<gearDisplay controller="room_owner" pages="1"/>
|
||||
</image>
|
||||
<group id="n39_e7qn" name="n39" xy="9,-27" size="127,168"/>
|
||||
<image id="n8" name="ready1" src="peuq63" fileName="font/images/game/game_fonts_01.png" xy="160,50" visible="false">
|
||||
<group id="n39_e7qn" name="n39" xy="35,53" size="127,168"/>
|
||||
<image id="n8" name="ready1" src="peuq63" fileName="font/images/game/game_fonts_01.png" xy="186,130" visible="false">
|
||||
<gearDisplay controller="read" pages="1"/>
|
||||
</image>
|
||||
<image id="n65_o49p" name="ready" src="peuq6k" fileName="font/images/game/game_new_fonts_01.png" xy="160,48">
|
||||
<image id="n65_o49p" name="ready" src="peuq6k" fileName="font/images/game/game_new_fonts_01.png" xy="186,128">
|
||||
<gearDisplay controller="read" pages="1"/>
|
||||
</image>
|
||||
<component id="n77_fgao" name="info" src="peuq6g" fileName="component/Main/component/HeadNameBG.xml" xy="12,86" size="124,54"/>
|
||||
<loader id="n44_oqwm" name="icon" xy="34,-12" size="78,80" visible="false" align="center" vAlign="middle"/>
|
||||
<image id="n46_jali" name="n46" src="peuq61" fileName="images/game_icon_07.png" xy="-22,-89">
|
||||
<component id="n77_fgao" name="info" src="peuq6g" fileName="component/Main/component/HeadNameBG.xml" xy="38,166" size="124,54"/>
|
||||
<loader id="n44_oqwm" name="icon" xy="60,68" size="78,80" visible="false" align="center" vAlign="middle"/>
|
||||
<image id="n46_jali" name="n46" src="peuq61" fileName="images/game_icon_07.png" xy="4,-9">
|
||||
<gearDisplay controller="mask_voice" pages="1"/>
|
||||
</image>
|
||||
<component id="n45_jali" name="n45" src="peuq66" fileName="component/VoiceMask(1).xml" xy="27,-63">
|
||||
<component id="n45_jali" name="n45" pkg="lkq9ne9s" src="peuq66" fileName="component/VoiceMask(1).xml" xy="53,17">
|
||||
<gearDisplay controller="mask_voice" pages="1"/>
|
||||
</component>
|
||||
<image id="n75_o49p" name="n75" src="peuq6i" fileName="component/Main/new_ui/jifen_bg_img.png" xy="10,143" size="127,35" group="n49_lr5d" aspect="true"/>
|
||||
<text id="n48_lr5d" name="huxi" xy="64,139" size="80,36" group="n49_lr5d" fontSize="26" color="#ffffff" align="center" vAlign="middle" leading="0" autoSize="none" singleLine="true" text="11111"/>
|
||||
<text id="n53_m25s" name="n53" xy="9,144" size="59,27" group="n49_lr5d" fontSize="20" color="#512e06" align="center" vAlign="middle" autoSize="none" singleLine="true" text="胡息
"/>
|
||||
<group id="n49_lr5d" name="n49" xy="9,139" size="135,39" advanced="true">
|
||||
<image id="n75_o49p" name="n75" src="peuq6i" fileName="component/Main/new_ui/jifen_bg_img.png" xy="36,223" size="127,35" group="n49_lr5d" aspect="true"/>
|
||||
<text id="n48_lr5d" name="huxi" xy="90,219" size="80,36" group="n49_lr5d" fontSize="26" color="#ffffff" align="center" vAlign="middle" leading="0" autoSize="none" singleLine="true" text="11111"/>
|
||||
<text id="n53_m25s" name="n53" xy="35,224" size="59,27" group="n49_lr5d" fontSize="20" color="#512e06" align="center" vAlign="middle" autoSize="none" singleLine="true" text="胡息
"/>
|
||||
<group id="n49_lr5d" name="n49" xy="35,219" size="135,39" advanced="true">
|
||||
<gearDisplay controller="huxi" pages="1"/>
|
||||
</group>
|
||||
<image id="n54_nu0l" name="n54" src="peuq6b" fileName="component/Main/images/c00.png" xy="160,3" visible="false">
|
||||
<image id="n54_nu0l" name="n54" src="peuq6b" fileName="component/Main/images/c00.png" xy="186,83" visible="false">
|
||||
<gearDisplay controller="tuo" pages="1"/>
|
||||
</image>
|
||||
<component id="n31_e54q" name="chat" src="peuq6s" fileName="component/MsgBubble1.xml" xy="149,6" alpha="0"/>
|
||||
<component id="n27_e54q" name="face" src="peuq62" fileName="component/Face3.xml" xy="139,2" alpha="0"/>
|
||||
<image id="n55_r1mo" name="n55" src="peuq6c" fileName="images/di(1)(1).png" xy="2,-70" group="n57_r1mo">
|
||||
<component id="n31_e54q" name="chat" src="peuq6s" fileName="component/MsgBubble1.xml" xy="175,86" alpha="0"/>
|
||||
<component id="n27_e54q" name="face" src="peuq62" fileName="component/Face3.xml" xy="165,82" alpha="0"/>
|
||||
<image id="n55_r1mo" name="n55" src="peuq6c" fileName="images/di(1)(1).png" xy="28,10" size="148,42" group="n57_r1mo">
|
||||
<gearDisplay controller="piao" pages="1"/>
|
||||
</image>
|
||||
<text id="n56_r1mo" name="piaotext" xy="39,-65" size="69,37" group="n57_r1mo" fontSize="15" color="#ffd554" align="center" vAlign="middle" autoSize="none" text="飘鸟 10
">
|
||||
<text id="n56_r1mo" name="piaotext" xy="65,15" size="69,37" group="n57_r1mo" fontSize="15" color="#ffd554" align="center" vAlign="middle" autoSize="none" text="飘鸟 10
">
|
||||
<gearDisplay controller="piao" pages="1"/>
|
||||
</text>
|
||||
<group id="n57_r1mo" name="n57" xy="2,-70" size="148,42"/>
|
||||
<image id="n59_mk2u" name="n59" src="peuq6d" fileName="component/Main/images/hand.png" xy="130,46" size="56,59">
|
||||
<group id="n57_r1mo" name="n57" xy="28,10" size="148,42"/>
|
||||
<image id="n59_mk2u" name="n59" src="peuq6d" fileName="component/Main/images/hand.png" xy="156,126" size="56,59">
|
||||
<gearDisplay controller="jushou" pages="1"/>
|
||||
</image>
|
||||
<image id="n60_enxu" name="n60" src="peuq6j" fileName="images/jiachui.png" xy="130,-1">
|
||||
<image id="n60_enxu" name="n60" src="peuq6j" fileName="images/jiachui.png" xy="156,79">
|
||||
<gearDisplay controller="chui" pages="1,2"/>
|
||||
</image>
|
||||
<image id="n71_o49p" name="n71" src="peuq6i" fileName="component/Main/new_ui/jifen_bg_img.png" xy="8,181" size="136,35" group="n74_o49p" aspect="true"/>
|
||||
<text id="n72_o49p" name="tex_jifen" xy="71,179" size="77,36" group="n74_o49p" fontSize="26" color="#ffffff" align="center" vAlign="middle" leading="0" autoSize="shrink" text="22222"/>
|
||||
<text id="n73_o49p" name="tex_jifen_text" xy="2,183" size="69,29" group="n74_o49p" fontSize="18" color="#512e06" align="center" vAlign="middle" leading="0" autoSize="none" text="战绩"/>
|
||||
<group id="n74_o49p" name="n74" xy="2,179" size="146,37" advanced="true">
|
||||
<image id="n71_o49p" name="n71" src="peuq6i" fileName="component/Main/new_ui/jifen_bg_img.png" xy="34,261" size="136,35" group="n74_o49p" aspect="true"/>
|
||||
<text id="n72_o49p" name="tex_jifen" xy="97,259" size="77,36" group="n74_o49p" fontSize="26" color="#ffffff" align="center" vAlign="middle" leading="0" autoSize="shrink" text="22222"/>
|
||||
<text id="n73_o49p" name="tex_jifen_text" xy="28,263" size="69,29" group="n74_o49p" fontSize="18" color="#512e06" align="center" vAlign="middle" leading="0" autoSize="none" text="战绩"/>
|
||||
<group id="n74_o49p" name="n74" xy="28,259" size="146,37" advanced="true">
|
||||
<gearDisplay controller="zhanji" pages="1"/>
|
||||
</group>
|
||||
<text id="n82_nkur" name="tuoguanTips" xy="151,45" size="237,46" visible="false" fontSize="22" color="#ff0000" vAlign="middle" autoSize="none" text="开启托管剩余时间90S"/>
|
||||
<text id="n83_j34t" name="piao" xy="129,3" size="92,29" fontSize="20" color="#ffd100" align="center" vAlign="middle" autoSize="none" text=""/>
|
||||
<image id="n84_ybf5" name="n84" src="peuq6c" fileName="images/di(1)(1).png" xy="0,-34" group="n86_ybf5">
|
||||
<text id="n82_nkur" name="tuoguanTips" xy="177,125" size="237,46" visible="false" fontSize="22" color="#ff0000" vAlign="middle" autoSize="none" text="开启托管剩余时间90S"/>
|
||||
<text id="n83_j34t" name="piao" xy="155,83" size="92,29" fontSize="20" color="#ffd100" align="center" vAlign="middle" autoSize="none" text=""/>
|
||||
<image id="n84_ybf5" name="n84" src="peuq6c" fileName="images/di(1)(1).png" xy="26,46" size="148,42" group="n86_ybf5">
|
||||
<gearDisplay controller="niao" pages="1"/>
|
||||
</image>
|
||||
<text id="n85_ybf5" name="niaotext" xy="20,-32" size="104,37" group="n86_ybf5" font="Microsoft YaHei" fontSize="24" color="#ffd554" align="center" vAlign="middle" autoSize="none" text="飘鸟 10
">
|
||||
<text id="n85_ybf5" name="niaotext" xy="46,48" size="104,37" group="n86_ybf5" font="Microsoft YaHei" fontSize="24" color="#ffd554" align="center" vAlign="middle" autoSize="none" text="飘鸟 10
">
|
||||
<gearDisplay controller="niao" pages="1"/>
|
||||
</text>
|
||||
<group id="n86_ybf5" name="n86" xy="0,-34" size="148,42"/>
|
||||
<component id="n89_xrdz" name="pb_tuoGuan_Bg" src="peuq6l" fileName="component/pb_tuoGuan_Bg.xml" xy="26,-17" size="91,87">
|
||||
<group id="n86_ybf5" name="n86" xy="26,46" size="148,42"/>
|
||||
<component id="n89_xrdz" name="pb_tuoGuan_Bg" src="peuq6l" fileName="component/pb_tuoGuan_Bg.xml" xy="52,63" size="91,87">
|
||||
<ProgressBar value="50" max="100"/>
|
||||
</component>
|
||||
<component id="n90_xrdz" name="pb_tuoGuan_Border" src="peuq6n" fileName="component/pb_tuoGuan_Border.xml" xy="26,-17" size="89,88">
|
||||
<component id="n90_xrdz" name="pb_tuoGuan_Border" src="peuq6n" fileName="component/pb_tuoGuan_Border.xml" xy="52,63" size="89,88">
|
||||
<ProgressBar value="50" max="100"/>
|
||||
</component>
|
||||
</displayList>
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 5.8 KiB After Width: | Height: | Size: 13 KiB |
|
After Width: | Height: | Size: 22 KiB |
|
After Width: | Height: | Size: 818 KiB |
|
|
@ -995,6 +995,8 @@
|
|||
<component id="syh3rk" name="Main_2_chat.xml" path="/component/Main/" exported="true"/>
|
||||
<component id="syh3rl" name="VoiceMask.xml" path="/component/Main/" exported="true"/>
|
||||
<image id="syh3rm" name="game_start.png" path="/image/main_2/"/>
|
||||
<image id="h5b1rn" name="floorTop.png" path="/component/Main/images/"/>
|
||||
<image id="h5b1rp" name="safe.png" path="/component/Main/images/"/>
|
||||
</resources>
|
||||
<publish name="Main_RunBeard" path="..\wb_unity_pro\Assets\ART\base\main_zipai\ui" packageCount="2"/>
|
||||
</packageDescription>
|
||||
|
|
@ -7,18 +7,18 @@
|
|||
<component id="n156_10xl7" name="lst_game" src="75efcz" fileName="component/games/Win_CreateRoom.xml" pkg="2d9xdj6z" xy="0,0" size="2378,1086" group="n163_10xl7" controller="type,1">
|
||||
<relation target="" sidePair="width-width,height-height"/>
|
||||
</component>
|
||||
<component id="n157_10xl7" name="btn_next" src="eeqmcgp" fileName="buttons/Btn_Common.xml" pkg="27vd145b" xy="1057,971" size="149,82" group="n162_10xl7">
|
||||
<component id="n157_10xl7" name="btn_next" src="eeqmcgp" fileName="buttons/Btn_Common.xml" pkg="27vd145b" xy="1241,952" size="224,101" group="n162_10xl7">
|
||||
<Button title=" " titleColor="#167547" titleFontSize="24" icon="ui://m7iejg46lqkg7iru"/>
|
||||
</component>
|
||||
<component id="n158_10xl7" name="n158" src="kwi0hjx" fileName="mgr/component/comm/mng_label.xml" xy="533,995" size="416,60" group="n162_10xl7" controller="type,2"/>
|
||||
<image id="n173_vyn3" name="n173" src="s98c7i5u" fileName="font/images/win/shurukuang5.png" pkg="27vd145b" xy="751,982" size="263,57" group="n162_10xl7"/>
|
||||
<component id="n160_10xl7" name="btn_color" src="eeqmcgp" fileName="buttons/Btn_Common.xml" pkg="27vd145b" xy="1231,971" size="135,82" group="n162_10xl7" visible="false">
|
||||
<component id="n158_10xl7" name="n158" src="kwi0hjx" fileName="mgr/component/comm/mng_label.xml" xy="433,995" size="416,60" group="n162_10xl7" controller="type,2"/>
|
||||
<image id="n173_vyn3" name="n173" src="s98c7i5u" fileName="font/images/win/shurukuang5.png" pkg="27vd145b" xy="750,950" size="451,94" group="n162_10xl7"/>
|
||||
<component id="n160_10xl7" name="btn_color" src="eeqmcgp" fileName="buttons/Btn_Common.xml" pkg="27vd145b" xy="1131,971" size="135,82" group="n162_10xl7" visible="false">
|
||||
<Button title=" " icon="ui://m7iejg46vyn37i5c"/>
|
||||
</component>
|
||||
<text id="n161_10xl7" name="tex_name" xy="770,986" size="247,51" group="n162_10xl7" font="Microsoft YaHei" fontSize="24" color="#367256" align="center" vAlign="middle" autoSize="shrink" autoClearText="true" text="" input="true" prompt="点击输入玩法名"/>
|
||||
<text id="n174_vyn3" name="n174" xy="628,993" size="132,42" group="n162_10xl7" font="Microsoft YaHei" fontSize="24" color="#367256" vAlign="middle" autoSize="none" text="玩法名称:"/>
|
||||
<group id="n162_10xl7" name="n162" xy="533,971" size="833,84" group="n163_10xl7" advanced="true">
|
||||
<relation target="" sidePair="center-center%,topext-bottom,bottomext-bottom"/>
|
||||
<text id="n161_10xl7" name="tex_name" xy="768,952" size="418,92" group="n162_10xl7" font="Microsoft YaHei" fontSize="46" color="#367256" align="center" vAlign="middle" autoSize="shrink" autoClearText="true" text="" input="true" prompt="点击输入玩法名"/>
|
||||
<text id="n174_vyn3" name="n174" xy="476,970" size="236,62" group="n162_10xl7" font="Microsoft YaHei" fontSize="46" color="#367256" vAlign="middle" autoSize="none" text="玩法名称:"/>
|
||||
<group id="n162_10xl7" name="n162" xy="433,950" size="1032,105" group="n163_10xl7" advanced="true">
|
||||
<relation target="" sidePair="center-center%"/>
|
||||
</group>
|
||||
<group id="n163_10xl7" name="page0" xy="0,0" size="2378,1086" advanced="true">
|
||||
<gearDisplay controller="page" pages="0"/>
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 21 KiB |
|
Before Width: | Height: | Size: 551 KiB After Width: | Height: | Size: 595 KiB |
|
Before Width: | Height: | Size: 1.6 MiB After Width: | Height: | Size: 1.5 MiB |
|
Before Width: | Height: | Size: 2.0 MiB After Width: | Height: | Size: 2.4 MiB |
|
Before Width: | Height: | Size: 770 KiB After Width: | Height: | Size: 1.3 MiB |
|
Before Width: | Height: | Size: 751 KiB After Width: | Height: | Size: 1.2 MiB |
|
Before Width: | Height: | Size: 587 KiB After Width: | Height: | Size: 1.2 MiB |
|
Before Width: | Height: | Size: 727 KiB After Width: | Height: | Size: 1.1 MiB |
|
Before Width: | Height: | Size: 590 KiB After Width: | Height: | Size: 1.3 MiB |
|
Before Width: | Height: | Size: 626 KiB After Width: | Height: | Size: 649 KiB |
|
Before Width: | Height: | Size: 1.2 MiB After Width: | Height: | Size: 1010 KiB |
|
Before Width: | Height: | Size: 206 KiB After Width: | Height: | Size: 357 KiB |
|
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 61 KiB |
|
Before Width: | Height: | Size: 354 KiB After Width: | Height: | Size: 307 KiB |
|
Before Width: | Height: | Size: 1.1 MiB After Width: | Height: | Size: 1.2 MiB |
|
Before Width: | Height: | Size: 734 KiB After Width: | Height: | Size: 1.2 MiB |
|
Before Width: | Height: | Size: 780 KiB After Width: | Height: | Size: 1.1 MiB |
|
Before Width: | Height: | Size: 789 KiB After Width: | Height: | Size: 1.0 MiB |
|
Before Width: | Height: | Size: 743 KiB After Width: | Height: | Size: 1.2 MiB |
|
Before Width: | Height: | Size: 795 KiB After Width: | Height: | Size: 974 KiB |
|
Before Width: | Height: | Size: 681 KiB After Width: | Height: | Size: 1.1 MiB |
|
Before Width: | Height: | Size: 708 KiB After Width: | Height: | Size: 1.2 MiB |
|
Before Width: | Height: | Size: 72 KiB After Width: | Height: | Size: 43 KiB |
|
Before Width: | Height: | Size: 454 KiB After Width: | Height: | Size: 313 KiB |
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
|
Before Width: | Height: | Size: 1.6 MiB After Width: | Height: | Size: 1.7 MiB |
|
Before Width: | Height: | Size: 2.6 MiB After Width: | Height: | Size: 3.1 MiB |
|
Before Width: | Height: | Size: 1.0 MiB After Width: | Height: | Size: 1.3 MiB |
|
Before Width: | Height: | Size: 1.2 MiB After Width: | Height: | Size: 1.2 MiB |
|
Before Width: | Height: | Size: 38 KiB After Width: | Height: | Size: 38 KiB |
|
Before Width: | Height: | Size: 2.9 MiB After Width: | Height: | Size: 2.9 MiB |
|
Before Width: | Height: | Size: 1.8 MiB After Width: | Height: | Size: 2.9 MiB |
|
Before Width: | Height: | Size: 1.5 MiB After Width: | Height: | Size: 2.2 MiB |
|
Before Width: | Height: | Size: 473 KiB After Width: | Height: | Size: 496 KiB |
|
Before Width: | Height: | Size: 1.8 MiB After Width: | Height: | Size: 2.1 MiB |
|
Before Width: | Height: | Size: 2.9 MiB After Width: | Height: | Size: 3.2 MiB |
|
Before Width: | Height: | Size: 864 KiB After Width: | Height: | Size: 946 KiB |
|
Before Width: | Height: | Size: 5.1 MiB After Width: | Height: | Size: 6.7 MiB |
|
Before Width: | Height: | Size: 1.4 MiB After Width: | Height: | Size: 1.4 MiB |
|
Before Width: | Height: | Size: 280 KiB After Width: | Height: | Size: 287 KiB |
|
Before Width: | Height: | Size: 2.5 MiB After Width: | Height: | Size: 2.5 MiB |
|
Before Width: | Height: | Size: 1.7 MiB After Width: | Height: | Size: 878 KiB |
|
Before Width: | Height: | Size: 1.5 MiB After Width: | Height: | Size: 1.4 MiB |
|
Before Width: | Height: | Size: 1.1 MiB After Width: | Height: | Size: 966 KiB |
|
Before Width: | Height: | Size: 626 KiB After Width: | Height: | Size: 481 KiB |
|
Before Width: | Height: | Size: 666 KiB After Width: | Height: | Size: 650 KiB |
|
Before Width: | Height: | Size: 1.9 MiB After Width: | Height: | Size: 2.0 MiB |
|
Before Width: | Height: | Size: 2.4 MiB After Width: | Height: | Size: 2.4 MiB |
|
Before Width: | Height: | Size: 1.7 MiB After Width: | Height: | Size: 2.6 MiB |
|
Before Width: | Height: | Size: 711 KiB After Width: | Height: | Size: 725 KiB |
|
Before Width: | Height: | Size: 579 KiB After Width: | Height: | Size: 491 KiB |
|
After Width: | Height: | Size: 39 KiB |
|
|
@ -0,0 +1,92 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 8ac1d8f0ae1519648b1ac8e0b462a30e
|
||||
TextureImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 11
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 1
|
||||
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
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
serializedVersion: 2
|
||||
filterMode: -1
|
||||
aniso: -1
|
||||
mipBias: -100
|
||||
wrapU: -1
|
||||
wrapV: -1
|
||||
wrapW: -1
|
||||
nPOTScale: 1
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 0
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 0
|
||||
spritePivot: {x: 0.5, y: 0.5}
|
||||
spritePixelsToUnits: 100
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spriteGenerateFallbackPhysicsShape: 1
|
||||
alphaUsage: 1
|
||||
alphaIsTransparency: 0
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 0
|
||||
textureShape: 1
|
||||
singleChannelComponent: 0
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
applyGammaDecoding: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 3
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID:
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
spritePackingTag:
|
||||
pSDRemoveMatte: 0
|
||||
pSDShowRemoveMatteOption: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
|
Before Width: | Height: | Size: 5.1 MiB After Width: | Height: | Size: 6.7 MiB |
|
Before Width: | Height: | Size: 1.4 MiB After Width: | Height: | Size: 1.4 MiB |
|
Before Width: | Height: | Size: 280 KiB After Width: | Height: | Size: 287 KiB |