master
罗家炜 2025-10-20 18:30:18 +08:00
parent 13dd31b708
commit d3f73d1c56
98 changed files with 866 additions and 146 deletions

View File

@ -64,7 +64,7 @@ local function AddPlayer(data, self)
end
-- 点击弹出选择成员界面
local view = FamilySelectNumber.New()
local view = FamilySelectNumber.New(data)
view:Show(self.root._group.id, function(number)
if Exists(number.uid, data.deskList) then
ViewUtil.ErrorTip(-1, "设置失败,成员已经在关系中")

View File

@ -27,7 +27,9 @@ function M.TryShow(data, callback)
local group = data.group
local noticeTime = Utils.LoadLocalFile(string.format("Family_%s_notice_time", group.id)) or 0
local noticeText = Utils.LoadLocalFile(string.format("Family_%s_notice_text", group.id)) or ""
if tonumber(os.date("%Y%m%d", tonumber(noticeTime))) - tonumber(os.date("%Y%m%d", os.time())) <= -1 or (group.notice and #group.notice > 0 and noticeText ~= group.notice) then
printlog("lingmeng notice", os.date("%Y%m%d", tonumber(noticeTime)), os.date("%Y%m%d", os.time()), group.notice,
group.notice)
if group.notice and #group.notice > 0 and (tonumber(os.date("%Y%m%d", tonumber(noticeTime))) - tonumber(os.date("%Y%m%d", os.time())) <= -1 or noticeText ~= group.notice) then
Utils.SaveLocalFile(string.format("Family_%s_notice_time", group.id), os.time())
Utils.SaveLocalFile(string.format("Family_%s_notice_text", group.id), group.notice)
local my = M.New(data, callback)

View File

@ -36,7 +36,9 @@ function FamilyNumberRecord.New(root, page)
self.text_score_majiang = self._view:GetChild('text_score_majiang')
local box_type = self._view:GetChild('combBox_type')
local box_mumberTime = self._view:GetChild('box_mumberTime')
local ctr_day = self._view:GetController('day')
self._ctr_day = self._view:GetController('day')
self._ctr_myday = self._view:GetController('myday')
local ctr_sort = self._view:GetController('sort')
local ctr_limitDay = self._view:GetController('limitDay')
@ -71,12 +73,12 @@ function FamilyNumberRecord.New(root, page)
self:NumverRankRenderer(group_id)
self:NumberRecordDetailRender()
box_mumberTime.onChanged:Set(function()
self._data_leftTime = tonumber(box_mumberTime.value)
self._data_rightTime = tonumber(box_mumberTime.value) + 86399
self:OnClickNumberRank(group_id, self.rankNumber.uid, 0)
end)
ctr_day.onChanged:Set(function(context)
-- box_mumberTime.onChanged:Set(function()
-- self._data_leftTime = tonumber(box_mumberTime.value)
-- self._data_rightTime = tonumber(box_mumberTime.value) + 86399
-- self:OnClickNumberRank(group_id, self.rankNumber.uid, 0)
-- end)
self._ctr_day.onChanged:Set(function(context)
local timeTable = os.date("*t", os.time())
timeTable.hour = 0
timeTable.min = 0
@ -104,6 +106,17 @@ function FamilyNumberRecord.New(root, page)
end)
end)
self._ctr_myday.onChanged:Set(function(context)
local timeTable = os.date("*t", os.time())
timeTable.hour = 0
timeTable.min = 0
timeTable.sec = 0
local index = context.sender.selectedIndex
self._data_myleftTime = os.time(timeTable) - index * 86400
self._data_myrightTime = os.time(timeTable) - index * 86400 + 86399
self:OnClickNumberRank(group_id, self.rankNumber.uid, 0)
end)
ctr_sort.onChanged:Set(function(context)
local index = context.sender.selectedIndex
self._data_sortType = index
@ -335,13 +348,15 @@ function M:InitBoxTime()
end
function M:InitTimeAndSord()
local timeTable = os.date("*t", os.time())
timeTable.hour = 0
timeTable.min = 0
timeTable.sec = 0
self._data_leftTime = os.time(timeTable)
self._data_rightTime = os.time(timeTable) + 86399
self._data_sortType = 0
local timeTable = os.date("*t", os.time())
timeTable.hour = 0
timeTable.min = 0
timeTable.sec = 0
self._data_leftTime = os.time(timeTable)
self._data_rightTime = os.time(timeTable) + 86399
self._data_myleftTime = os.time(timeTable)
self._data_myrightTime = os.time(timeTable) + 86399
self._data_sortType = 0
end
function M:NumverRecordRenderer()
@ -543,7 +558,11 @@ function M:NumverRankRenderer(groupId)
tonumber(info.score))
obj:GetChild('btn_lookRecord').onClick:Set(function()
self.ctr_numberRecord.selectedIndex = 1
self:OnClickNumberRank(groupId, info.uid, info.round)
if self._ctr_day.selectedIndex ~= self._ctr_myday.selectedIndex then
self._ctr_myday.selectedIndex = self._ctr_day.selectedIndex
else
self:OnClickNumberRank(groupId, info.uid, info.round)
end
self._view:GetChild('text_numberRecordName').text = info.nick
self._view:GetChild('text_numberRecordID').text = string.format("ID:%s", info.uid)
ImageLoad.Load(info.portrait, self._view:GetChild('btn_numberRecordHead')._iconObject)
@ -555,8 +574,10 @@ end
function M:OnClickSortType()
self.rank = {}
local fgCtr = ControllerManager.GetController(NewGroupController)
self:RecursionGetNumberRank(fgCtr, 0, 0, 0, 0)
if self._father._group.lev < 3 then
local fgCtr = ControllerManager.GetController(NewGroupController)
self:RecursionGetNumberRank(fgCtr, 0, 0, 0, 0)
end
end
function M:RecursionGetNumberRank(fgCtr, index, round, win, cost)
@ -597,8 +618,8 @@ function M:OnClickNumberRank(groupId, uid, round)
end
function M:RecursionGetNumberRecord(fgCtr, groupId, uid, index)
fgCtr:FG_GetGroupRecordSpe(groupId, GetPlatform(), uid, 0, index * 100, 100, self._data_leftTime,
self._data_rightTime, 0,
fgCtr:FG_GetGroupRecordSpe(groupId, GetPlatform(), uid, 0, index * 100, 100, self._data_myleftTime,
self._data_myrightTime, 0,
function(res)
pt(res)
if res.ReturnCode ~= 0 then

View File

@ -3,7 +3,7 @@ local FamilySelectNumber = {}
local function search(self)
local t = self.input_search.text
local re = {}
for _, player in pairs(self.group.members) do
for _, player in pairs(self.group.members) do
if string.match(player.nick, t) then
re[#re + 1] = player
end
@ -12,18 +12,24 @@ local function search(self)
self.players = re
end
function FamilySelectNumber.New()
setmetatable(FamilySelectNumber, { __index = BaseWindow})
local inst = setmetatable({}, { __index = FamilySelectNumber})
function FamilySelectNumber.New(data)
setmetatable(FamilySelectNumber, { __index = BaseWindow })
local inst = setmetatable({}, { __index = FamilySelectNumber })
--inst._full = true
inst._scale = true
inst._close_destroy = true
inst._full_offset = false
inst._anim_pop = 0
inst._animation = false
inst._data = data
inst._data_deskMap = {}
for k, v in pairs(data.deskList) do
inst._data_deskMap[v.uid] = 1
end
BaseWindow.init(inst, "ui://Family/com_SelectNumber")
inst:Init()
return inst
@ -43,7 +49,6 @@ function FamilySelectNumber:Show(groupId, callback)
end
function FamilySelectNumber:Init()
self.input_search = self._view:GetChild("input_search")
self.list_number = self._view:GetChild("list_number")
self.btn_search = self._view:GetChild("btn_search")
@ -58,22 +63,28 @@ function FamilySelectNumber:Init()
self:Close()
end)
self.list_number:SetVirtual()
self.list_number.itemRenderer = function(index, obj)
local i = index + 1
local player = self.players[i] --self.group.members[i]
obj:GetController('lev').selectedIndex = player.lev - 1
obj:GetController('ban').selectedIndex = player.ban
obj:GetController('banDesk').selectedIndex = self._data_deskMap[player.uid] or 0
obj:GetChild('name').emojies = EmojiDitc.EmojiesDitc
obj:GetChild('name').text = player.nick
obj:GetChild('id').text = string.format("ID:%s", player.uid)
obj.onClick:Set(function()
if self.callback then
self.callback(player)
end
self.callback = nil
self:Close()
end)
ImageLoad.Load(player.portrait, obj:GetChild('btn_head')._iconObject)
if not self._data_deskMap[player.uid] then
obj:GetChild('n17').onClick:Set(function()
if self.callback then
self.callback(player)
end
self.callback = nil
self:Close()
end)
end
end
end
return FamilySelectNumber
return FamilySelectNumber

View File

@ -234,7 +234,7 @@ function M:init(url)
--ViewUtil.ErrorTip(-1,"已在家族中")
return
end
self:RefNotice(group.id)
self.curGroupIndex = j
self:ConnetFamily(j, DataManager.groups.groupList)
end)
@ -296,7 +296,6 @@ function M:Reflash()
end
local btn = self.list_family:GetChildAt(chooseIndex - 1)
btn.onClick:Call()
self:RefNotice(DataManager.groups.groupList[chooseIndex].id)
else
self:JoinFamily(true)
self.btn_chatRoom.visible = false
@ -624,7 +623,7 @@ function M:UpdateFamilyRoom(fgCtr, id)
local list_room = self._view:GetChild('list_room')
list_room:SetVirtual()
local pane = list_room.scrollPane
pane.decelerationRate = 0.95 -- 惯性大
pane.decelerationRate = 0.96 -- 惯性大
pane.bouncebackEffect = true
local playList = self._group.playList
local roomList = self._group.rooms
@ -988,7 +987,10 @@ function M:OnUpdate()
if self._data_falshRoomTime > 0 then
self._data_falshRoomTime = self._data_falshRoomTime - deltaTime
else
self._flag_falshRoomTime = false
self._flag_falshRoomTime = true
self._data_falshRoomTime = 120
local fgCtr = ControllerManager.GetController(NewGroupController)
self:UpdateFamilyRoom(fgCtr, self._group.id)
self._view:GetChild('list_room').scrollPane:SetPosY(0, true)
end
end

View File

@ -1,4 +1,6 @@
local LobbyGiftDiamond = {}
local LobbyGiftDiamond = {
sendPage = 1
}
local M = LobbyGiftDiamond
@ -6,7 +8,9 @@ function M.new(data, callback)
setmetatable(M, { __index = BaseWindow })
local self = setmetatable({}, { __index = M })
self.class = "LobbyGiftDiamond"
self._full = true
self._close_destroy = true
self._close_zone = false
self._data = data
self._callback = callback
self:init("ui://Lobby/GiftDiamond")
@ -16,8 +20,15 @@ end
function M:init(url)
BaseWindow.init(self, url)
local input_id = self._view:GetChild('input_id')
input_id.onFocusOut:Set(function()
--发送查找用户的协议
printlog("lingmeng send find", input_id.text)
end)
self._view:GetChild('btn_center').onClick:Set(function()
local text_id = self._view:GetChild('input_id').text
local text_id = input_id.text
local text_num = self._view:GetChild('input_num').text
local lobbyCtr = ControllerManager.GetController(LoddyController)
@ -32,6 +43,23 @@ function M:init(url)
end
end)
end)
local ctr_page = self._view:GetController('page')
ctr_page.onChanged:Set(function()
if ctr_page.selectedIndex == 0 then
input_id.text = ""
self._view:GetChild('input_num').text = ""
self._view:GetChild('text_name').text = ""
self._view:GetChild('btn_head').url = ""
elseif ctr_page.selectedIndex == 1 then
end
end)
self._list_list = self._view:GetChild('list')
self._list_list.itemRenderer = function(index, obj)
end
end
return M

View File

@ -76,7 +76,7 @@ Table_Error_code_Map = {
[1023] = { id = 1023, note = "目標玩家是合伙人" },
[1024] = { id = 1024, note = "目標玩家不是合伙人" },
[1025] = { id = 1025, note = "已被管理员禁止娱乐" },
[1026] = { id = 1026, note = "分数已被限制,请联系管理员" },
[1026] = { id = 1026, note = "创建亲友圈房间失败,已达到积分限制,请联系亲友圈管理员" },
[1027] = { id = 1027, note = "只能创建一个亲友圈" },
[1028] = { id = 1028, note = "亲友圈玩法必须开启积分" },
[1029] = { id = 1029, note = "还存在该玩法的房间,操作失败" },
@ -87,7 +87,7 @@ Table_Error_code_Map = {
[1034] = { id = 1034, note = "玩家在游戏中,不能下分" },
[1035] = { id = 1035, note = "奖励池积分不足" },
[1036] = { id = 1036, note = " 奖励池没提取" },
[1037] = { id = 1037, note = "禁止同桌" },
[1037] = { id = 1037, note = "加入房间失败、距离太近、无法加入房间" },
[1038] = { id = 1038, note = "玩法禁止娱乐" },
[1039] = { id = 1039, note = "亲友圈已关闭申请" },
[1040] = { id = 1040, note = "亲友圈已停止服务" },

View File

@ -243,7 +243,9 @@ function M:OnPlaySuccCheck(evt_data)
local player = self._room:GetPlayerBySeat(seat)
local out_card_list = self:ChangeCodeByFrom(cards, true)
player.hand_count = remain
self._cardCheck:InitLastCard(out_card_list)
if remain ~= 0 then
self._cardCheck:InitLastCard(out_card_list)
end
local card_type, number, length, plan_three_count = self:GetCardListInfo(out_card_list)
player.out_card_list = self:GetSortOutCardList(out_card_list, card_type, number, plan_three_count)
DispatchEvent(self._dispatcher, RunFast_GameEvent.OnPlaySucc, player, remain, card_type, number, otherList,

View File

@ -1154,6 +1154,7 @@ function M:EventInit()
_gamectr:AddEventListener(RunFast_GameEvent.OnBompScoreNew, function(...)
local arg = { ... }
self._popEvent = false
local scoreList = arg[1]
for i = 1, #scoreList do
local score = scoreList[i].pomSore
@ -1162,6 +1163,10 @@ function M:EventInit()
head_info:PlayScore(score, true)
head_info:UpdateScore(player.total_score)
end
coroutine.start(function()
coroutine.wait(1)
self._popEvent = true
end)
end)
end

View File

@ -349,13 +349,10 @@ function M:PlayEffect(type, callback)
local y = 0
local x = 0
local width = 0
pt("lingmeng PlayEffect1", fristXy, lastXy)
pt("lingmeng PlayEffect2", self._view_Out.xy)
if type == 10 then
effect = "te_liandui"
y = self._view_Out.y + fristXy.y
x = self._view_Out.x + (lastXy.x + fristXy.x) / 2
pt("lingmeng PlayEffect2", x, y)
elseif type == 4 then
effect = "te_sandaidui"
y = self._view_Out.y + fristXy.y

View File

@ -41,9 +41,6 @@
<item/>
<item/>
<item/>
<item/>
<item/>
<item/>
</list>
<component id="n16_ndb5" name="btn_search" src="86ct7cwi" fileName="NumberList/Component/btn_search.xml" xy="2031,195" size="236,72" group="n17_ndb5">
<relation target="" sidePair="width-width%,right-right"/>

View File

@ -6,6 +6,7 @@
<controller name="limitDay" pages="0,,1," selected="0"/>
<controller name="noPeople" pages="0,,1," selected="0"/>
<controller name="lev" pages="0,,1," selected="0"/>
<controller name="myday" pages="0,,1," selected="0"/>
<displayList>
<image id="n171_g71b" name="n171" src="jrro7cyp" fileName="Main/Image/loginBg.png" xy="0,0" size="2531,1170" group="n173_g71b">
<relation target="" sidePair="width-width,height-height"/>
@ -23,7 +24,7 @@
<relation target="" sidePair="center-center"/>
</richtext>
<component id="n5_lgoh" name="box_mumberTime" src="ghku7d4d" fileName="Record/Component/combBox_time.xml" xy="124,174" size="439,73" group="n11_lgoh">
<ComboBox visibleItemCount="10" selectionController="day"/>
<ComboBox visibleItemCount="10" selectionController="myday"/>
</component>
<text id="n6_lgoh" name="text_numberRecordTime" xy="113,255" size="440,56" group="n11_lgoh" font="ui://27vd145bh35o7im7" fontSize="42" color="#444444" align="center" vAlign="middle" autoSize="none" text="2025-03-21 14:30:23"/>
<component id="n7_lgoh" name="btn_numberRecordHead" src="86ct7cwk" fileName="Main/Component/btn_head.xml" xy="1162,221" size="144,144" group="n11_lgoh"/>

View File

@ -0,0 +1,60 @@
<?xml version="1.0" encoding="utf-8"?>
<component size="768,186" extention="Button">
<controller name="button" pages="2,up,3,down" selected="0"/>
<controller name="lev" pages="0,群主,1,代理,2,普通" selected="0"/>
<controller name="ban" pages="0,,1," selected="0"/>
<controller name="banDesk" pages="0,,1," selected="1"/>
<displayList>
<image id="n1_86ct" name="n1" src="c8pn7cyy" fileName="NumberList/Image/Rectangle 2611.png" xy="-9,-3" size="779,198">
<gearDisplay controller="ban" pages="0"/>
<relation target="" sidePair="width-width,height-height"/>
</image>
<image id="n0_86ct" name="n0" src="qhq47d5o" fileName="NumberList/Image/Rectangle 259.png" xy="-9,-3">
<gearDisplay controller="ban" pages="1"/>
<relation target="" sidePair="width-width,height-height"/>
</image>
<image id="n14_qhq4" name="n14" src="qhq47d5p" fileName="NumberList/Image/Rectangle 259-1.png" xy="-6,0">
<gearDisplay controller="lev" pages="0"/>
<relation target="" sidePair="width-width,height-height"/>
</image>
<image id="n6_86ct" name="n6" src="c8pn7cyx" fileName="NumberList/Image/Rectangle 261.png" xy="174,90" size="456,51">
<gearColor controller="button" pages="2" values="#ffffff" default="#ffffff"/>
<relation target="" sidePair="width-width,height-height"/>
</image>
<component id="n3_86ct" name="btn_head" src="86ct7cwk" fileName="Main/Component/btn_head.xml" xy="15,15" size="132,132" group="n15_q3uh"/>
<richtext id="n4_86ct" name="name" xy="178,33" size="299,49" group="n15_q3uh" font="ui://27vd145bh35o7ilb" fontSize="36" autoSize="none" text="用户名称1">
<gearColor controller="ban" pages="0,1" values="#000000,#000000|#000000,#000000"/>
<relation target="" sidePair="width-width,left-left"/>
</richtext>
<text id="n5_86ct" name="id" xy="13,147" size="146,38" group="n15_q3uh" alpha="0.3" font="ui://27vd145bh35o7ik0" fontSize="27" color="#8e0305" align="center" vAlign="middle" bold="true" text="ID:12312311">
<gearLook controller="ban" pages="1" values="1,0,0,0" default="0.3,0,0,0"/>
<gearColor controller="ban" pages="0,1" values="#8e0305,#8e0305|#8e0305,#000000"/>
<relation target="" sidePair="left-left"/>
</text>
<richtext id="n11_86ct" name="remark" xy="178,90" size="449,51" group="n15_q3uh" touchable="false" font="ui://27vd145bg2mo7ij0" fontSize="36" vAlign="middle" autoSize="none" text="备注:无">
<gearLook controller="ban" pages="0,1" values="1,0,0,0|1,0,0,0"/>
<gearColor controller="ban" pages="0,1" values="#000000,#bc6b29|#000000,#bc6b29"/>
<relation target="" sidePair="width-width,left-left"/>
</richtext>
<group id="n15_q3uh" name="n15" xy="13,15" size="614,170" advanced="true">
<relation target="" sidePair="left-left"/>
</group>
<image id="n8_86ct" name="n8" src="86ct7cwl" fileName="NumberList/Image/qunzhu.png" xy="594,12" group="n16_q3uh">
<gearDisplay controller="lev" pages="0"/>
</image>
<image id="n12_qz7i" name="n12" src="qz7i7cwx" fileName="NumberList/Image/zhuli.png" xy="594,15" group="n16_q3uh">
<gearDisplay controller="lev" pages="1"/>
</image>
<image id="n13_qhq4" name="n13" src="qhq47d5n" fileName="NumberList/Image/禁玩.png" xy="492,15" group="n16_q3uh">
<gearDisplay controller="ban" pages="1"/>
</image>
<component id="n17_ofwa" name="n17" src="ofwa7d6k" fileName="Main/Component/btn_normol.xml" xy="667,57" size="85,72" group="n16_q3uh">
<gearIcon controller="banDesk" pages="1" values="ui://htcn7v3r100mbt7d7n" default="ui://htcn7v3r100mbt7d7m"/>
<Button icon="ui://htcn7v3r100mbt7d7n"/>
</component>
<group id="n16_q3uh" name="n16" xy="492,12" size="260,117" advanced="true">
<relation target="" sidePair="right-right"/>
</group>
</displayList>
<Button mode="Radio"/>
</component>

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

View File

@ -1,39 +1,51 @@
<?xml version="1.0" encoding="utf-8"?>
<component size="2532,1170">
<displayList>
<image id="n14_q3uh" name="n14" src="jrro7cyp" fileName="Main/Image/loginBg.png" xy="1,0" size="2531,1170" group="n16_q3uh">
<image id="n17_100mb" name="n17" src="jrro7cyp" fileName="Main/Image/loginBg.png" xy="1,0" size="2531,1170" group="n24_100mb">
<relation target="" sidePair="width-width,height-height"/>
</image>
<image id="n15_q3uh" name="n15" src="jrro7cyd" fileName="Main/Image/bt_top.png" xy="0,0" size="2532,204" group="n16_q3uh">
<relation target="" sidePair="right-left,top-top"/>
<image id="n18_100mb" name="n18" src="jrro7cyd" fileName="Main/Image/bt_top.png" xy="0,0" group="n24_100mb">
<relation target="" sidePair="right-left,top-top,rightext-right"/>
</image>
<group id="n16_q3uh" name="bg" xy="0,0" size="2532,1170"/>
<image id="n10_f1fu" name="n10" src="yk1o7d3p" fileName="Main/Image/hall_club_common_tittle_icon1.png" xy="967,24" group="n13_f1fu">
<relation target="n11_f1fu" sidePair="left-left"/>
<component id="n19_100mb" name="btn_close" src="in3i7cu9" fileName="Main/Component/btn_close.xml" xy="54,6" group="n24_100mb"/>
<image id="n20_100mb" name="n20" src="yk1o7d3p" fileName="Main/Image/hall_club_common_tittle_icon1.png" xy="967,24" group="n23_100mb">
<relation target="n21_100mb" sidePair="left-left"/>
</image>
<text id="n11_f1fu" name="n11" xy="1084,27" size="364,94" group="n13_f1fu" font="ui://27vd145bg2mo7ij0" fontSize="72" color="#ffffff" align="center" vAlign="middle" shadowColor="#4c5058" shadowOffset="3,3" text="亲友圈成员">
<text id="n21_100mb" name="n21" xy="1084,27" size="364,94" group="n23_100mb" font="ui://27vd145bg2mo7ij0" fontSize="72" color="#ffffff" align="center" vAlign="middle" shadowColor="#4c5058" shadowOffset="3,3" text="亲友圈成员">
<relation target="" sidePair="center-center"/>
</text>
<image id="n12_f1fu" name="n12" src="yk1o7d3p" fileName="Main/Image/hall_club_common_tittle_icon1.png" xy="1502,24" group="n13_f1fu" flip="hz">
<relation target="n11_f1fu" sidePair="right-right"/>
<image id="n22_100mb" name="n22" src="yk1o7d3p" fileName="Main/Image/hall_club_common_tittle_icon1.png" xy="1502,24" group="n23_100mb" flip="hz">
<relation target="n21_100mb" sidePair="right-right"/>
</image>
<group id="n13_f1fu" name="n13" xy="967,24" size="598,99"/>
<image id="n1_txni" name="n1" src="86ct7cvc" fileName="GamePlay/Image/Rectangle 91.png" xy="387,166" size="1758,984"/>
<image id="n2_txni" name="n2" src="86ct7cvb" fileName="GamePlay/Image/Rectangle 112.png" xy="402,184" size="1728,948"/>
<image id="n3_txni" name="n3" src="c8pn7cyw" fileName="NumberList/Image/Rectangle 113.png" xy="408,190"/>
<image id="n4_txni" name="n4" src="c8pn7cyx" fileName="NumberList/Image/Rectangle 261.png" xy="444,196"/>
<text id="n5_txni" name="input_search" xy="474,196" size="1377,72" font="Alibaba PuHuiTi 3.0" fontSize="42" vAlign="middle" autoSize="none" autoClearText="true" text="" input="true" prompt="请输入玩家ID、昵称"/>
<list id="n6_txni" name="list_number" xy="474,297" size="1584,816" layout="flow_hz" overflow="scroll" lineGap="30" colGap="24" lineItemCount="2" defaultItem="ui://htcn7v3r86ct7cwj" renderOrder="descent" autoClearItems="true">
<item/>
<item/>
<item/>
<group id="n23_100mb" name="n23" xy="967,24" size="598,99" group="n24_100mb" advanced="true"/>
<group id="n24_100mb" name="bg" xy="0,0" size="2532,1170"/>
<image id="n25_100mb" name="n25" src="86ct7cvc" fileName="GamePlay/Image/Rectangle 91.png" xy="228,164" size="2078,984" group="n32_100mb">
<relation target="" sidePair="width-width%,height-height"/>
</image>
<image id="n26_100mb" name="n26" src="86ct7cvb" fileName="GamePlay/Image/Rectangle 112.png" xy="242,183" size="2048,948" group="n32_100mb">
<relation target="" sidePair="width-width%,height-height"/>
</image>
<image id="n27_100mb" name="n27" src="c8pn7cyw" fileName="NumberList/Image/Rectangle 113.png" xy="249,189" size="2036,84" group="n32_100mb">
<relation target="" sidePair="width-width%"/>
</image>
<image id="n28_100mb" name="n28" src="c8pn7cyx" fileName="NumberList/Image/Rectangle 261.png" xy="269,195" size="1740,72" group="n32_100mb">
<relation target="" sidePair="width-width%"/>
</image>
<text id="n29_100mb" name="input_search" xy="280,195" size="1729,72" group="n32_100mb" font="Alibaba PuHuiTi 3.0" fontSize="42" vAlign="middle" autoSize="none" autoClearText="true" text="" input="true" prompt="请输入玩家ID、昵称">
<relation target="" sidePair="width-width%"/>
</text>
<list id="n30_100mb" name="list_number" xy="284,295" size="1966,816" group="n32_100mb" layout="flow_hz" overflow="scroll" lineGap="30" colGap="50" lineItemCount="2" defaultItem="ui://htcn7v3r100mbt7d7l" autoItemSize="true" align="center" autoClearItems="true">
<relation target="" sidePair="width-width%,height-height"/>
<item/>
<item/>
<item/>
<item/>
<item/>
</list>
<component id="n7_txni" name="btn_search" src="86ct7cwi" fileName="NumberList/Component/btn_search.xml" xy="1863,196" size="204,72"/>
<component id="n9_txni" name="btn_close" src="in3i7cu9" fileName="Main/Component/btn_close.xml" xy="54,12"/>
<component id="n31_100mb" name="btn_search" src="86ct7cwi" fileName="NumberList/Component/btn_search.xml" xy="2031,195" size="236,72" group="n32_100mb">
<relation target="" sidePair="width-width%,right-right"/>
</component>
<group id="n32_100mb" name="bg_numberList" xy="228,164" size="2078,984" group="n33_100mb"/>
<group id="n33_100mb" name="numberList" xy="228,164" size="2078,984" advanced="true"/>
</displayList>
</component>

View File

@ -436,6 +436,9 @@
<image id="bgcft7d7i" name="title_familyNotice.png" path="/FamilyNotice/Image/"/>
<image id="f11ot7d7j" name="chakan.png" path="/MyFamily/Image/"/>
<component id="f11ot7d7k" name="btn_familyManage2.xml" path="/MyFamily/Component/"/>
<component id="100mbt7d7l" name="c_numberChild_select.xml" path="/SelectNumber/Component/" exported="true"/>
<image id="100mbt7d7m" name="xuanzhe.png" path="/SelectNumber/Image/"/>
<image id="100mbt7d7n" name="yixuanzhe.png" path="/SelectNumber/Image/"/>
</resources>
<publish name="Family" path="..\wb_unity_pro\Assets\ART\base\Family\ui" packageCount="2"/>
</packageDescription>

View File

@ -1,13 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<component size="156,156" extention="Button" mask="n4_86ct">
<controller name="button" pages="0,up,1,down,2,over,3,selectedOver" selected="0"/>
<displayList>
<loader id="n3_86ct" name="icon" xy="0,0" size="156,156">
<relation target="" sidePair="width-width,height-height"/>
</loader>
<graph id="n4_86ct" name="n4" xy="0,0" size="156,156" type="rect" lineSize="0" corner="12">
<relation target="" sidePair="width-width,height-height"/>
</graph>
</displayList>
<Button/>
</component>

View File

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<component size="250,100" extention="Button" initName="btn_lastPage">
<controller name="button" pages="0,up,1,down,2,over,3,selectedOver" selected="0"/>
<controller name="donTouch" pages="0,,1," selected="0"/>
<displayList>
<image id="n3_11k4t" name="n3" src="100mb7jgp" fileName="Record/Image/table_btn_green_background1.png" xy="0,0" size="250,100">
<gearDisplay controller="donTouch" pages="1"/>
<relation target="" sidePair="width-width,height-height"/>
</image>
<image id="n5_11k4t" name="n5" src="100mb7jgs" fileName="Record/Image/table_btn_green_background2.png" xy="0,0" size="250,100">
<gearDisplay controller="donTouch" pages="0"/>
<relation target="" sidePair="width-width,height-height"/>
</image>
<text id="n6_11k4t" name="n6" xy="59,26" size="112,49" scale="1.2,1" font="Arial" fontSize="36" text="上一页"/>
</displayList>
<Button/>
</component>

View File

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<component size="250,100" extention="Button" initName="btn_nextPage">
<controller name="button" pages="0,up,1,down,2,over,3,selectedOver" selected="0"/>
<controller name="donTouch" pages="0,,1," selected="0"/>
<displayList>
<image id="n3_11k4t" name="n3" src="100mb7jgp" fileName="Record/Image/table_btn_green_background1.png" xy="0,0" size="250,100">
<gearDisplay controller="donTouch" pages="1"/>
<relation target="" sidePair="width-width,height-height"/>
</image>
<image id="n5_11k4t" name="n5" src="100mb7jgq" fileName="Record/Image/table_btn_green_background3.png" xy="0,0" size="250,100">
<gearDisplay controller="donTouch" pages="0"/>
<relation target="" sidePair="width-width,height-height"/>
</image>
<text id="n6_11k4t" name="n6" xy="59,26" size="112,49" scale="1.2,1" font="Arial" fontSize="36" text="下一页"/>
</displayList>
<Button/>
</component>

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB

View File

@ -1,19 +1,139 @@
<?xml version="1.0" encoding="utf-8"?>
<component size="1320,705">
<component size="2532,1170">
<controller name="page" pages="0,,1," selected="1"/>
<controller name="detail" pages="0,,1," selected="0"/>
<displayList>
<image id="n1_if10" name="n1" src="if107d9m" fileName="images/pop_oneInput/bg.png" xy="12,45" size="1320,660" group="n3_if10"/>
<image id="n2_if10" name="n2" src="if107d9n" fileName="images/pop_oneInput/title_top.png" xy="0,0" size="1345,128" group="n3_if10"/>
<group id="n3_if10" name="bg" xy="0,0" size="1345,705"/>
<component id="n4_if10" name="btn_close" src="vg2c4" fileName="buttons/Btn_close.xml" pkg="27vd145b" xy="1240,-20" size="122,130" aspect="true"/>
<text id="n5_if10" name="n5" xy="66,7" size="1188,101" font="Alibaba PuHuiTi 3.0" fontSize="68" color="#ffffff" align="center" vAlign="middle" autoSize="none" bold="true" shadowColor="#000000" shadowOffset="1,1" text="转让房卡"/>
<image id="n6_if10" name="n6" src="if107d9o" fileName="images/pop_oneInput/input.png" xy="418,223" size="819,75"/>
<text id="n7_if10" name="input_id" xy="418,223" size="819,75" font="Alibaba PuHuiTi 3.0" fontSize="56" vAlign="middle" autoSize="none" autoClearText="true" text="shuru" input="true"/>
<text id="n10_if10" name="n10" xy="121,231" size="231,58" scale="1.2,1" font="Arial" fontSize="43" text="赠送目标ID:"/>
<image id="n8_if10" name="n8" src="if107d9o" fileName="images/pop_oneInput/input.png" xy="418,378" size="819,75"/>
<text id="n9_if10" name="input_num" xy="418,378" size="819,75" font="Alibaba PuHuiTi 3.0" fontSize="56" vAlign="middle" autoSize="none" autoClearText="true" text="shuru" input="true"/>
<text id="n11_if10" name="n11" xy="78,386" size="274,58" scale="1.2,1" font="Arial" fontSize="43" text="赠送房卡数量:"/>
<component id="n12_if10" name="btn_center" src="n2h87imc" fileName="component/pop_oneChoose/btn_oneChoose.xml" pkg="27vd145b" xy="455,519" size="410,125">
<Button icon="ui://2d9xdj6zif107d9p"/>
<image id="n1_if10" name="n1" src="100mb7jg6" fileName="component/GiftDiamond/Image/bg.png" xy="630,151" size="1272,867" group="n3_if10">
<relation target="" sidePair="width-width%,height-height%"/>
</image>
<image id="n13_100mb" name="n13" src="100mb7jg7" fileName="component/GiftDiamond/Image/title.png" xy="1087,173" group="n3_if10">
<relation target="" sidePair="width-width%,height-height%"/>
</image>
<group id="n3_if10" name="bg" xy="630,151" size="1272,867" group="n14_100mb"/>
<component id="n4_if10" name="btn_close" src="vg2c4" fileName="buttons/Btn_close.xml" pkg="27vd145b" xy="1796,118" size="152,162" group="n14_100mb" aspect="true">
<relation target="n1_if10" sidePair="right-right,top-top"/>
</component>
<image id="n6_if10" name="n6" src="100mb7jg9" fileName="component/GiftDiamond/Image/Rectangle 262.png" xy="908,499" size="938,96" group="n14_100mb">
<relation target="n10_if10" sidePair="middle-middle"/>
<relation target="" sidePair="width-width%,height-height%"/>
</image>
<text id="n7_if10" name="input_id" xy="908,499" size="931,95" group="n14_100mb" font="Alibaba PuHuiTi 3.0" fontSize="60" vAlign="middle" autoSize="none" singleLine="true" autoClearText="true" text="1s" input="true" keyboardType="4">
<relation target="n6_if10" sidePair="width-width,height-height,left-left,top-top"/>
</text>
<text id="n10_if10" name="n10" xy="679,515" size="209,64" group="n14_100mb" font="Arial" fontSize="48" color="#833035" text="接收人ID:">
<relation target="" sidePair="left-left,top-top%"/>
</text>
<image id="n8_if10" name="n8" src="100mb7jg9" fileName="component/GiftDiamond/Image/Rectangle 262.png" xy="908,623" size="938,96" group="n14_100mb">
<relation target="n11_if10" sidePair="middle-middle"/>
<relation target="" sidePair="width-width%,height-height%"/>
</image>
<text id="n9_if10" name="input_num" xy="908,623" size="931,95" group="n14_100mb" font="Alibaba PuHuiTi 3.0" fontSize="56" vAlign="middle" autoSize="none" singleLine="true" autoClearText="true" text="shuru" input="true" keyboardType="4">
<relation target="n8_if10" sidePair="width-width,height-height,left-left,top-top"/>
</text>
<text id="n11_if10" name="n11" xy="679,639" size="209,64" group="n14_100mb" font="Arial" fontSize="48" color="#833035" text="赠送数量:">
<relation target="" sidePair="left-left,top-top%"/>
</text>
<component id="n12_if10" name="btn_center" src="n2h87imc" fileName="component/pop_oneChoose/btn_oneChoose.xml" pkg="27vd145b" xy="1036,805" size="460,173" group="n14_100mb">
<relation target="" sidePair="left-center%,right-center%,top-top%"/>
<Button icon="ui://2d9xdj6z100mb7jga"/>
</component>
<component id="n15_100mb" name="btn_detail" src="n2h87imc" fileName="component/pop_oneChoose/btn_oneChoose.xml" pkg="27vd145b" xy="712,839" size="100,106" group="n14_100mb">
<relation target="" sidePair="left-left,top-top%"/>
<Button icon="ui://2d9xdj6z100mb7jgb" controller="page" page="1"/>
</component>
<loader id="n16_100mb" name="btn_head" xy="679,323" size="167,167" group="n14_100mb">
<relation target="" sidePair="left-left,top-top%"/>
</loader>
<image id="n17_100mb" name="n17" src="100mb7jg8" fileName="component/GiftDiamond/Image/Vector.png" xy="900,383" group="n14_100mb">
<relation target="" sidePair="left-left,top-top%"/>
</image>
<text id="n18_100mb" name="text_name" xy="977,376" size="100,64" group="n14_100mb" font="Arial" fontSize="48" color="#833035" text="名字">
<relation target="n17_100mb" sidePair="left-right,top-top"/>
</text>
<group id="n14_100mb" name="page0" xy="630,118" size="1318,900" advanced="true">
<gearDisplay controller="page" pages="0"/>
</group>
<image id="n19_100mb" name="n19" src="100mb7jgc" fileName="component/GiftDiamond/Image/loginBg.png" xy="1,0" size="2531,1170" group="n26_100mb">
<relation target="" sidePair="width-width,height-height"/>
</image>
<image id="n20_100mb" name="n20" src="100mb7jgd" fileName="component/GiftDiamond/Image/bt_top.png" xy="0,0" group="n26_100mb">
<relation target="" sidePair="right-left,top-top,rightext-right"/>
</image>
<component id="n21_100mb" name="btn_quit" src="100mb7jge" fileName="component/GiftDiamond/Component/btn_close.xml" xy="54,6" group="n26_100mb">
<Button controller="page" page="0"/>
</component>
<image id="n27_100mb" name="n27" src="100mb7jgh" fileName="component/GiftDiamond/Image/bg_main1.png" xy="226,140" size="2080,1005" group="n26_100mb">
<relation target="" sidePair="width-width%,height-height%"/>
</image>
<image id="n28_100mb" name="n28" src="100mb7jgi" fileName="component/GiftDiamond/Image/bg_main2.png" xy="241,153" size="2050,978" group="n26_100mb">
<relation target="" sidePair="width-width%,height-height%"/>
</image>
<image id="n22_100mb" name="n22" src="100mb7jgg" fileName="component/GiftDiamond/Image/hall_club_common_tittle_icon1.png" xy="1003,24" group="n25_100mb">
<relation target="n23_100mb" sidePair="left-left"/>
</image>
<text id="n23_100mb" name="n23" xy="1120,27" size="292,94" group="n25_100mb" font="ui://27vd145bg2mo7ij0" fontSize="72" color="#ffffff" align="center" vAlign="middle" shadowColor="#4c5058" shadowOffset="3,3" text="赠送记录">
<relation target="" sidePair="center-center"/>
</text>
<image id="n24_100mb" name="n24" src="100mb7jgg" fileName="component/GiftDiamond/Image/hall_club_common_tittle_icon1.png" xy="1466,24" group="n25_100mb" flip="hz">
<relation target="n23_100mb" sidePair="right-right"/>
</image>
<group id="n25_100mb" name="n25" xy="1003,24" size="526,99" group="n26_100mb" advanced="true"/>
<group id="n26_100mb" name="bg1" xy="0,0" size="2532,1170" group="n30_100mb"/>
<component id="n31_100mb" name="n31" src="100mb7jgl" fileName="component/GiftDiamond/Component/btn_tag.xml" xy="263,200" group="n30_100mb">
<relation target="" sidePair="left-left%,top-top%"/>
<Button checked="true" controller="detail" page="0"/>
</component>
<component id="n32_100mb" name="n32" src="100mb7jgl" fileName="component/GiftDiamond/Component/btn_tag.xml" xy="592,200" group="n30_100mb">
<relation target="n31_100mb" sidePair="left-right,top-top"/>
<Button title="转入记录" controller="detail" page="1"/>
</component>
<image id="n41_100mb" name="n41" src="100mb7jgm" fileName="component/GiftDiamond/Image/bg_main4.png" xy="264,296" group="n30_100mb">
<relation target="" sidePair="width-width%,height-height%"/>
</image>
<image id="n33_100mb" name="n33" src="100mb7jgn" fileName="component/GiftDiamond/Image/Subtract.png" xy="264,294" group="n34_100mb">
<relation target="" sidePair="width-width%,height-height%"/>
<relation target="n31_100mb" sidePair="left-left,top-bottom"/>
</image>
<text id="n35_100mb" name="n35" xy="380,306" size="172,56" group="n34_100mb" font="FZCuYuan-M03" fontSize="42" color="#ffffff" text="转出昵称">
<relation target="n33_100mb" sidePair="middle-middle,left-left%"/>
</text>
<text id="n36_100mb" name="n36" xy="714,306" size="126,56" group="n34_100mb" font="FZCuYuan-M03" fontSize="42" color="#ffffff" text="转出ID">
<relation target="n33_100mb" sidePair="middle-middle,left-left%"/>
</text>
<text id="n37_100mb" name="n37" xy="1088,306" size="88,56" group="n34_100mb" font="FZCuYuan-M03" fontSize="42" color="#ffffff" text="时间">
<relation target="n33_100mb" sidePair="middle-middle,left-left%"/>
</text>
<text id="n38_100mb" name="n38" xy="1410,306" size="172,56" group="n34_100mb" font="FZCuYuan-M03" fontSize="42" color="#ffffff" text="收入昵称">
<relation target="n33_100mb" sidePair="middle-middle,left-left%"/>
</text>
<text id="n39_100mb" name="n39" xy="1751,306" size="126,56" group="n34_100mb" font="FZCuYuan-M03" fontSize="42" color="#ffffff" text="收入ID">
<relation target="n33_100mb" sidePair="middle-middle,left-left%"/>
</text>
<text id="n40_100mb" name="n40" xy="2044,306" size="88,56" group="n34_100mb" font="FZCuYuan-M03" fontSize="42" color="#ffffff" text="数量">
<relation target="n33_100mb" sidePair="middle-middle,left-left%"/>
</text>
<group id="n34_100mb" name="titleList" xy="264,294" size="2004,72" group="n30_100mb"/>
<component id="n42_100mb" name="btn_nextPage" src="100mb7jgo" fileName="Record/Component/btn_nextPage.xml" xy="2018,1004" group="n45_100mb">
<relation target="" sidePair="right-right%,bottom-bottom%"/>
</component>
<component id="n43_100mb" name="btn_lastPage" src="100mb7jgr" fileName="Record/Component/btn_lastPage.xml" xy="1758,1004" group="n45_100mb">
<relation target="" sidePair="right-right%,bottom-bottom%"/>
</component>
<text id="n44_100mb" name="text_pageNum" xy="1584,1026" size="130,66" group="n45_100mb" scale="1.3,1" font="Arial" fontSize="50" autoClearText="true" text="1/212">
<relation target="" sidePair="right-right%,bottom-bottom"/>
</text>
<group id="n45_100mb" name="page" xy="1584,1004" size="684,100" group="n30_100mb" advanced="true"/>
<list id="n46_100mb" name="list" xy="264,370" size="2004,612" group="n30_100mb" layout="pagination" lineGap="16" lineItemCount="1" lineItemCount2="4" defaultItem="ui://2d9xdj6z100mb7jgu" autoItemSize="true" align="center" vAlign="middle" autoClearItems="true">
<relation target="" sidePair="width-width%,height-height%"/>
<relation target="n34_100mb" sidePair="top-bottom"/>
<relation target="n33_100mb" sidePair="top-bottom"/>
<item/>
<item/>
<item/>
<item/>
</list>
<group id="n30_100mb" name="page1" xy="0,0" size="2532,1170" advanced="true">
<gearDisplay controller="page" pages="1"/>
</group>
</displayList>
</component>

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<component size="126,114" pivot="0.5,0.5" extention="Button">
<controller name="button" pages="0,up,1,down,2,over,3,selectedOver" selected="0"/>
<displayList>
<image id="n4_in3i" name="n4" src="100mb7jgf" fileName="Main/Image/btn_close.png" xy="-8,-8"/>
</displayList>
<Button downEffect="scale" downEffectValue="1.2"/>
</component>

View File

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<component size="320,94" extention="Button">
<controller name="button" pages="0,up,1,down" selected="0"/>
<displayList>
<image id="n3_100mb" name="n3" src="100mb7jgj" fileName="component/GiftDiamond/Image/btn_familyName_off.png" xy="0,0">
<gearDisplay controller="button" pages="0"/>
</image>
<image id="n4_100mb" name="n4" src="100mb7jgk" fileName="component/GiftDiamond/Image/btn_familyName_on.png" xy="0,0">
<gearDisplay controller="button" pages="1"/>
</image>
<text id="n5_100mb" name="title" xy="74,19" size="172,56" font="Arial" fontSize="42" text="转出记录">
<gearColor controller="button" pages="0" values="#000000,#000000" default="#a12b00,#000000"/>
</text>
</displayList>
<Button mode="Radio"/>
</component>

View File

@ -0,0 +1,26 @@
<?xml version="1.0" encoding="utf-8"?>
<component size="2004,135">
<displayList>
<image id="n0_100mb" name="n0" src="100mb7jgt" fileName="component/GiftDiamond/Image/Group 363.png" xy="-12,-12">
<relation target="" sidePair="width-width,height-height"/>
</image>
<text id="n9_100mb" name="name1" xy="15,34" size="376,66" font="FZCuYuan-M03" fontSize="50" color="#444444" align="center" vAlign="middle" autoSize="none" text="六个字六个字...">
<relation target="" sidePair="left-left%"/>
</text>
<text id="n10_100mb" name="id1" xy="402,34" size="238,66" font="FZCuYuan-M03" fontSize="50" color="#444444" align="center" vAlign="middle" autoSize="none" text="12345678">
<relation target="" sidePair="left-left%"/>
</text>
<text id="n11_100mb" name="time" xy="710,34" size="322,66" font="FZCuYuan-M03" fontSize="50" color="#444444" align="center" vAlign="middle" autoSize="none" text="2025-10-20">
<relation target="" sidePair="left-left%"/>
</text>
<text id="n12_100mb" name="name2" xy="1050,32" size="376,66" font="FZCuYuan-M03" fontSize="50" color="#444444" align="center" vAlign="middle" autoSize="none" text="六个字六个字...">
<relation target="" sidePair="left-left%"/>
</text>
<text id="n13_100mb" name="id2" xy="1443,32" size="238,66" font="FZCuYuan-M03" fontSize="50" color="#444444" align="center" vAlign="middle" autoSize="none" text="12345678">
<relation target="" sidePair="left-left%"/>
</text>
<text id="n14_100mb" name="num" xy="1681,34" size="323,66" font="FZCuYuan-M03" fontSize="50" color="#444444" align="center" vAlign="middle" autoSize="none" text="123456789123">
<relation target="" sidePair="left-left%"/>
</text>
</displayList>
</component>

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 65 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 841 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.5 KiB

After

Width:  |  Height:  |  Size: 420 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 271 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 184 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 100 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 26 KiB

View File

@ -526,7 +526,6 @@
<component id="jrro7cyl" name="btn_lookRecord.xml" path="/component/Record/Component/"/>
<component id="jrro7cym" name="comp_numberRecordDetailResultChild.xml" path="/component/Record/Component/"/>
<component id="jrro7cyn" name="btn_head.xml" path="/component/Record/Component/"/>
<component id="jrro7cyu" name="btn_head.xml" path="/Main/Component/"/>
<image id="p8hp7cyv" name="bg_main1.png" path="/component/CreatePlay/Image/" atlas="alone"/>
<image id="p8hp7cyw" name="CreateRoom10a.png" path="/component/CreatePlay/Image/"/>
<image id="p8hp7cyx" name="CreateRoom10b.png" path="/component/CreatePlay/Image/"/>
@ -693,16 +692,37 @@
<component id="ukp77d9j" name="listChild_recordMain.xml" path="/component/Record/Component/"/>
<component id="ukp77d9l" name="listChild_recordListChild.xml" path="/component/Record/Component/"/>
<component id="if107jg4" name="GiftDiamond.xml" path="/component/GiftDiamond/Component/" exported="true"/>
<image id="if107d9m" name="bg.png" path="/component/GiftDiamond/Image/" scale="9grid" scale9grid="14,135,28,270"/>
<image id="if107d9n" name="title_top.png" path="/component/GiftDiamond/Image/" scale="9grid" scale9grid="160,22,320,44"/>
<image id="if107d9o" name="input.png" path="/component/GiftDiamond/Image/" scale="9grid" scale9grid="11,12,22,24"/>
<image id="if107d9p" name="hall_club_common_btntext_queding.png" path="/component/GiftDiamond/Image/"/>
<component id="if107d9q" name="service.xml" path="/component/service/" exported="true"/>
<component id="if107d9r" name="listChild_one.xml" path="/component/service/Component/"/>
<image id="if107d9s" name="bg.png" path="/images/pop_oneInput/" scale="9grid" scale9grid="14,135,28,270"/>
<image id="if107d9t" name="title_top.png" path="/images/pop_oneInput/" scale="9grid" scale9grid="160,22,320,44"/>
<image id="if107d9u" name="hall_club_common_btntext_queding.png" path="/images/pop_oneInput/"/>
<image id="bgcf7jg5" name="fangkazhengsong.png" path="/component/Main/Image/"/>
<image id="100mb7jg6" name="bg.png" path="/component/GiftDiamond/Image/"/>
<image id="100mb7jg7" name="title.png" path="/component/GiftDiamond/Image/"/>
<image id="100mb7jg8" name="Vector.png" path="/component/GiftDiamond/Image/"/>
<image id="100mb7jg9" name="Rectangle 262.png" path="/component/GiftDiamond/Image/"/>
<image id="100mb7jga" name="Group 561.png" path="/component/GiftDiamond/Image/"/>
<image id="100mb7jgb" name="Frame 44.png" path="/component/GiftDiamond/Image/"/>
<image id="100mb7jgc" name="loginBg.png" path="/component/GiftDiamond/Image/" atlas="alone"/>
<image id="100mb7jgd" name="bt_top.png" path="/component/GiftDiamond/Image/" atlas="alone" disableTrim="true"/>
<component id="100mb7jge" name="btn_close.xml" path="/component/GiftDiamond/Component/"/>
<image id="100mb7jgf" name="btn_close.png" path="/component/GiftDiamond/Image/"/>
<image id="100mb7jgg" name="hall_club_common_tittle_icon1.png" path="/component/GiftDiamond/Image/"/>
<image id="100mb7jgh" name="bg_main1.png" path="/component/GiftDiamond/Image/" atlas="alone"/>
<image id="100mb7jgi" name="bg_main2.png" path="/component/GiftDiamond/Image/" atlas="alone"/>
<image id="100mb7jgj" name="btn_familyName_off.png" path="/component/GiftDiamond/Image/"/>
<image id="100mb7jgk" name="btn_familyName_on.png" path="/component/GiftDiamond/Image/"/>
<component id="100mb7jgl" name="btn_tag.xml" path="/component/GiftDiamond/Component/"/>
<image id="100mb7jgm" name="bg_main4.png" path="/component/GiftDiamond/Image/"/>
<image id="100mb7jgn" name="Subtract.png" path="/component/GiftDiamond/Image/"/>
<component id="100mb7jgo" name="btn_nextPage.xml" path="/Record/Component/"/>
<image id="100mb7jgp" name="table_btn_green_background1.png" path="/Record/Image/"/>
<image id="100mb7jgq" name="table_btn_green_background3.png" path="/Record/Image/"/>
<component id="100mb7jgr" name="btn_lastPage.xml" path="/Record/Component/"/>
<image id="100mb7jgs" name="table_btn_green_background2.png" path="/Record/Image/"/>
<image id="100mb7jgt" name="Group 363.png" path="/component/GiftDiamond/Image/"/>
<component id="100mb7jgu" name="listChild_one.xml" path="/component/GiftDiamond/Component/"/>
</resources>
<publish name="Lobby" path="..\wb_unity_pro\Assets\ART\base\lobby\ui" packageCount="2">
<atlas name="默认" index="0"/>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 MiB

After

Width:  |  Height:  |  Size: 1.4 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.8 MiB

After

Width:  |  Height:  |  Size: 3.8 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 MiB

After

Width:  |  Height:  |  Size: 1.6 MiB

View File

@ -88,5 +88,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleName: base/family/b23cba4d4e164d6d5cb3cff916b9e0a4
assetBundleVariant:

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.5 MiB

After

Width:  |  Height:  |  Size: 2.9 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.7 MiB

After

Width:  |  Height:  |  Size: 3.5 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 MiB

After

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 813 KiB

After

Width:  |  Height:  |  Size: 2.0 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 MiB

After

Width:  |  Height:  |  Size: 956 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 MiB

After

Width:  |  Height:  |  Size: 1.4 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.0 MiB

After

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 941 KiB

After

Width:  |  Height:  |  Size: 3.8 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 MiB

After

Width:  |  Height:  |  Size: 1.4 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 MiB

After

Width:  |  Height:  |  Size: 938 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 MiB

After

Width:  |  Height:  |  Size: 2.3 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 MiB

After

Width:  |  Height:  |  Size: 993 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 MiB

After

Width:  |  Height:  |  Size: 1.4 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 MiB

After

Width:  |  Height:  |  Size: 1.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 MiB

View File

@ -0,0 +1,92 @@
fileFormatVersion: 2
guid: d1d715dbc37ccc24f8cae1f8f27cbbcd
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:

Binary file not shown.

After

Width:  |  Height:  |  Size: 105 KiB

View File

@ -0,0 +1,92 @@
fileFormatVersion: 2
guid: 0c044f4a7b1b16b4bb791f50d74e266e
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:

Binary file not shown.

After

Width:  |  Height:  |  Size: 59 KiB

View File

@ -0,0 +1,92 @@
fileFormatVersion: 2
guid: 5ea764b7d9ea33042ae459fc6a7969d8
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:

Binary file not shown.

After

Width:  |  Height:  |  Size: 212 KiB

View File

@ -0,0 +1,92 @@
fileFormatVersion: 2
guid: 2cbf716e50941c948a5d1f7e60caf292
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:

View File

@ -1,41 +1,41 @@
[
{
"ver": "1.0.43",
"ver": "1.0.44",
"name": "跑得快",
"check": true,
"version": "1.0.43",
"version": "1.0.44",
"game_id": "66",
"bundle": "extend/poker/runfast"
},
{
"ver": "1.0.61",
"ver": "1.0.62",
"name": "南城麻将",
"check": true,
"version": "1.0.61",
"version": "1.0.62",
"game_id": "86",
"bundle": "extend/majiang/nancheng"
},
{
"ver": "1.0.64",
"ver": "1.0.65",
"name": "黎川麻将",
"check": true,
"version": "1.0.64",
"version": "1.0.65",
"game_id": "87",
"bundle": "extend/majiang/lichuan"
},
{
"ver": "1.0.48",
"ver": "1.0.49",
"name": "金溪麻将",
"check": true,
"version": "1.0.48",
"version": "1.0.49",
"game_id": "88",
"bundle": "extend/majiang/jinxi"
},
{
"ver": "1.0.47",
"ver": "1.0.48",
"name": "抚州麻将",
"check": true,
"version": "1.0.47",
"version": "1.0.48",
"game_id": "89",
"bundle": "extend/majiang/fuzhou"
}

View File

@ -1,109 +1,109 @@
[
{
"lua_path": "/tolua_project,/base_project,/main_project",
"ver": "1.0.11",
"ver": "1.0.12",
"name": "base_script",
"check": true,
"bundle": "base/base_script",
"version": "1.0.11"
"version": "1.0.12"
},
{
"ver": "1.0.11",
"ver": "1.0.12",
"name": "common",
"check": true,
"bundle": "base/common",
"version": "1.0.11"
"version": "1.0.12"
},
{
"ver": "1.0.11",
"ver": "1.0.12",
"name": "login",
"check": true,
"bundle": "base/login",
"version": "1.0.11"
"version": "1.0.12"
},
{
"ver": "1.0.11",
"ver": "1.0.12",
"name": "lobby",
"check": true,
"bundle": "base/lobby",
"version": "1.0.11"
"version": "1.0.12"
},
{
"ver": "1.0.11",
"ver": "1.0.12",
"name": "Family",
"check": true,
"bundle": "base/Family",
"version": "1.0.11"
"version": "1.0.12"
},
{
"ver": "1.0.11",
"ver": "1.0.12",
"name": "chat",
"check": true,
"bundle": "base/chat",
"version": "1.0.11"
"version": "1.0.12"
},
{
"ver": "1.0.11",
"ver": "1.0.12",
"name": "newgroup",
"check": true,
"bundle": "base/newgroup",
"version": "1.0.11"
"version": "1.0.12"
},
{
"ver": "1.0.11",
"ver": "1.0.12",
"name": "rank",
"check": true,
"version": "1.0.11",
"version": "1.0.12",
"bundle": "base/rank"
},
{
"ver": "1.0.11",
"ver": "1.0.12",
"name": "main_majiang",
"check": true,
"version": "1.0.11",
"version": "1.0.12",
"bundle": "base/main_majiang"
},
{
"ver": "1.0.11",
"ver": "1.0.12",
"name": "main_poker",
"check": true,
"version": "1.0.11",
"version": "1.0.12",
"bundle": "base/main_poker"
},
{
"ver": "1.0.11",
"ver": "1.0.12",
"name": "main_zipai",
"check": true,
"version": "1.0.11",
"version": "1.0.12",
"bundle": "base/main_zipai"
},
{
"ver": "1.0.11",
"ver": "1.0.12",
"name": "static",
"check": true,
"bundle": "base/static",
"version": "1.0.11"
"version": "1.0.12"
},
{
"ver": "1.0.11",
"ver": "1.0.12",
"is_res": true,
"name": "embed",
"check": true,
"bundle": "base/embed",
"version": "1.0.11"
"version": "1.0.12"
},
{
"ver": "1.0.11",
"ver": "1.0.12",
"name": "main_pokemajiang",
"check": true,
"version": "1.0.11",
"version": "1.0.12",
"bundle": "base/main_pokemajiang"
},
{
"ver": "1.0.11",
"ver": "1.0.12",
"name": "main_zipaimajiang",
"check": true,
"version": "1.0.11",
"version": "1.0.12",
"bundle": "base/main_zipaimajiang"
}
]