邀请其他圈的好友,结算时推牌更快,改用ID密码登录,设置密码和修改密码
|
|
@ -412,6 +412,9 @@ end
|
|||
|
||||
-- 邀请在线玩家
|
||||
function M:FG_InvitePlayer(group_id, tag, player_id, roomid, pid, game_name, callback)
|
||||
if not self._mgr_client then
|
||||
return
|
||||
end
|
||||
local _data = {}
|
||||
_data.groupId = group_id
|
||||
_data.tagId = tag
|
||||
|
|
@ -456,12 +459,7 @@ end
|
|||
|
||||
--被邀请玩家收到邀请
|
||||
function M:FG_ResponseInvited(evt_data)
|
||||
local invite_id = evt_data.invite_id
|
||||
local g_name = evt_data.g_name
|
||||
local roomid = evt_data.roomid
|
||||
local pid = evt_data.pid
|
||||
local groupid = evt_data.groupId
|
||||
DispatchEvent(self._dispatcher, GroupMgrEvent.InviteResponse, invite_id, g_name, roomid, pid, groupid)
|
||||
DispatchEvent(self._dispatcher, GroupMgrEvent.InviteResponse, evt_data)
|
||||
end
|
||||
|
||||
-- 设置助理,来用给对面刷新界面 tagId=助理
|
||||
|
|
|
|||
|
|
@ -55,6 +55,7 @@ local function __Login(cmd, _data, callBack)
|
|||
user.phone = account.phone
|
||||
user.address = account.address
|
||||
user.games = FilterGame(data.games)
|
||||
user.havaPsw = account.havaPassword
|
||||
if Application.platform == RuntimePlatform.WindowsPlayer or Application.platform == RuntimePlatform.WindowsEditor then
|
||||
--GameApplication.Instance.printLog = true
|
||||
else
|
||||
|
|
|
|||
|
|
@ -41,10 +41,10 @@ end
|
|||
|
||||
function M:OnChangeOption(ctype)
|
||||
self:ShowRoomPrice(ctype)
|
||||
local round = self._config:GetController("round")
|
||||
round.onChanged:Set(function()
|
||||
self:ShowVariablePrice(ctype)
|
||||
end)
|
||||
-- local round = self._config:GetController("round")
|
||||
-- round.onChanged:Set(function()
|
||||
-- self:ShowVariablePrice(ctype)
|
||||
-- end)
|
||||
end
|
||||
|
||||
function M:ShowVariablePrice(ctype)
|
||||
|
|
|
|||
|
|
@ -63,7 +63,6 @@ function FGAssistView.new(blur_view, group_id, callback)
|
|||
|
||||
self.callback = callback
|
||||
self:init("ui://FGAssist/panel_assist")
|
||||
print("lingmeng FGAssistView new")
|
||||
return self
|
||||
end
|
||||
|
||||
|
|
@ -191,28 +190,27 @@ end
|
|||
-- end
|
||||
function M:GetOnlinePlayers(index)
|
||||
index = index or 0
|
||||
print("lingmeng GetOnlinePlayers", self.group_id)
|
||||
local group = DataManager.groups:get(self.group_id)
|
||||
local fgCtr = ControllerManager.GetController(NewGroupController)
|
||||
if not group then
|
||||
fgCtr:FG_GroupList(function(res)
|
||||
if res.ReturnCode ~= 0 then
|
||||
ViewUtil.ErrorTip(res.ReturnCode, "连接亲友圈失败")
|
||||
else
|
||||
fgCtr:FG_EnterGroup(self.group_id, function(res)
|
||||
ViewUtil:CloseModalWait2()
|
||||
if res.ReturnCode ~= 0 then
|
||||
ViewUtil.ErrorTip(res.ReturnCode, "连接亲友圈失败")
|
||||
else
|
||||
self:GetOnlinePlayersshow(fgCtr, DataManager.groups:get(self.group_id), index)
|
||||
return 1
|
||||
end
|
||||
end)
|
||||
end
|
||||
end)
|
||||
else
|
||||
self:GetOnlinePlayersshow(fgCtr, group, index)
|
||||
end
|
||||
-- if not group then
|
||||
fgCtr:FG_GroupList(function(res)
|
||||
if res.ReturnCode ~= 0 then
|
||||
ViewUtil.ErrorTip(res.ReturnCode, "连接亲友圈失败")
|
||||
else
|
||||
fgCtr:FG_EnterGroup(self.group_id, function(res)
|
||||
ViewUtil:CloseModalWait2()
|
||||
if res.ReturnCode ~= 0 then
|
||||
ViewUtil.ErrorTip(res.ReturnCode, "连接亲友圈失败")
|
||||
else
|
||||
self:GetOnlinePlayersshow(fgCtr, DataManager.groups:get(self.group_id), index)
|
||||
return 1
|
||||
end
|
||||
end)
|
||||
end
|
||||
end)
|
||||
-- else
|
||||
-- self:GetOnlinePlayersshow(fgCtr, group, index)
|
||||
-- end
|
||||
end
|
||||
|
||||
function M:GetOnlinePlayersshow(fgCtr, group, index)
|
||||
|
|
|
|||
|
|
@ -167,20 +167,22 @@ end
|
|||
|
||||
function M:_evtInviteResponse(...)
|
||||
local arg = { ... }
|
||||
local invite_id = arg[1]
|
||||
local g_name = arg[2]
|
||||
local roomid = arg[3]
|
||||
local pid = arg[4]
|
||||
local groupid = arg[5]
|
||||
local evt_data = arg[1]
|
||||
local invite_id = evt_data.invite_id
|
||||
local nik = evt_data.nik
|
||||
local g_name = evt_data.g_name
|
||||
local roomid = evt_data.roomid
|
||||
local pid = evt_data.pid
|
||||
local groupid = evt_data.groupId
|
||||
local playInfo = evt_data.pinfo
|
||||
local roomCtr = ControllerManager.GetController(RoomController)
|
||||
local gameId = DataManager.groups:get(groupid):getPlay(pid).gameId
|
||||
UIPackage.AddPackage('base/newgroup/ui/FGAssist')
|
||||
local imv =
|
||||
FGInvitedMsgView.new(
|
||||
self._root_view,
|
||||
groupid,
|
||||
pid,
|
||||
invite_id,
|
||||
playInfo,
|
||||
nik,
|
||||
function()
|
||||
roomCtr:PublicJoinRoom(
|
||||
Protocol.WEB_FG_JOIN_ROOM,
|
||||
|
|
@ -199,7 +201,8 @@ function M:_evtInviteResponse(...)
|
|||
return
|
||||
else
|
||||
UpdateBeat:Remove(self.OnUpdate, self)
|
||||
ViewManager.ChangeView(ViewManager.View_Main, gameId, { _flag_showTip = true })
|
||||
ViewManager.ChangeView(ViewManager.View_Main, DataManager.CurrenRoom.game_id,
|
||||
{ _flag_showTip = true })
|
||||
end
|
||||
end,
|
||||
groupid,
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ local FamilyInvitedMsgView = {}
|
|||
local M = FamilyInvitedMsgView
|
||||
setmetatable(M, { __index = BaseWindow })
|
||||
|
||||
function FamilyInvitedMsgView.new(blur_view, groupid, pid, invite_id, callback)
|
||||
function FamilyInvitedMsgView.new(blur_view, groupid, pinfo, nik, callback)
|
||||
print("lingmeng FGAssistInviteView")
|
||||
local self = setmetatable({}, { __index = M })
|
||||
self.class = "FGAssistInviteView"
|
||||
|
|
@ -14,8 +14,8 @@ function FamilyInvitedMsgView.new(blur_view, groupid, pid, invite_id, callback)
|
|||
self._put_map = false
|
||||
self._close_destroy = true
|
||||
self.groupid = groupid
|
||||
self.pid = pid
|
||||
self.invite_id = invite_id
|
||||
self.pinfo = pinfo
|
||||
self.nik = nik
|
||||
self.callback = callback
|
||||
UIPackage.AddPackage('base/newgroup/ui/FGAssist')
|
||||
self:initView("ui://FGAssist/panel_invited")
|
||||
|
|
@ -35,45 +35,35 @@ function M:initView(url)
|
|||
self._viewText_playName.emojies = EmojiDitc.EmojiesDitc
|
||||
|
||||
self._view:GetChild('btn_no').onClick:Set(function()
|
||||
print("lingmeng btn_no")
|
||||
self:Destroy()
|
||||
end)
|
||||
|
||||
print("lingmeng FGAssistInviteView5")
|
||||
|
||||
self._view:GetChild('btn_yes').onClick:Set(function()
|
||||
print("lingmeng btn_yes", self.callback)
|
||||
|
||||
if self.callback then
|
||||
self.callback()
|
||||
end
|
||||
self:Destroy()
|
||||
end)
|
||||
print("lingmeng FGAssistInviteViewend")
|
||||
self:FillData()
|
||||
end
|
||||
|
||||
function M:FillData()
|
||||
local group = DataManager.groups:get(self.groupid)
|
||||
local play = group:getPlay(self.pid)
|
||||
local player = group.memberMap[self.invite_id]
|
||||
|
||||
if player == nil then
|
||||
return
|
||||
end
|
||||
local play = self.pinfo
|
||||
|
||||
--print("lingmeng FillData", self.groupid, self.pid, self.invite_id, type(self.invite_id), type(self.groupid),player)
|
||||
--pt(group.memberMap)
|
||||
|
||||
self._viewText_groupName.text = Utils.TextOmit(group.name, 6, "...")
|
||||
self._viewText_gameName.text = play.game_name
|
||||
self._viewText_inviteName.text = player.nick
|
||||
self._viewText_inviteName.text = self.nik
|
||||
self._viewText_playName.text = Utils.TextOmit(play.name, 6, "...")
|
||||
|
||||
local config = ExtendManager.GetExtendConfig(play.gameId)
|
||||
local mode = config:GetGameInfo()
|
||||
local gamePlay = mode:LoadConfigToDetail(play.config, play.hpData)
|
||||
self._viewText_playConfig.text = play.hp_times / 1000 .. "倍," .. gamePlay
|
||||
self._viewText_playConfig.text = gamePlay
|
||||
end
|
||||
|
||||
function M:Destroy()
|
||||
|
|
|
|||
|
|
@ -0,0 +1,118 @@
|
|||
local IdPasswordLoginView = {}
|
||||
|
||||
local M = IdPasswordLoginView
|
||||
|
||||
function IdPasswordLoginView.new(type, callback)
|
||||
setmetatable(M, { __index = BaseWindow })
|
||||
local self = setmetatable({}, { __index = M })
|
||||
self.class = "IdPasswordLoginView"
|
||||
self._callback = callback
|
||||
self._close_destroy = true
|
||||
self.codeType = type
|
||||
self:init("ui://Login/IDLogin")
|
||||
|
||||
return self
|
||||
end
|
||||
|
||||
function M:init(url)
|
||||
BaseWindow.init(self, url)
|
||||
|
||||
local btn_login = self._view:GetChild("btn_login")
|
||||
btn_login.onClick:Add(handler(self, function()
|
||||
self:login()
|
||||
end))
|
||||
end
|
||||
|
||||
function M:login()
|
||||
if self.codeType == 0 then
|
||||
local uid = self:CheckInputId()
|
||||
if not uid then
|
||||
return
|
||||
end
|
||||
local loginCtr = ControllerManager.GetController(LoginController)
|
||||
local passwd = self:CheckInputPasswd()
|
||||
if not passwd then
|
||||
return
|
||||
end
|
||||
ViewUtil.ShowModalWait2()
|
||||
loginCtr:IdPasswordLogin(uid, passwd, function(res)
|
||||
ViewUtil.CloseModalWait2()
|
||||
if res.ReturnCode ~= 0 then
|
||||
ViewUtil.ErrorTip(res.ReturnCode, "ID或者密码错误")
|
||||
return
|
||||
end
|
||||
self._callback(res)
|
||||
end)
|
||||
else
|
||||
---[[
|
||||
--直接登入
|
||||
local loginCtr = ControllerManager.GetController(LoginController)
|
||||
|
||||
local phone = self:CheckInputPhone()
|
||||
if not phone then
|
||||
return
|
||||
end
|
||||
|
||||
local code = self:CheckInputPhoneCode()
|
||||
if not code then
|
||||
return
|
||||
end
|
||||
|
||||
loginCtr:PhoneLogin(phone, code, function(res)
|
||||
if res.ReturnCode ~= 0 then
|
||||
local msg_txt = "验证码错误"
|
||||
if (Table_Error_code_Map[res.ReturnCode] ~= nil) then
|
||||
msg_txt = Table_Error_code_Map[res.ReturnCode].note
|
||||
end
|
||||
local guo_msg = MsgWindow.new(self._root_view, msg_txt, MsgWindow.MsgMode.OnlyOk)
|
||||
guo_msg._new_hide = false
|
||||
guo_msg:Show()
|
||||
return
|
||||
end
|
||||
self._callback(res)
|
||||
self:Destroy()
|
||||
end)
|
||||
end
|
||||
end
|
||||
|
||||
function M:Destroy()
|
||||
getmetatable(M).__index.Destroy(self)
|
||||
end
|
||||
|
||||
function M:CheckInputId()
|
||||
local uid = self._view:GetChild("phone_input").text
|
||||
if not (string.len(uid) >= 6) then
|
||||
ViewUtil.ShowTips("请输入正确的用户ID")
|
||||
return
|
||||
end
|
||||
return uid
|
||||
end
|
||||
|
||||
function M:CheckInputPasswd()
|
||||
local tex_passwd = self._view:GetChild("tex_passwd").text
|
||||
if string.len(tex_passwd) < 8 then
|
||||
ViewUtil.ShowTips("密码最少八位")
|
||||
return
|
||||
end
|
||||
return tex_passwd
|
||||
end
|
||||
|
||||
function M:CheckInputPhone()
|
||||
local phone = self._view:GetChild("phone_input").text
|
||||
if not (string.len(phone) == 11) then
|
||||
ViewUtil.ShowTips("请输入正确的电话号码")
|
||||
return
|
||||
end
|
||||
return phone
|
||||
end
|
||||
|
||||
function M:CheckInputPhoneCode()
|
||||
local code = self._view:GetChild("code_input").text
|
||||
if string.len(code) ~= 6 then
|
||||
ViewUtil.ShowTips("请输入正确的验证码")
|
||||
return
|
||||
end
|
||||
return code
|
||||
end
|
||||
|
||||
return M
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
--设置窗口对象
|
||||
local PhoneLoginView = import(".PhoneLoginView2")
|
||||
local PasswordUpdateView = import(".PasswordUpdateView")
|
||||
|
||||
local LobbyPlayerInfoView = {}
|
||||
|
||||
|
|
@ -12,6 +12,7 @@ function LobbyPlayerInfoView.new(user, callback)
|
|||
self._close_destroy = true
|
||||
self.user = user
|
||||
self._callback = callback
|
||||
self._loadAll = 0
|
||||
self:init('ui://Lobby/PlayerInfo')
|
||||
return self
|
||||
end
|
||||
|
|
@ -31,16 +32,23 @@ function M:init(url)
|
|||
view:GetController('ctr_sex').selectedIndex = user.sex - 1
|
||||
view:GetChild('ip').text = DataManager.SelfUser.currenIp
|
||||
ImageLoad.Load(DataManager.SelfUser.head_url, view:GetChild("btn_PlayerHead")._iconObject)
|
||||
GameApplication.Instance:GetPublicIP(function(ip)
|
||||
DataManager.SelfUser.currenIp = ip
|
||||
end)
|
||||
if DataManager.SelfUser.currenIp then
|
||||
self._loadAll = self._loadAll + 1
|
||||
else
|
||||
GameApplication.Instance:GetPublicIP(function(ip)
|
||||
DataManager.SelfUser.currenIp = ip
|
||||
view:GetChild('ip').text = DataManager.SelfUser.currenIp
|
||||
self:CheckAllload()
|
||||
end)
|
||||
end
|
||||
|
||||
--change
|
||||
view:GetChild('choose_id').text = user.account_id
|
||||
view:GetChild('choose_diamo').text = user.diamo
|
||||
if user.phone and #user.phone == 11 then
|
||||
self._view:GetChild('btn_changeInfo').visible = false
|
||||
self._view:GetChild('btn_changeInfo').touchable = false
|
||||
end
|
||||
-- if user.phone and #user.phone == 11 then
|
||||
-- self._view:GetChild('btn_changeInfo').visible = false
|
||||
-- self._view:GetChild('btn_changeInfo').touchable = false
|
||||
-- end
|
||||
self.Lable_name = view:GetChild('Lable_name'):GetChild('text')
|
||||
self.Lable_name.text = user.nick_name
|
||||
self.group_sex = view:GetController('group_sex')
|
||||
|
|
@ -105,18 +113,30 @@ function M:init(url)
|
|||
end)
|
||||
end)
|
||||
|
||||
local pswType = DataManager.SelfUser.havaPsw and 1 or 0
|
||||
local btn_changeInfo = self._view:GetChild('btn_changeInfo')
|
||||
btn_changeInfo:GetController('type').selectedIndex = pswType
|
||||
btn_changeInfo.onClick:Set(function()
|
||||
local phoneLoginView = PhoneLoginView.new(1, function(res)
|
||||
view:GetChild('phone').text = res.Data.phone
|
||||
user.phone = res.Data.phone
|
||||
if user.phone and #user.phone == 11 then
|
||||
self._view:GetChild('btn_changeInfo').visible = false
|
||||
self._view:GetChild('btn_changeInfo').touchable = false
|
||||
end
|
||||
local passwordUpdateView = PasswordUpdateView.new(pswType, function(res)
|
||||
pswType = DataManager.SelfUser.havaPsw and 1 or 0
|
||||
btn_changeInfo:GetController('type').selectedIndex = pswType
|
||||
end)
|
||||
phoneLoginView:Show()
|
||||
passwordUpdateView:Show()
|
||||
end)
|
||||
|
||||
local loddyCtr1 = ControllerManager.GetController(LoddyController)
|
||||
loddyCtr1:GetUserInfo(function(res)
|
||||
if res.ReturnCode == 0 then
|
||||
self:CheckAllload()
|
||||
end
|
||||
end)
|
||||
end
|
||||
|
||||
function M:CheckAllload()
|
||||
self._loadAll = self._loadAll + 1
|
||||
if self._loadAll >= 2 then
|
||||
self:Show()
|
||||
end
|
||||
end
|
||||
|
||||
return M
|
||||
|
|
|
|||
|
|
@ -0,0 +1,157 @@
|
|||
local PasswordUpdateView = {}
|
||||
|
||||
local M = PasswordUpdateView
|
||||
|
||||
function PasswordUpdateView.new(type, callback)
|
||||
setmetatable(M, { __index = BaseWindow })
|
||||
local self = setmetatable({}, { __index = M })
|
||||
self.class = "PasswordUpdateView"
|
||||
self._callback = callback
|
||||
self._close_destroy = true
|
||||
-- self.codeType = type
|
||||
self.codeType = 0
|
||||
self:init("ui://Lobby/PasswordSet")
|
||||
|
||||
return self
|
||||
end
|
||||
|
||||
function M:init(url)
|
||||
BaseWindow.init(self, url)
|
||||
self.login_type = self._view:GetController("type")
|
||||
self.login_type.selectedIndex = self.codeType
|
||||
|
||||
local btn_login = self._view:GetChild("btn_login")
|
||||
btn_login.onClick:Add(handler(self, function()
|
||||
self:Bind()
|
||||
end))
|
||||
end
|
||||
|
||||
function M:Bind()
|
||||
if self.codeType == 0 then
|
||||
local passwd = self:CheckInputPasswd()
|
||||
if not passwd then
|
||||
return
|
||||
end
|
||||
local loddyctr = ControllerManager.GetController(LoddyController)
|
||||
local _data = {}
|
||||
_data.password = passwd
|
||||
_data.type = 3
|
||||
ViewUtil.ShowModalWait2()
|
||||
loddyctr:UpdateUserInfo(_data, function(res)
|
||||
ViewUtil.CloseModalWait2()
|
||||
if (res.ReturnCode == 0) then
|
||||
DataManager.SelfUser.havaPsw = true
|
||||
self.login_type.selectedIndex = 1
|
||||
if self._callback then self._callback() end
|
||||
else
|
||||
ViewUtil.ErrorTip(res.ReturnCode, "提交失败")
|
||||
end
|
||||
self:Close()
|
||||
end)
|
||||
else
|
||||
local myPwd = self:CheckInputPasswd2()
|
||||
if not myPwd then
|
||||
return
|
||||
end
|
||||
|
||||
local passwd = self:CheckInputPasswd()
|
||||
if not passwd then
|
||||
return
|
||||
end
|
||||
local loddyctr = ControllerManager.GetController(LoddyController)
|
||||
local _data = {}
|
||||
_data.password = passwd
|
||||
_data.type = 3
|
||||
ViewUtil.ShowModalWait2()
|
||||
loddyctr:UpdateUserInfo(_data, function(res)
|
||||
ViewUtil.CloseModalWait2()
|
||||
if (res.ReturnCode == 0) then
|
||||
DataManager.SelfUser.havaPsw = true
|
||||
self.login_type.selectedIndex = 1
|
||||
if self._callback then self._callback() end
|
||||
else
|
||||
ViewUtil.ErrorTip(res.ReturnCode, "提交失败")
|
||||
end
|
||||
self:Close()
|
||||
end)
|
||||
end
|
||||
end
|
||||
|
||||
function M:Destroy()
|
||||
UpdateBeat:Remove(self.OnUpdate, self)
|
||||
getmetatable(M).__index.Destroy(self)
|
||||
end
|
||||
|
||||
function M:CheckInputId()
|
||||
local uid = self._view:GetChild("phone_input").text
|
||||
if not (string.len(uid) >= 6) then
|
||||
ViewUtil.ShowTips("请输入正确的用户ID")
|
||||
return
|
||||
end
|
||||
return uid
|
||||
end
|
||||
|
||||
function M:CheckInputPasswd2()
|
||||
local tex_passwd = self._view:GetChild("my_input").text
|
||||
if string.len(tex_passwd) < 8 then
|
||||
ViewUtil.ShowTips("旧密码最少八位")
|
||||
return
|
||||
end
|
||||
return tex_passwd
|
||||
end
|
||||
|
||||
function M:CheckInputPasswd()
|
||||
local tex_frist_passwd = self._view:GetChild("phone_input").text
|
||||
local tex_confrim_passwd = self._view:GetChild("code_input").text
|
||||
|
||||
if string.len(tex_frist_passwd) < 8 then
|
||||
ViewUtil.ShowTips("密码最少八位")
|
||||
return
|
||||
end
|
||||
|
||||
local flg_xiaozimu = false
|
||||
local flg_dazimu = false
|
||||
local fla_shuzi = false
|
||||
for i = 1, #tex_frist_passwd do
|
||||
local oneChar = string.sub(tex_frist_passwd, i, i)
|
||||
print("lingmeng Bind", oneChar, string.byte(oneChar))
|
||||
if string.byte(oneChar) >= 65 and string.byte(oneChar) <= 90 then
|
||||
flg_dazimu = true
|
||||
elseif string.byte(oneChar) >= 97 and string.byte(oneChar) <= 122 then
|
||||
flg_xiaozimu = true
|
||||
elseif string.byte(oneChar) >= 48 and string.byte(oneChar) <= 57 then
|
||||
fla_shuzi = true
|
||||
end
|
||||
end
|
||||
if not ((flg_xiaozimu or flg_dazimu) and fla_shuzi) then
|
||||
ViewUtil.ShowTips("密码必须同时包含字母和数字")
|
||||
return
|
||||
end
|
||||
|
||||
if tex_frist_passwd ~= tex_confrim_passwd then
|
||||
ViewUtil.ShowTips("确认密码必须和输入密码保持一致")
|
||||
return
|
||||
end
|
||||
|
||||
return tex_confrim_passwd
|
||||
end
|
||||
|
||||
function M:CheckInputPhone()
|
||||
local phone = self._view:GetChild("phone_input").text
|
||||
if not (string.len(phone) == 11) then
|
||||
ViewUtil.ShowTips("请输入正确的电话号码")
|
||||
return
|
||||
end
|
||||
return phone
|
||||
end
|
||||
|
||||
function M:CheckInputPhoneCode()
|
||||
local code = self._view:GetChild("code_input").text
|
||||
if string.len(code) ~= 6 then
|
||||
ViewUtil.ShowTips("请输入正确的验证码")
|
||||
return
|
||||
end
|
||||
return code
|
||||
end
|
||||
|
||||
return M
|
||||
|
|
@ -83,15 +83,6 @@ function M:Bind()
|
|||
end
|
||||
local _data = {}
|
||||
|
||||
-- if self.ctr_update.selectedIndex == 1 then
|
||||
|
||||
-- local code = self:CheckInputCode()
|
||||
-- if not code then
|
||||
-- return
|
||||
-- end
|
||||
-- _data.phone = DataManager.SelfUser.phone
|
||||
-- _data.code = code
|
||||
-- end
|
||||
ViewUtil.ShowModalWait2(self._root_view, "正在提交...")
|
||||
local loddyctr = ControllerManager.GetController(LoddyController)
|
||||
_data.password = password
|
||||
|
|
|
|||
|
|
@ -193,7 +193,7 @@ function M:InitView(url)
|
|||
local lobbyPlayerInfoView = LobbyPlayerInfoView.new(DataManager.SelfUser, function()
|
||||
ImageLoad.Load(DataManager.SelfUser.head_url, btn_head._iconObject)
|
||||
end)
|
||||
lobbyPlayerInfoView:Show()
|
||||
-- lobbyPlayerInfoView:Show()
|
||||
end)
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
local PhoneLoginView = import(".PhoneLoginView2")
|
||||
local IdPasswordLoginView = import(".IdPasswordLoginView")
|
||||
LoginView = {}
|
||||
|
||||
|
||||
|
|
@ -90,13 +91,26 @@ function M:init()
|
|||
-- end)
|
||||
|
||||
local btn_phone_code = view:GetChild("btn_phone_code")
|
||||
btn_phone_code.onClick:Set(function()
|
||||
if self.agree.selectedIndex == 0 then
|
||||
ViewUtil.ErrorTip(self._root_view, "请勾选同意《用户协议》")
|
||||
return
|
||||
end
|
||||
self:PhoneCodeLogin()
|
||||
end)
|
||||
if btn_phone_code then
|
||||
btn_phone_code.onClick:Set(function()
|
||||
if self.agree.selectedIndex == 0 then
|
||||
ViewUtil.ErrorTip(self._root_view, "请勾选同意《用户协议》")
|
||||
return
|
||||
end
|
||||
self:PhoneCodeLogin()
|
||||
end)
|
||||
end
|
||||
|
||||
local btn_id = view:GetChild("btn_id")
|
||||
if btn_id then
|
||||
btn_id.onClick:Set(function()
|
||||
if self.agree.selectedIndex == 0 then
|
||||
ViewUtil.ErrorTip(self._root_view, "请勾选同意《用户协议》")
|
||||
return
|
||||
end
|
||||
self:IDLogin()
|
||||
end)
|
||||
end
|
||||
end
|
||||
|
||||
function M:Destroy()
|
||||
|
|
@ -228,7 +242,7 @@ end
|
|||
|
||||
function M:IDLogin()
|
||||
local _idView = nil
|
||||
_idView = IDLoginView.new(function(res)
|
||||
_idView = IdPasswordLoginView.new(0, function(res)
|
||||
if res.ReturnCode == 0 then
|
||||
_idView:Destroy()
|
||||
end
|
||||
|
|
|
|||
|
|
@ -584,7 +584,6 @@ function M:InitView(url, isHideIpAdds)
|
|||
_room.group_id ~= 0 and "亲友圈," or "", _room.room_config.config.hpData.maxRound)
|
||||
data.description = gamePlay
|
||||
data.type = 0
|
||||
pt("lingmeng share ", data)
|
||||
ViewUtil.__share(data)
|
||||
end)
|
||||
end
|
||||
|
|
|
|||
|
|
@ -24,6 +24,20 @@ function M:FillData()
|
|||
local com_editSetting = self._config:GetChild("com_editSetting")
|
||||
|
||||
com_editSetting:GetController("cGps").selectedIndex = 2
|
||||
|
||||
local ctr_round = self._config:GetController("round")
|
||||
if ctr_round.selectedIndex == 0 then
|
||||
com_editSetting:GetController("oneRound").selectedIndex = 1
|
||||
else
|
||||
com_editSetting:GetController("oneRound").selectedIndex = 0
|
||||
end
|
||||
self._config:GetController("round").onChanged:Set(function()
|
||||
if ctr_round.selectedIndex == 0 then
|
||||
com_editSetting:GetController("oneRound").selectedIndex = 1
|
||||
else
|
||||
com_editSetting:GetController("oneRound").selectedIndex = 0
|
||||
end
|
||||
end)
|
||||
-- if oldGameVersion == 2 then
|
||||
-- self._config:GetController("xipai").selectedIndex = 0
|
||||
|
||||
|
|
|
|||
|
|
@ -516,7 +516,7 @@ function M:EventInit()
|
|||
self:PlayMJMusic("gameover.mp3")
|
||||
end
|
||||
else
|
||||
self:ShowHand(arg)
|
||||
-- self:ShowHand(arg)
|
||||
self:PlayMJMusic("gameover.mp3")
|
||||
end
|
||||
local liuju = result and result.liuju or nil
|
||||
|
|
|
|||
|
|
@ -24,6 +24,20 @@ function M:FillData()
|
|||
local com_editSetting = self._config:GetChild("com_editSetting")
|
||||
|
||||
com_editSetting:GetController("cGps").selectedIndex = 2
|
||||
|
||||
local ctr_round = self._config:GetController("round")
|
||||
if ctr_round.selectedIndex == 0 then
|
||||
com_editSetting:GetController("oneRound").selectedIndex = 1
|
||||
else
|
||||
com_editSetting:GetController("oneRound").selectedIndex = 0
|
||||
end
|
||||
self._config:GetController("round").onChanged:Set(function()
|
||||
if ctr_round.selectedIndex == 0 then
|
||||
com_editSetting:GetController("oneRound").selectedIndex = 1
|
||||
else
|
||||
com_editSetting:GetController("oneRound").selectedIndex = 0
|
||||
end
|
||||
end)
|
||||
-- if oldGameVersion == 2 then
|
||||
-- self._config:GetController("xipai").selectedIndex = 0
|
||||
|
||||
|
|
|
|||
|
|
@ -516,7 +516,7 @@ function M:EventInit()
|
|||
self:PlayMJMusic("gameover.mp3")
|
||||
end
|
||||
else
|
||||
self:ShowHand(arg)
|
||||
-- self:ShowHand(arg)
|
||||
self:PlayMJMusic("gameover.mp3")
|
||||
end
|
||||
local liuju = result and result.liuju or nil
|
||||
|
|
|
|||
|
|
@ -22,6 +22,20 @@ function M:FillData()
|
|||
com_editSetting:GetController("cGps").selectedIndex = 2
|
||||
self._config:GetController("jingbibo").selectedIndex = 1
|
||||
|
||||
local ctr_round = self._config:GetController("round")
|
||||
if ctr_round.selectedIndex == 0 then
|
||||
com_editSetting:GetController("oneRound").selectedIndex = 1
|
||||
else
|
||||
com_editSetting:GetController("oneRound").selectedIndex = 0
|
||||
end
|
||||
self._config:GetController("round").onChanged:Set(function()
|
||||
if ctr_round.selectedIndex == 0 then
|
||||
com_editSetting:GetController("oneRound").selectedIndex = 1
|
||||
else
|
||||
com_editSetting:GetController("oneRound").selectedIndex = 0
|
||||
end
|
||||
end)
|
||||
|
||||
-- if oldGameVersion == 2 then
|
||||
-- self._config:GetController("xipai").selectedIndex = 0
|
||||
|
||||
|
|
|
|||
|
|
@ -515,7 +515,7 @@ function M:EventInit()
|
|||
self:PlayMJMusic("gameover.mp3")
|
||||
end
|
||||
else
|
||||
self:ShowHand(arg)
|
||||
-- self:ShowHand(arg)
|
||||
self:PlayMJMusic("gameover.mp3")
|
||||
end
|
||||
local liuju = result and result.liuju or nil
|
||||
|
|
|
|||
|
|
@ -24,6 +24,20 @@ function M:FillData()
|
|||
local com_editSetting = self._config:GetChild("com_editSetting")
|
||||
|
||||
com_editSetting:GetController("cGps").selectedIndex = 2
|
||||
|
||||
local ctr_round = self._config:GetController("round")
|
||||
if ctr_round.selectedIndex == 0 then
|
||||
com_editSetting:GetController("oneRound").selectedIndex = 1
|
||||
else
|
||||
com_editSetting:GetController("oneRound").selectedIndex = 0
|
||||
end
|
||||
self._config:GetController("round").onChanged:Set(function()
|
||||
if ctr_round.selectedIndex == 0 then
|
||||
com_editSetting:GetController("oneRound").selectedIndex = 1
|
||||
else
|
||||
com_editSetting:GetController("oneRound").selectedIndex = 0
|
||||
end
|
||||
end)
|
||||
-- if oldGameVersion == 2 then
|
||||
-- self._config:GetController("xipai").selectedIndex = 0
|
||||
|
||||
|
|
|
|||
|
|
@ -515,7 +515,7 @@ function M:EventInit()
|
|||
self:PlayMJMusic("gameover.mp3")
|
||||
end
|
||||
else
|
||||
self:ShowHand(arg)
|
||||
-- self:ShowHand(arg)
|
||||
self:PlayMJMusic("gameover.mp3")
|
||||
end
|
||||
local liuju = result and result.liuju or nil
|
||||
|
|
|
|||
|
|
@ -25,6 +25,20 @@ function M:FillData(view, index)
|
|||
local com_editSetting = self._config:GetChild("com_editSetting")
|
||||
|
||||
com_editSetting:GetController("cGps").selectedIndex = 2
|
||||
|
||||
local ctr_round = self._config:GetController("round")
|
||||
if ctr_round.selectedIndex == 0 then
|
||||
com_editSetting:GetController("oneRound").selectedIndex = 1
|
||||
else
|
||||
com_editSetting:GetController("oneRound").selectedIndex = 0
|
||||
end
|
||||
self._config:GetController("round").onChanged:Set(function()
|
||||
if ctr_round.selectedIndex == 0 then
|
||||
com_editSetting:GetController("oneRound").selectedIndex = 1
|
||||
else
|
||||
com_editSetting:GetController("oneRound").selectedIndex = 0
|
||||
end
|
||||
end)
|
||||
-- else
|
||||
-- self._config = UIPackage.CreateObjectFromURL("ui://Info_Poker_RunFastNew/Creat_RunFast_yueyang")
|
||||
-- end
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@
|
|||
<richtext id="n16_cioe" name="tex_play_name" xy="902,251" size="369,72" group="n25_p747" font="ui://27vd145bh35o7ili" fontSize="54" color="#983431" vAlign="middle" autoSize="none" singleLine="true" autoClearText="true" text="233"/>
|
||||
<group id="n25_p747" name="roomName" xy="666,251" size="605,72"/>
|
||||
<text id="n9_cioe" name="n9" xy="138,251" size="185,72" group="n26_p747" font="ui://27vd145bh35o7ili" fontSize="54" color="#983431" text="邀请人:"/>
|
||||
<text id="n11_cioe" name="tex_name" xy="318,251" size="350,72" group="n26_p747" font="ui://27vd145bh35o7ili" fontSize="54" color="#983431" autoSize="shrink" singleLine="true" autoClearText="true" text="玩家名字"/>
|
||||
<text id="n11_cioe" name="tex_name" xy="318,251" size="350,72" group="n26_p747" font="ui://27vd145bh35o7ili" fontSize="54" color="#983431" autoSize="none" singleLine="true" autoClearText="true" text="玩家名字溜溜"/>
|
||||
<component id="n10_cioe" name="btn_head" src="do2f1z" fileName="component/head/Head2.xml" pkg="27vd145b" xy="140,81" pivot="0.5,0.5" anchor="true" group="n13_cioe" visible="false"/>
|
||||
<text id="n12_cioe" name="tex_id" xy="215,86" size="143,42" group="n13_cioe" visible="false" fontSize="30" color="#663300" singleLine="true" autoClearText="true" text="iD:123456"/>
|
||||
<group id="n13_cioe" name="n13" xy="98,39" size="260,89" group="n26_p747" visible="false" advanced="true"/>
|
||||
|
|
|
|||
|
|
@ -15,13 +15,13 @@
|
|||
<component id="n43_pzuc" name="n43" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="384,10" group="n48_pzuc">
|
||||
<Button checked="true" controller="round" page="0"/>
|
||||
</component>
|
||||
<text id="n44_pzuc" name="n44" xy="474,7" size="355,72" group="n48_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#51933c" text="5局(房卡*2)">
|
||||
<text id="n44_pzuc" name="n44" xy="474,7" size="355,72" group="n48_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#51933c" text="1局(房卡*1)">
|
||||
<gearColor controller="round" pages="0" values="#51933c,#000000" default="#450f05,#000000"/>
|
||||
</text>
|
||||
<component id="n45_pzuc" name="n45" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1238,10" group="n48_pzuc">
|
||||
<Button controller="round" page="1"/>
|
||||
</component>
|
||||
<text id="n46_pzuc" name="n46" xy="1328,7" size="355,72" group="n48_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="8局(房卡*3)">
|
||||
<text id="n46_pzuc" name="n46" xy="1328,7" size="355,72" group="n48_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="5局(房卡*2)">
|
||||
<gearColor controller="round" pages="1" values="#51933c,#000000" default="#450f05,#000000"/>
|
||||
</text>
|
||||
<image id="n47_pzuc" name="n47" src="pzuc7cx6" fileName="component/CreatePlay/Image/Line 2.png" pkg="2d9xdj6z" xy="195,90" group="n48_pzuc" visible="false"/>
|
||||
|
|
@ -32,13 +32,13 @@
|
|||
<component id="n50_pzuc" name="n50" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="384,103" group="n55_pzuc">
|
||||
<Button controller="round" page="2"/>
|
||||
</component>
|
||||
<text id="n51_pzuc" name="n51" xy="474,100" size="386,72" group="n55_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="16局(房卡*6)">
|
||||
<text id="n51_pzuc" name="n51" xy="474,100" size="355,72" group="n55_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="8局(房卡*3)">
|
||||
<gearColor controller="round" pages="2" values="#51933c,#000000" default="#450f05,#000000"/>
|
||||
</text>
|
||||
<component id="n52_pzuc" name="n52" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1238,103" group="n55_pzuc">
|
||||
<Button controller="round" page="3"/>
|
||||
</component>
|
||||
<text id="n53_pzuc" name="n53" xy="1328,100" size="386,72" group="n55_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="24局(房卡*9)">
|
||||
<text id="n53_pzuc" name="n53" xy="1328,100" size="386,72" group="n55_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="16局(房卡*6)">
|
||||
<gearColor controller="round" pages="3" values="#51933c,#000000" default="#450f05,#000000"/>
|
||||
</text>
|
||||
<image id="n54_pzuc" name="n54" src="pzuc7cx6" fileName="component/CreatePlay/Image/Line 2.png" pkg="2d9xdj6z" xy="195,183" group="n55_pzuc"/>
|
||||
|
|
|
|||
|
|
@ -14,13 +14,13 @@
|
|||
<component id="n43_pzuc" name="n43" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="384,10" group="n48_pzuc">
|
||||
<Button checked="true" controller="round" page="0"/>
|
||||
</component>
|
||||
<text id="n44_pzuc" name="n44" xy="474,7" size="355,72" group="n48_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#51933c" text="5局(房卡*2)">
|
||||
<text id="n44_pzuc" name="n44" xy="474,7" size="355,72" group="n48_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#51933c" text="1局(房卡*1)">
|
||||
<gearColor controller="round" pages="0" values="#51933c,#000000" default="#450f05,#000000"/>
|
||||
</text>
|
||||
<component id="n45_pzuc" name="n45" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1238,10" group="n48_pzuc">
|
||||
<Button controller="round" page="1"/>
|
||||
</component>
|
||||
<text id="n46_pzuc" name="n46" xy="1328,7" size="355,72" group="n48_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="8局(房卡*3)">
|
||||
<text id="n46_pzuc" name="n46" xy="1328,7" size="355,72" group="n48_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="5局(房卡*2)">
|
||||
<gearColor controller="round" pages="1" values="#51933c,#000000" default="#450f05,#000000"/>
|
||||
</text>
|
||||
<group id="n48_pzuc" name="roundNum" xy="220,0" size="1463,86" advanced="true"/>
|
||||
|
|
@ -30,13 +30,13 @@
|
|||
<component id="n50_pzuc" name="n50" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="384,96" group="n55_pzuc">
|
||||
<Button controller="round" page="2"/>
|
||||
</component>
|
||||
<text id="n51_pzuc" name="n51" xy="474,93" size="386,72" group="n55_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="16局(房卡*6)">
|
||||
<text id="n51_pzuc" name="n51" xy="474,93" size="355,72" group="n55_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="8局(房卡*3)">
|
||||
<gearColor controller="round" pages="2" values="#51933c,#000000" default="#450f05,#000000"/>
|
||||
</text>
|
||||
<component id="n52_pzuc" name="n52" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1238,96" group="n55_pzuc">
|
||||
<Button controller="round" page="3"/>
|
||||
</component>
|
||||
<text id="n53_pzuc" name="n53" xy="1328,93" size="386,72" group="n55_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="24局(房卡*9)">
|
||||
<text id="n53_pzuc" name="n53" xy="1328,93" size="386,72" group="n55_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="16局(房卡*6)">
|
||||
<gearColor controller="round" pages="3" values="#51933c,#000000" default="#450f05,#000000"/>
|
||||
</text>
|
||||
<image id="n54_pzuc" name="n54" src="pzuc7cx6" fileName="component/CreatePlay/Image/Line 2.png" pkg="2d9xdj6z" xy="195,176" group="n55_pzuc"/>
|
||||
|
|
|
|||
|
|
@ -11,13 +11,13 @@
|
|||
<component id="n43_pzuc" name="n43" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="384,10" size="66,66" group="n48_pzuc">
|
||||
<Button checked="true" controller="round" page="0"/>
|
||||
</component>
|
||||
<text id="n44_pzuc" name="n44" xy="474,7" size="355,72" group="n48_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#51933c" text="5局(房卡*2)">
|
||||
<text id="n44_pzuc" name="n44" xy="474,7" size="355,72" group="n48_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#51933c" text="1局(房卡*1)">
|
||||
<gearColor controller="round" pages="0" values="#51933c,#000000" default="#450f05,#000000"/>
|
||||
</text>
|
||||
<component id="n45_pzuc" name="n45" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1238,10" size="66,66" group="n48_pzuc">
|
||||
<Button controller="round" page="1"/>
|
||||
</component>
|
||||
<text id="n46_pzuc" name="n46" xy="1328,7" size="355,72" group="n48_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="8局(房卡*3)">
|
||||
<text id="n46_pzuc" name="n46" xy="1328,7" size="355,72" group="n48_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="5局(房卡*2)">
|
||||
<gearColor controller="round" pages="1" values="#51933c,#000000" default="#450f05,#000000"/>
|
||||
</text>
|
||||
<image id="n47_pzuc" name="n47" src="pzuc7cx6" fileName="component/CreatePlay/Image/Line 2.png" pkg="2d9xdj6z" xy="195,90" size="1515,3" group="n48_pzuc" visible="false"/>
|
||||
|
|
@ -28,13 +28,13 @@
|
|||
<component id="n50_pzuc" name="n50" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="384,103" group="n55_pzuc">
|
||||
<Button controller="round" page="2"/>
|
||||
</component>
|
||||
<text id="n51_pzuc" name="n51" xy="474,100" size="386,72" group="n55_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="16局(房卡*6)">
|
||||
<text id="n51_pzuc" name="n51" xy="474,100" size="355,72" group="n55_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="8局(房卡*3)">
|
||||
<gearColor controller="round" pages="2" values="#51933c,#000000" default="#450f05,#000000"/>
|
||||
</text>
|
||||
<component id="n52_pzuc" name="n52" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1238,103" group="n55_pzuc">
|
||||
<Button controller="round" page="3"/>
|
||||
</component>
|
||||
<text id="n53_pzuc" name="n53" xy="1328,100" size="386,72" group="n55_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="24局(房卡*9)">
|
||||
<text id="n53_pzuc" name="n53" xy="1328,100" size="386,72" group="n55_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="16局(房卡*6)">
|
||||
<gearColor controller="round" pages="3" values="#51933c,#000000" default="#450f05,#000000"/>
|
||||
</text>
|
||||
<image id="n54_pzuc" name="n54" src="pzuc7cx6" fileName="component/CreatePlay/Image/Line 2.png" pkg="2d9xdj6z" xy="195,183" group="n55_pzuc"/>
|
||||
|
|
|
|||
|
|
@ -15,13 +15,13 @@
|
|||
<component id="n43_pzuc" name="n43" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="384,10" group="n48_pzuc">
|
||||
<Button checked="true" controller="round" page="0"/>
|
||||
</component>
|
||||
<text id="n44_pzuc" name="n44" xy="474,7" size="355,72" group="n48_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#51933c" text="5局(房卡*2)">
|
||||
<text id="n44_pzuc" name="n44" xy="474,7" size="355,72" group="n48_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#51933c" text="1局(房卡*1)">
|
||||
<gearColor controller="round" pages="0" values="#51933c,#000000" default="#450f05,#000000"/>
|
||||
</text>
|
||||
<component id="n45_pzuc" name="n45" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1239,10" group="n48_pzuc">
|
||||
<Button controller="round" page="1"/>
|
||||
</component>
|
||||
<text id="n46_pzuc" name="n46" xy="1329,7" size="355,72" group="n48_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="8局(房卡*3)">
|
||||
<text id="n46_pzuc" name="n46" xy="1329,7" size="355,72" group="n48_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="5局(房卡*2)">
|
||||
<gearColor controller="round" pages="1" values="#51933c,#000000" default="#450f05,#000000"/>
|
||||
</text>
|
||||
<image id="n47_pzuc" name="n47" src="pzuc7cx6" fileName="component/CreatePlay/Image/Line 2.png" pkg="2d9xdj6z" xy="195,90" group="n48_pzuc" visible="false"/>
|
||||
|
|
@ -32,13 +32,13 @@
|
|||
<component id="n50_pzuc" name="n50" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="384,103" group="n55_pzuc">
|
||||
<Button controller="round" page="2"/>
|
||||
</component>
|
||||
<text id="n51_pzuc" name="n51" xy="474,100" size="386,72" group="n55_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="16局(房卡*6)">
|
||||
<text id="n51_pzuc" name="n51" xy="474,100" size="355,72" group="n55_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="8局(房卡*3)">
|
||||
<gearColor controller="round" pages="2" values="#51933c,#000000" default="#450f05,#000000"/>
|
||||
</text>
|
||||
<component id="n52_pzuc" name="n52" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1238,103" group="n55_pzuc">
|
||||
<Button controller="round" page="3"/>
|
||||
</component>
|
||||
<text id="n53_pzuc" name="n53" xy="1328,100" size="386,72" group="n55_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="24局(房卡*9)">
|
||||
<text id="n53_pzuc" name="n53" xy="1328,100" size="386,72" group="n55_pzuc" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="16局(房卡*6)">
|
||||
<gearColor controller="round" pages="3" values="#51933c,#000000" default="#450f05,#000000"/>
|
||||
</text>
|
||||
<image id="n54_pzuc" name="n54" src="pzuc7cx6" fileName="component/CreatePlay/Image/Line 2.png" pkg="2d9xdj6z" xy="195,183" group="n55_pzuc"/>
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<component size="1906,836" overflow="scroll" extention="Label">
|
||||
<controller name="round" pages="0,,1,,2," selected="0"/>
|
||||
<controller name="round" pages="0,,1,,2,,3," selected="0"/>
|
||||
<controller name="handcard" pages="0,,1," selected="0"/>
|
||||
<controller name="peopleNum" pages="0,,1," selected="0"/>
|
||||
<controller name="showCardNum" pages="0,,1," selected="0"/>
|
||||
|
|
@ -11,132 +11,143 @@
|
|||
<controller name="wanfa1_5" pages="0,,1," selected="0"/>
|
||||
<controller name="wanfa2_1" pages="0,,1," selected="0"/>
|
||||
<displayList>
|
||||
<text id="n49_kxhm" name="title" xy="220,0" size="134,86" group="n57_kxhm" font="ui://27vd145bh35o7im7" fontSize="66" color="#450f05" text="局数">
|
||||
<text id="n108_11mfw" name="title" xy="220,0" size="134,86" group="n114_11mfw" font="ui://27vd145bh35o7im7" fontSize="66" color="#450f05" text="局数">
|
||||
<relation target="" sidePair="right-right"/>
|
||||
</text>
|
||||
<component id="n50_kxhm" name="n50" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="384,10" group="n57_kxhm">
|
||||
<component id="n109_11mfw" name="n109" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="384,10" group="n114_11mfw">
|
||||
<Button checked="true" controller="round" page="0"/>
|
||||
</component>
|
||||
<text id="n51_kxhm" name="n51" xy="474,7" size="319,72" group="n57_kxhm" font="ui://27vd145bh35o7ill" fontSize="54" color="#51933c" text="10局(房卡*2)">
|
||||
<text id="n110_11mfw" name="n110" xy="474,7" size="355,72" group="n114_11mfw" font="ui://27vd145bh35o7ill" fontSize="54" color="#51933c" text="1局(房卡*1)">
|
||||
<gearColor controller="round" pages="0" values="#51933c,#000000" default="#450f05,#000000"/>
|
||||
</text>
|
||||
<component id="n52_kxhm" name="n52" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="921,10" group="n57_kxhm">
|
||||
<component id="n111_11mfw" name="n111" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1239,10" group="n114_11mfw">
|
||||
<Button controller="round" page="1"/>
|
||||
</component>
|
||||
<text id="n53_kxhm" name="n53" xy="1011,7" size="319,72" group="n57_kxhm" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="15卡(房卡*3)">
|
||||
<text id="n112_11mfw" name="n112" xy="1329,7" size="355,72" group="n114_11mfw" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="5局(房卡*2)">
|
||||
<gearColor controller="round" pages="1" values="#51933c,#000000" default="#450f05,#000000"/>
|
||||
</text>
|
||||
<component id="n54_kxhm" name="n54" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1458,10" group="n57_kxhm">
|
||||
<image id="n113_11mfw" name="n113" src="pzuc7cx6" fileName="component/CreatePlay/Image/Line 2.png" pkg="2d9xdj6z" xy="195,90" group="n114_11mfw" visible="false"/>
|
||||
<group id="n114_11mfw" name="roundNum" xy="195,0" size="1515,93" advanced="true"/>
|
||||
<text id="n115_11mfw" name="n115" xy="354,93" size="0,0" group="n121_11mfw" font="ui://27vd145bh35o7im7" fontSize="66" color="#450f05" text="">
|
||||
<relation target="" sidePair="right-right"/>
|
||||
</text>
|
||||
<component id="n116_11mfw" name="n116" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="384,103" group="n121_11mfw">
|
||||
<Button controller="round" page="2"/>
|
||||
</component>
|
||||
<text id="n55_kxhm" name="n55" xy="1548,7" size="319,72" group="n57_kxhm" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="20局(房卡*4)">
|
||||
<text id="n117_11mfw" name="n117" xy="474,100" size="355,72" group="n121_11mfw" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="8局(房卡*3)">
|
||||
<gearColor controller="round" pages="2" values="#51933c,#000000" default="#450f05,#000000"/>
|
||||
</text>
|
||||
<image id="n56_kxhm" name="n56" src="pzuc7cx6" fileName="component/CreatePlay/Image/Line 2.png" pkg="2d9xdj6z" xy="195,90" group="n57_kxhm"/>
|
||||
<group id="n57_kxhm" name="rpund" xy="195,0" size="1672,93" advanced="true"/>
|
||||
<text id="n58_kxhm" name="title" xy="220,93" size="134,86" group="n64_kxhm" font="ui://27vd145bh35o7im7" fontSize="66" color="#450f05" text="手牌">
|
||||
<component id="n118_11mfw" name="n118" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1238,103" group="n121_11mfw">
|
||||
<Button controller="round" page="3"/>
|
||||
</component>
|
||||
<text id="n119_11mfw" name="n119" xy="1328,100" size="386,72" group="n121_11mfw" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="16局(房卡*6)">
|
||||
<gearColor controller="round" pages="3" values="#51933c,#000000" default="#450f05,#000000"/>
|
||||
</text>
|
||||
<image id="n120_11mfw" name="n120" src="pzuc7cx6" fileName="component/CreatePlay/Image/Line 2.png" pkg="2d9xdj6z" xy="195,183" group="n121_11mfw"/>
|
||||
<group id="n121_11mfw" name="n121" xy="195,93" size="1519,93" advanced="true"/>
|
||||
<text id="n58_kxhm" name="title" xy="220,186" size="134,86" group="n64_kxhm" font="ui://27vd145bh35o7im7" fontSize="66" color="#450f05" text="手牌">
|
||||
<relation target="" sidePair="right-right"/>
|
||||
</text>
|
||||
<component id="n59_kxhm" name="n59" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="384,103" group="n64_kxhm">
|
||||
<component id="n59_kxhm" name="n59" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="384,196" group="n64_kxhm">
|
||||
<Button checked="true" controller="handcard" page="0"/>
|
||||
</component>
|
||||
<text id="n60_kxhm" name="n60" xy="474,100" size="226,72" group="n64_kxhm" font="ui://27vd145bh35o7ill" fontSize="54" color="#51933c" text="16张手牌">
|
||||
<text id="n60_kxhm" name="n60" xy="474,193" size="226,72" group="n64_kxhm" font="ui://27vd145bh35o7ill" fontSize="54" color="#51933c" text="16张手牌">
|
||||
<gearColor controller="handcard" pages="0" values="#51933c,#000000" default="#450f05,#000000"/>
|
||||
</text>
|
||||
<component id="n61_kxhm" name="n61" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1238,103" group="n64_kxhm">
|
||||
<component id="n61_kxhm" name="n61" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1238,196" group="n64_kxhm">
|
||||
<Button controller="handcard" page="1"/>
|
||||
</component>
|
||||
<text id="n62_kxhm" name="n62" xy="1328,100" size="226,72" group="n64_kxhm" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="15张手牌">
|
||||
<text id="n62_kxhm" name="n62" xy="1328,193" size="226,72" group="n64_kxhm" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="15张手牌">
|
||||
<gearColor controller="handcard" pages="1" values="#51933c,#000000" default="#450f05,#000000"/>
|
||||
</text>
|
||||
<image id="n63_kxhm" name="n63" src="pzuc7cx6" fileName="component/CreatePlay/Image/Line 2.png" pkg="2d9xdj6z" xy="195,183" group="n64_kxhm"/>
|
||||
<group id="n64_kxhm" name="handCardNum" xy="195,93" size="1515,93" advanced="true"/>
|
||||
<text id="n65_kxhm" name="title" xy="220,185" size="134,86" group="n71_kxhm" font="ui://27vd145bh35o7im7" fontSize="66" color="#450f05" text="人数">
|
||||
<image id="n63_kxhm" name="n63" src="pzuc7cx6" fileName="component/CreatePlay/Image/Line 2.png" pkg="2d9xdj6z" xy="195,276" group="n64_kxhm"/>
|
||||
<group id="n64_kxhm" name="handCardNum" xy="195,186" size="1515,93" advanced="true"/>
|
||||
<text id="n65_kxhm" name="title" xy="220,279" size="134,86" group="n71_kxhm" font="ui://27vd145bh35o7im7" fontSize="66" color="#450f05" text="人数">
|
||||
<relation target="" sidePair="right-right"/>
|
||||
</text>
|
||||
<component id="n66_kxhm" name="n66" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="384,195" group="n71_kxhm">
|
||||
<component id="n66_kxhm" name="n66" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="384,289" group="n71_kxhm">
|
||||
<Button checked="true" controller="peopleNum" page="0"/>
|
||||
</component>
|
||||
<text id="n67_kxhm" name="n67" xy="474,192" size="88,72" group="n71_kxhm" font="ui://27vd145bh35o7ill" fontSize="54" color="#51933c" text="3人">
|
||||
<text id="n67_kxhm" name="n67" xy="474,286" size="88,72" group="n71_kxhm" font="ui://27vd145bh35o7ill" fontSize="54" color="#51933c" text="3人">
|
||||
<gearColor controller="peopleNum" pages="0" values="#51933c,#000000" default="#450f05,#000000"/>
|
||||
</text>
|
||||
<component id="n68_kxhm" name="n68" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1238,195" group="n71_kxhm">
|
||||
<component id="n68_kxhm" name="n68" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1238,289" group="n71_kxhm">
|
||||
<Button controller="peopleNum" page="1"/>
|
||||
</component>
|
||||
<text id="n69_kxhm" name="n69" xy="1328,192" size="88,72" group="n71_kxhm" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="2人">
|
||||
<text id="n69_kxhm" name="n69" xy="1328,286" size="88,72" group="n71_kxhm" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="2人">
|
||||
<gearColor controller="peopleNum" pages="1" values="#51933c,#000000" default="#450f05,#000000"/>
|
||||
</text>
|
||||
<image id="n70_kxhm" name="n70" src="pzuc7cx6" fileName="component/CreatePlay/Image/Line 2.png" pkg="2d9xdj6z" xy="195,275" group="n71_kxhm"/>
|
||||
<group id="n71_kxhm" name="peopleNum" xy="195,185" size="1515,93" advanced="true"/>
|
||||
<text id="n72_kxhm" name="title" xy="220,279" size="134,86" group="n78_kxhm" font="ui://27vd145bh35o7im7" fontSize="66" color="#450f05" text="功能">
|
||||
<image id="n70_kxhm" name="n70" src="pzuc7cx6" fileName="component/CreatePlay/Image/Line 2.png" pkg="2d9xdj6z" xy="195,369" group="n71_kxhm"/>
|
||||
<group id="n71_kxhm" name="peopleNum" xy="195,279" size="1515,93" advanced="true"/>
|
||||
<text id="n72_kxhm" name="title" xy="220,372" size="134,86" group="n78_kxhm" font="ui://27vd145bh35o7im7" fontSize="66" color="#450f05" text="功能">
|
||||
<relation target="" sidePair="right-right"/>
|
||||
</text>
|
||||
<component id="n73_kxhm" name="n73" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="384,289" group="n78_kxhm">
|
||||
<component id="n73_kxhm" name="n73" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="384,382" group="n78_kxhm">
|
||||
<Button checked="true" controller="showCardNum" page="0"/>
|
||||
</component>
|
||||
<text id="n74_kxhm" name="n74" xy="474,286" size="217,72" group="n78_kxhm" font="ui://27vd145bh35o7ill" fontSize="54" color="#51933c" text="显示牌数">
|
||||
<text id="n74_kxhm" name="n74" xy="474,379" size="217,72" group="n78_kxhm" font="ui://27vd145bh35o7ill" fontSize="54" color="#51933c" text="显示牌数">
|
||||
<gearColor controller="showCardNum" pages="0" values="#51933c,#000000" default="#450f05,#000000"/>
|
||||
</text>
|
||||
<component id="n75_kxhm" name="n75" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1238,289" group="n78_kxhm">
|
||||
<component id="n75_kxhm" name="n75" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1238,382" group="n78_kxhm">
|
||||
<Button controller="showCardNum" page="1"/>
|
||||
</component>
|
||||
<text id="n76_kxhm" name="n76" xy="1328,286" size="270,72" group="n78_kxhm" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="不显示牌数">
|
||||
<text id="n76_kxhm" name="n76" xy="1328,379" size="270,72" group="n78_kxhm" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="不显示牌数">
|
||||
<gearColor controller="showCardNum" pages="1" values="#51933c,#000000" default="#450f05,#000000"/>
|
||||
</text>
|
||||
<image id="n77_kxhm" name="n77" src="pzuc7cx6" fileName="component/CreatePlay/Image/Line 2.png" pkg="2d9xdj6z" xy="195,369" group="n78_kxhm"/>
|
||||
<group id="n78_kxhm" name="showCardNum" xy="195,279" size="1515,93" advanced="true"/>
|
||||
<text id="n79_kxhm" name="title" xy="220,372" size="134,86" group="n85_kxhm" font="ui://27vd145bh35o7im7" fontSize="66" color="#450f05" text="玩法">
|
||||
<image id="n77_kxhm" name="n77" src="pzuc7cx6" fileName="component/CreatePlay/Image/Line 2.png" pkg="2d9xdj6z" xy="195,462" group="n78_kxhm"/>
|
||||
<group id="n78_kxhm" name="showCardNum" xy="195,372" size="1515,93" advanced="true"/>
|
||||
<text id="n79_kxhm" name="title" xy="220,465" size="134,86" group="n85_kxhm" font="ui://27vd145bh35o7im7" fontSize="66" color="#450f05" text="玩法">
|
||||
<relation target="" sidePair="right-right"/>
|
||||
</text>
|
||||
<component id="n80_kxhm" name="n80" src="kxhm7cx8" fileName="component/CreatePlay/Component/Multiple_choose.xml" pkg="2d9xdj6z" xy="384,382" group="n85_kxhm">
|
||||
<component id="n80_kxhm" name="n80" src="kxhm7cx8" fileName="component/CreatePlay/Component/Multiple_choose.xml" pkg="2d9xdj6z" xy="384,475" group="n85_kxhm">
|
||||
<Button controller="wanfa1_1" page="1"/>
|
||||
</component>
|
||||
<text id="n81_kxhm" name="n81" xy="474,379" size="429,72" group="n85_kxhm" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="三张、飞机可不带">
|
||||
<text id="n81_kxhm" name="n81" xy="474,472" size="429,72" group="n85_kxhm" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="三张、飞机可不带">
|
||||
<gearColor controller="wanfa1_1" pages="1" values="#51933c,#000000" default="#450f05,#000000"/>
|
||||
</text>
|
||||
<component id="n82_kxhm" name="n82" src="kxhm7cx8" fileName="component/CreatePlay/Component/Multiple_choose.xml" pkg="2d9xdj6z" xy="1238,382" group="n85_kxhm">
|
||||
<component id="n82_kxhm" name="n82" src="kxhm7cx8" fileName="component/CreatePlay/Component/Multiple_choose.xml" pkg="2d9xdj6z" xy="1238,475" group="n85_kxhm">
|
||||
<Button controller="wanfa1_2" page="1"/>
|
||||
</component>
|
||||
<text id="n83_kxhm" name="n83" xy="1328,379" size="535,72" group="n85_kxhm" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="三张、飞机可少带接完">
|
||||
<text id="n83_kxhm" name="n83" xy="1328,472" size="535,72" group="n85_kxhm" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="三张、飞机可少带接完">
|
||||
<gearColor controller="wanfa1_2" pages="0,1" values="#450f05,#000000|#51933c,#000000"/>
|
||||
</text>
|
||||
<group id="n85_kxhm" name="specialPlay1" xy="220,372" size="1643,86" advanced="true"/>
|
||||
<component id="n87_kxhm" name="n87" src="kxhm7cx8" fileName="component/CreatePlay/Component/Multiple_choose.xml" pkg="2d9xdj6z" xy="384,475" group="n92_kxhm">
|
||||
<group id="n85_kxhm" name="specialPlay1" xy="220,465" size="1643,86" advanced="true"/>
|
||||
<component id="n87_kxhm" name="n87" src="kxhm7cx8" fileName="component/CreatePlay/Component/Multiple_choose.xml" pkg="2d9xdj6z" xy="384,554" group="n92_kxhm">
|
||||
<Button controller="wanfa1_3" page="1"/>
|
||||
</component>
|
||||
<text id="n88_kxhm" name="n88" xy="474,472" size="163,72" group="n92_kxhm" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="四带三">
|
||||
<text id="n88_kxhm" name="n88" xy="474,551" size="163,72" group="n92_kxhm" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="四带三">
|
||||
<gearColor controller="wanfa1_3" pages="1" values="#51933c,#000000" default="#450f05,#000000"/>
|
||||
</text>
|
||||
<component id="n89_kxhm" name="n89" src="kxhm7cx8" fileName="component/CreatePlay/Component/Multiple_choose.xml" pkg="2d9xdj6z" xy="1238,475" group="n92_kxhm">
|
||||
<component id="n89_kxhm" name="n89" src="kxhm7cx8" fileName="component/CreatePlay/Component/Multiple_choose.xml" pkg="2d9xdj6z" xy="1238,554" group="n92_kxhm">
|
||||
<Button controller="wanfa1_4" page="1"/>
|
||||
</component>
|
||||
<text id="n90_kxhm" name="n90" xy="1328,472" size="217,72" group="n92_kxhm" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="红桃扎鸟">
|
||||
<text id="n90_kxhm" name="n90" xy="1328,551" size="217,72" group="n92_kxhm" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="红桃扎鸟">
|
||||
<gearColor controller="wanfa1_4" pages="1" values="#51933c,#000000" default="#450f05,#000000"/>
|
||||
</text>
|
||||
<group id="n92_kxhm" name="specialPlay1" xy="384,472" size="1161,72" advanced="true"/>
|
||||
<component id="n94_kxhm" name="n94" src="kxhm7cx8" fileName="component/CreatePlay/Component/Multiple_choose.xml" pkg="2d9xdj6z" xy="384,568" group="n99_kxhm">
|
||||
<group id="n92_kxhm" name="specialPlay1" xy="384,551" size="1161,72" advanced="true"/>
|
||||
<component id="n94_kxhm" name="n94" src="kxhm7cx8" fileName="component/CreatePlay/Component/Multiple_choose.xml" pkg="2d9xdj6z" xy="384,626" group="n99_kxhm">
|
||||
<Button controller="wanfa1_5" page="1"/>
|
||||
</component>
|
||||
<text id="n95_kxhm" name="n95" xy="474,565" size="354,72" group="n99_kxhm" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="首局黑桃3必出">
|
||||
<text id="n95_kxhm" name="n95" xy="474,623" size="354,72" group="n99_kxhm" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="首局黑桃3必出">
|
||||
<gearColor controller="wanfa1_5" pages="0,1" values="#450f05,#000000|#51933c,#000000"/>
|
||||
</text>
|
||||
<component id="n96_kxhm" name="n96" src="kxhm7cx8" fileName="component/CreatePlay/Component/Multiple_choose.xml" pkg="2d9xdj6z" xy="1188,568" group="n99_kxhm" visible="false"/>
|
||||
<text id="n97_kxhm" name="n97" xy="1278,565" size="217,72" group="n99_kxhm" visible="false" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="五个字啦"/>
|
||||
<image id="n98_kxhm" name="n98" src="pzuc7cx6" fileName="component/CreatePlay/Image/Line 2.png" pkg="2d9xdj6z" xy="195,648" group="n99_kxhm"/>
|
||||
<group id="n99_kxhm" name="specialPlay1" xy="195,565" size="1515,86" advanced="true"/>
|
||||
<text id="n100_kxhm" name="title" xy="220,651" size="134,86" group="n106_kxhm" font="ui://27vd145bh35o7im7" fontSize="66" color="#450f05" text="特殊">
|
||||
<component id="n96_kxhm" name="n96" src="kxhm7cx8" fileName="component/CreatePlay/Component/Multiple_choose.xml" pkg="2d9xdj6z" xy="1188,626" group="n99_kxhm" visible="false"/>
|
||||
<text id="n97_kxhm" name="n97" xy="1278,623" size="217,72" group="n99_kxhm" visible="false" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="五个字啦"/>
|
||||
<image id="n98_kxhm" name="n98" src="pzuc7cx6" fileName="component/CreatePlay/Image/Line 2.png" pkg="2d9xdj6z" xy="195,706" group="n99_kxhm"/>
|
||||
<group id="n99_kxhm" name="specialPlay1" xy="195,623" size="1515,86" advanced="true"/>
|
||||
<text id="n100_kxhm" name="title" xy="220,709" size="134,86" group="n106_kxhm" font="ui://27vd145bh35o7im7" fontSize="66" color="#450f05" text="特殊">
|
||||
<relation target="" sidePair="right-right"/>
|
||||
</text>
|
||||
<component id="n101_kxhm" name="n101" src="kxhm7cx8" fileName="component/CreatePlay/Component/Multiple_choose.xml" pkg="2d9xdj6z" xy="384,661" group="n106_kxhm">
|
||||
<component id="n101_kxhm" name="n101" src="kxhm7cx8" fileName="component/CreatePlay/Component/Multiple_choose.xml" pkg="2d9xdj6z" xy="384,719" group="n106_kxhm">
|
||||
<Button controller="wanfa2_1" page="1"/>
|
||||
</component>
|
||||
<text id="n102_kxhm" name="n102" xy="474,658" size="874,72" group="n106_kxhm" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="只出一张加扣10分,出2-3张加扣5分">
|
||||
<text id="n102_kxhm" name="n102" xy="474,716" size="874,72" group="n106_kxhm" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="只出一张加扣10分,出2-3张加扣5分">
|
||||
<gearColor controller="wanfa2_1" pages="1" values="#51933c,#000000" default="#450f05,#000000"/>
|
||||
</text>
|
||||
<component id="n103_kxhm" name="n103" src="kxhm7cx8" fileName="component/CreatePlay/Component/Multiple_choose.xml" pkg="2d9xdj6z" xy="1188,661" group="n106_kxhm" visible="false"/>
|
||||
<text id="n104_kxhm" name="n104" xy="1278,658" size="217,72" group="n106_kxhm" visible="false" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="五个字啦"/>
|
||||
<image id="n105_kxhm" name="n105" src="pzuc7cx6" fileName="component/CreatePlay/Image/Line 2.png" pkg="2d9xdj6z" xy="195,741" group="n106_kxhm"/>
|
||||
<group id="n106_kxhm" name="specialPlay2" xy="195,651" size="1515,93" advanced="true"/>
|
||||
<component id="n107_ofwa" name="com_editSetting" src="f8c37d65" fileName="component/CreatePlay/Component/com_editSetting.xml" pkg="2d9xdj6z" xy="0,742"/>
|
||||
<component id="n103_kxhm" name="n103" src="kxhm7cx8" fileName="component/CreatePlay/Component/Multiple_choose.xml" pkg="2d9xdj6z" xy="1188,719" group="n106_kxhm" visible="false"/>
|
||||
<text id="n104_kxhm" name="n104" xy="1278,716" size="217,72" group="n106_kxhm" visible="false" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="五个字啦"/>
|
||||
<image id="n105_kxhm" name="n105" src="pzuc7cx6" fileName="component/CreatePlay/Image/Line 2.png" pkg="2d9xdj6z" xy="195,799" group="n106_kxhm"/>
|
||||
<group id="n106_kxhm" name="specialPlay2" xy="195,709" size="1515,93" advanced="true"/>
|
||||
<component id="n107_ofwa" name="com_editSetting" src="f8c37d65" fileName="component/CreatePlay/Component/com_editSetting.xml" pkg="2d9xdj6z" xy="0,802"/>
|
||||
</displayList>
|
||||
</component>
|
||||
|
|
@ -0,0 +1,47 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<component size="1272,750">
|
||||
<controller name="type" pages="0,,1," selected="0">
|
||||
<remark page="0" value="设置密码"/>
|
||||
<remark page="1" value="修改密码"/>
|
||||
</controller>
|
||||
<displayList>
|
||||
<image id="n23_n6ku" name="n23" src="n6kub7jhi" fileName="images/pop_oneInput/bg(1).png" xy="12,45" size="1247,704" group="n15_ivty"/>
|
||||
<image id="n24_n6ku" name="n24" src="n6kub7jhj" fileName="images/pop_oneInput/title_top(1).png" xy="0,0" size="1272,128" group="n15_ivty"/>
|
||||
<image id="n25_11mfw" name="n25" src="11mfwb7ji8" fileName="component/PasswordSet/Image/设置密码.png" xy="504,17" group="n15_ivty">
|
||||
<gearDisplay controller="type" pages="0"/>
|
||||
</image>
|
||||
<image id="n26_11mfw" name="n26" src="11mfwb7ji9" fileName="component/PasswordSet/Image/修改密码.png" xy="504,17" group="n15_ivty">
|
||||
<gearDisplay controller="type" pages="1"/>
|
||||
</image>
|
||||
<group id="n15_ivty" name="bg" xy="0,0" size="1272,749"/>
|
||||
<text id="n27_11mfw" name="title" xy="52,173" size="289,72" group="n31_11mfw" font="Arial" fontSize="54" color="#111111" text="输入旧密码:"/>
|
||||
<graph id="n28_11mfw" name="my_input_bg" xy="364,168" size="720,84" group="n30_11mfw" type="rect" lineColor="#ffa06640" fillColor="#ffa06640" corner="18"/>
|
||||
<text id="n29_11mfw" name="my_input" xy="380,174" size="686,72" group="n30_11mfw" font="Arial" fontSize="42" color="#111111" vAlign="middle" autoSize="none" text="" input="true" prompt="请输入手机号码"/>
|
||||
<group id="n30_11mfw" name="input" xy="364,168" size="720,84" group="n31_11mfw"/>
|
||||
<group id="n31_11mfw" name="myPsw" xy="52,168" size="1032,84" advanced="true">
|
||||
<gearDisplay controller="type" pages="1"/>
|
||||
</group>
|
||||
<text id="n3_ivty" name="title" xy="106,193" size="235,72" group="n12_ivty" font="Arial" fontSize="54" color="#111111" text="输入密码:">
|
||||
<gearText controller="type" pages="0" values="输入密码:" default="输入新密码:"/>
|
||||
</text>
|
||||
<graph id="n4_ivty" name="phone_input_bg" xy="364,188" size="720,84" group="n11_ivty" type="rect" lineColor="#ffa06640" fillColor="#ffa06640" corner="18"/>
|
||||
<text id="n8_ivty" name="phone_input" xy="380,194" size="686,72" group="n11_ivty" font="Arial" fontSize="42" color="#111111" vAlign="middle" autoSize="none" text="" input="true" prompt="请输入密码" password="true"/>
|
||||
<group id="n11_ivty" name="input" xy="364,188" size="720,84" group="n12_ivty" advanced="true">
|
||||
<relation target="n3_ivty" sidePair="left-right"/>
|
||||
</group>
|
||||
<group id="n12_ivty" name="phone" xy="106,188" size="978,84" advanced="true">
|
||||
<gearXY controller="type" pages="0,1" values="106,188|54,294"/>
|
||||
</group>
|
||||
<text id="n5_ivty" name="title" xy="106,340" size="235,72" group="n14_ivty" font="Arial" fontSize="54" color="#111111" text="确认密码:"/>
|
||||
<graph id="n6_ivty" name="code_input_bg" xy="359,334" size="720,84" group="n13_ivty" type="rect" lineColor="#ffa06640" fillColor="#ffa06640" corner="18"/>
|
||||
<text id="n9_ivty" name="code_input" xy="374,340" size="689,72" group="n13_ivty" font="Arial" fontSize="42" color="#111111" vAlign="middle" autoSize="none" text="" input="true" prompt="请再次输入密码" password="true"/>
|
||||
<group id="n13_ivty" name="input" xy="359,334" size="720,84" group="n14_ivty"/>
|
||||
<group id="n14_ivty" name="code" xy="106,334" size="973,84" advanced="true">
|
||||
<gearXY controller="type" pages="1" values="106,420" default="106,334"/>
|
||||
</group>
|
||||
<component id="n20_ivty" name="btn_close" src="n6kub7jhl" fileName="component/phone_login/component/btn_close.xml" xy="1148,8" size="106,94"/>
|
||||
<component id="n21_ivty" name="btn_login" src="n6kub7jhn" fileName="component/phone_login/component/btn_login.xml" xy="432,500">
|
||||
<gearXY controller="type" pages="0" values="432,500" default="432,541"/>
|
||||
</component>
|
||||
</displayList>
|
||||
</component>
|
||||
|
|
@ -1,11 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<component size="1906,600">
|
||||
<controller name="cGps" homePageType="specific" homePage="1" pages="2,,0,,1," selected="2"/>
|
||||
<controller name="cGps" homePageType="specific" homePage="1" pages="2,,0,,1," selected="0"/>
|
||||
<controller name="cTuoguan" pages="0,,1,,2,,3," selected="0"/>
|
||||
<controller name="cJiesan" pages="0,,1,,2,,3," selected="0"/>
|
||||
<controller name="cGongneng" pages="0,,1," selected="0"/>
|
||||
<controller name="cChat" pages="0,,1," selected="0"/>
|
||||
<controller name="cMisslie" pages="0,,1," selected="0"/>
|
||||
<controller name="oneRound" pages="0,,1," selected="1"/>
|
||||
<displayList>
|
||||
<text id="n0_f8c3" name="n0" xy="220,0" size="134,86" group="n6_f8c3" font="ui://27vd145bh35o7im7" fontSize="66" color="#450f05" text="定位">
|
||||
<relation target="" sidePair="right-right"/>
|
||||
|
|
@ -17,15 +18,15 @@
|
|||
<gearColor controller="cGps" pages="2,1" values="#450f05,#000000|#450f05,#000000" default="#51933c,#000000"/>
|
||||
</text>
|
||||
<component id="n3_f8c3" name="n3" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" xy="383,10" size="66,66" group="n6_f8c3">
|
||||
<Button checked="true" controller="cGps" page="1"/>
|
||||
<Button controller="cGps" page="1"/>
|
||||
</component>
|
||||
<text id="n4_f8c3" name="n4" xy="473,7" size="270,72" group="n6_f8c3" font="ui://27vd145bh35o7ill" fontSize="54" color="#51933c" text="限制不距离">
|
||||
<text id="n4_f8c3" name="n4" xy="473,7" size="270,72" group="n6_f8c3" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="限制不距离">
|
||||
<gearColor controller="cGps" pages="1" values="#51933c,#000000" default="#450f05,#000000"/>
|
||||
</text>
|
||||
<component id="n7_f8c3" name="n7" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" xy="1326,10" size="66,66" group="n6_f8c3">
|
||||
<Button controller="cGps" page="2"/>
|
||||
<Button checked="true" controller="cGps" page="2"/>
|
||||
</component>
|
||||
<text id="n8_f8c3" name="n8" xy="1416,7" size="363,72" group="n6_f8c3" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="限制距离100米">
|
||||
<text id="n8_f8c3" name="n8" xy="1416,7" size="363,72" group="n6_f8c3" font="ui://27vd145bh35o7ill" fontSize="54" color="#51933c" text="限制距离100米">
|
||||
<gearColor controller="cGps" pages="2" values="#51933c,#000000" default="#450f05,#000000"/>
|
||||
</text>
|
||||
<image id="n5_f8c3" name="n5" src="pzuc7cx6" fileName="component/CreatePlay/Image/Line 2.png" xy="195,90" size="1515,3" group="n6_f8c3"/>
|
||||
|
|
@ -87,23 +88,27 @@
|
|||
<gearColor controller="cJiesan" pages="3" values="#51933c,#000000" default="#450f05,#000000"/>
|
||||
</text>
|
||||
<image id="n14_f8c3" name="n14" src="pzuc7cx6" fileName="component/CreatePlay/Image/Line 2.png" xy="195,472" size="1515,3" group="n15_f8c3"/>
|
||||
<group id="n15_f8c3" name="jiesan" xy="195,279" size="1721,196" advanced="true"/>
|
||||
<text id="n31_f8c3" name="n31" xy="220,475" size="134,86" group="n37_f8c3" font="ui://27vd145bh35o7im7" fontSize="66" color="#450f05" text="功能">
|
||||
<group id="n15_f8c3" name="jiesan" xy="195,279" size="1721,196" advanced="true">
|
||||
<gearDisplay controller="oneRound" pages="0"/>
|
||||
</group>
|
||||
<text id="n31_f8c3" name="n31" xy="220,281" size="134,86" group="n37_f8c3" font="ui://27vd145bh35o7im7" fontSize="66" color="#450f05" text="功能">
|
||||
<relation target="" sidePair="right-right"/>
|
||||
</text>
|
||||
<component id="n38_f8c3" name="n38" src="kxhm7cx8" fileName="component/CreatePlay/Component/Multiple_choose.xml" xy="384,485" group="n37_f8c3">
|
||||
<component id="n38_f8c3" name="n38" src="kxhm7cx8" fileName="component/CreatePlay/Component/Multiple_choose.xml" xy="384,291" group="n37_f8c3">
|
||||
<Button controller="cChat" page="1"/>
|
||||
</component>
|
||||
<text id="n33_f8c3" name="n33" xy="474,482" size="376,72" group="n37_f8c3" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="不允许快捷聊天">
|
||||
<text id="n33_f8c3" name="n33" xy="474,288" size="376,72" group="n37_f8c3" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="不允许快捷聊天">
|
||||
<gearColor controller="cChat" pages="0" values="#450f05,#000000" default="#51933c,#000000"/>
|
||||
</text>
|
||||
<component id="n39_f8c3" name="n39" src="kxhm7cx8" fileName="component/CreatePlay/Component/Multiple_choose.xml" xy="1238,485" group="n37_f8c3">
|
||||
<component id="n39_f8c3" name="n39" src="kxhm7cx8" fileName="component/CreatePlay/Component/Multiple_choose.xml" xy="1238,291" group="n37_f8c3">
|
||||
<Button controller="cMisslie" page="1"/>
|
||||
</component>
|
||||
<text id="n35_f8c3" name="n35" xy="1328,482" size="323,72" group="n37_f8c3" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="关闭互动表情">
|
||||
<text id="n35_f8c3" name="n35" xy="1328,288" size="323,72" group="n37_f8c3" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="关闭互动表情">
|
||||
<gearColor controller="cMisslie" pages="1" values="#51933c,#000000" default="#450f05,#000000"/>
|
||||
</text>
|
||||
<image id="n36_f8c3" name="n36" src="pzuc7cx6" fileName="component/CreatePlay/Image/Line 2.png" xy="195,565" size="1515,3" group="n37_f8c3"/>
|
||||
<group id="n37_f8c3" name="gongneng" xy="195,475" size="1515,93" advanced="true"/>
|
||||
<image id="n36_f8c3" name="n36" src="pzuc7cx6" fileName="component/CreatePlay/Image/Line 2.png" xy="195,371" size="1515,3" group="n37_f8c3"/>
|
||||
<group id="n37_f8c3" name="gongneng" xy="195,281" size="1515,93" advanced="true">
|
||||
<gearXY controller="oneRound" pages="1" values="195,281" default="195,475"/>
|
||||
</group>
|
||||
</displayList>
|
||||
</component>
|
||||
|
After Width: | Height: | Size: 29 KiB |
|
After Width: | Height: | Size: 26 KiB |
|
|
@ -1,8 +1,14 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<component size="204,69" pivot="0.5,0.5" extention="Button">
|
||||
<controller name="button" pages="0,up,1,down,2,over,3,selectedOver" selected="0"/>
|
||||
<controller name="type" pages="0,,1," selected="0"/>
|
||||
<displayList>
|
||||
<image id="n4_66fw" name="n4" src="n6kub7jhg" fileName="component/PlayerInfo/Image/Frame 45.png" xy="0,0" size="204,69">
|
||||
<image id="n4_66fw" name="n4" src="11mfwb7jia" fileName="component/PlayerInfo/Image/Frame 48.png" xy="0,0" size="204,69">
|
||||
<gearDisplay controller="type" pages="0"/>
|
||||
<relation target="" sidePair="width-width,height-height"/>
|
||||
</image>
|
||||
<image id="n5_11mfw" name="n5" src="11mfwb7jib" fileName="component/PlayerInfo/Image/Frame 49.png" xy="0,0" size="204,69">
|
||||
<gearDisplay controller="type" pages="1"/>
|
||||
<relation target="" sidePair="width-width,height-height"/>
|
||||
</image>
|
||||
</displayList>
|
||||
|
|
|
|||
|
After Width: | Height: | Size: 40 KiB |
|
After Width: | Height: | Size: 40 KiB |
|
|
@ -749,6 +749,11 @@
|
|||
<image id="xpp2b7ji4" name="hall_club_common_tittle_icon1.png" path="/component/Main/Image/"/>
|
||||
<image id="xpp2b7ji5" name="bg_main1.png" path="/component/Main/Image/" atlas="alone"/>
|
||||
<image id="xpp2b7ji6" name="bg_main2.png" path="/component/Main/Image/" atlas="alone"/>
|
||||
<component id="11mfwb7ji7" name="PasswordSet.xml" path="/" exported="true"/>
|
||||
<image id="11mfwb7ji8" name="设置密码.png" path="/component/PasswordSet/Image/"/>
|
||||
<image id="11mfwb7ji9" name="修改密码.png" path="/component/PasswordSet/Image/"/>
|
||||
<image id="11mfwb7jia" name="Frame 48.png" path="/component/PlayerInfo/Image/"/>
|
||||
<image id="11mfwb7jib" name="Frame 49.png" path="/component/PlayerInfo/Image/"/>
|
||||
</resources>
|
||||
<publish name="Lobby" path="..\wb_unity_pro\Assets\ART\base\lobby\ui" packageCount="2">
|
||||
<atlas name="默认" index="0"/>
|
||||
|
|
|
|||
|
|
@ -0,0 +1,21 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<component size="1272,750">
|
||||
<displayList>
|
||||
<image id="n23_n6ku" name="n23" src="n6ku7ckn" fileName="images/pop_oneInput/bg.png" xy="12,45" size="1247,704" group="n15_ivty"/>
|
||||
<image id="n24_n6ku" name="n24" src="n6ku7cko" fileName="images/pop_oneInput/title_top.png" xy="0,0" size="1272,128" group="n15_ivty"/>
|
||||
<group id="n15_ivty" name="bg" xy="0,0" size="1272,749"/>
|
||||
<text id="n3_ivty" name="title" xy="216,203" size="127,72" group="n12_ivty" font="Arial" fontSize="54" color="#111111" text="账号:"/>
|
||||
<graph id="n4_ivty" name="phone_input_bg" xy="359,198" size="720,84" group="n11_ivty" type="rect" lineColor="#ffa06640" fillColor="#ffa06640" corner="18"/>
|
||||
<text id="n8_ivty" name="phone_input" xy="375,204" size="686,72" group="n11_ivty" font="Arial" fontSize="42" color="#111111" vAlign="middle" autoSize="none" text="" input="true" prompt="请输入ID"/>
|
||||
<group id="n11_ivty" name="input" xy="359,198" size="720,84" group="n12_ivty"/>
|
||||
<group id="n12_ivty" name="phone" xy="216,198" size="863,84"/>
|
||||
<text id="n5_ivty" name="title" xy="216,330" size="127,72" group="n14_ivty" font="Arial" fontSize="54" color="#111111" text="密码:"/>
|
||||
<graph id="n6_ivty" name="code_input_bg" xy="359,324" size="720,84" group="n13_ivty" type="rect" lineColor="#ffa06640" fillColor="#ffa06640" corner="18"/>
|
||||
<text id="n9_ivty" name="tex_passwd" xy="374,330" size="689,72" group="n13_ivty" font="Arial" fontSize="42" color="#111111" vAlign="middle" autoSize="none" text="" input="true" prompt="请输入密码" password="true"/>
|
||||
<group id="n13_ivty" name="input" xy="359,324" size="720,84" group="n14_ivty"/>
|
||||
<group id="n14_ivty" name="code" xy="216,324" size="863,84" advanced="true"/>
|
||||
<component id="n20_ivty" name="btn_close" src="ivty7ckd" fileName="component/phone_login/component/btn_close.xml" xy="1148,8" size="106,94"/>
|
||||
<component id="n21_ivty" name="btn_login" src="ivty7cke" fileName="component/phone_login/component/btn_login.xml" xy="432,495"/>
|
||||
<image id="n25_11mfw" name="n25" src="11mfw7cks" fileName="component/id_login/image/登录.png" xy="567,17"/>
|
||||
</displayList>
|
||||
</component>
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
<component size="2532,1170" designImageAlpha="0" bgColorEnabled="true">
|
||||
<controller name="test" pages="0,,1," selected="0"/>
|
||||
<controller name="agree" exported="true" pages="0,,1," selected="0"/>
|
||||
<controller name="xieyi" pages="0,,1," selected="1"/>
|
||||
<controller name="xieyi" pages="0,,1," selected="0"/>
|
||||
<displayList>
|
||||
<image id="n89_z7hi" name="n89" src="z7hi7cjl" fileName="bg/loggin_bg.png" pkg="27vd145b" xy="0,0">
|
||||
<relation target="" sidePair="width-width,height-height,left-left,top-top"/>
|
||||
|
|
@ -10,7 +10,7 @@
|
|||
<image id="n74_xn94" name="n74" src="xn9417" fileName="hall_girl_bg@2x.png" pkg="0khx14ar" xy="718,247">
|
||||
<relation target="" sidePair="width-width%,height-height%,center-center,top-top%"/>
|
||||
</image>
|
||||
<component id="n77_9q7v" name="btn_phone_code" src="9q7vcir" fileName="component/main/component/Btn_phone.xml" xy="1362,720" size="654,165" group="n27"/>
|
||||
<component id="n77_9q7v" name="btn_id" src="11mfw7ckt" fileName="component/main/component/Btn_id.xml" xy="1362,720" size="654,165" group="n27"/>
|
||||
<component id="n78_9q7v" name="btn_wx" src="9q7vciq" fileName="component/main/component/Btn_wx.xml" xy="516,720" group="n27">
|
||||
<relation target="" sidePair=""/>
|
||||
</component>
|
||||
|
|
|
|||
|
After Width: | Height: | Size: 105 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<component size="654,165" pivot="0.5,0.5" extention="Button">
|
||||
<controller name="button" pages="0,up,1,down,2,over,3,selectedOver" selected="0"/>
|
||||
<displayList>
|
||||
<image id="n7_fuc9" name="n7" src="11mfw7cku" fileName="component/main/image/Group 16.png" xy="-6,-9"/>
|
||||
</displayList>
|
||||
<Button downEffect="scale" downEffectValue="0.8"/>
|
||||
</component>
|
||||
|
After Width: | Height: | Size: 106 KiB |
|
|
@ -45,6 +45,11 @@
|
|||
<image id="n6ku7ckn" name="bg.png" path="/images/pop_oneInput/" scale="9grid" scale9grid="14,135,28,270"/>
|
||||
<image id="n6ku7cko" name="title_top.png" path="/images/pop_oneInput/" scale="9grid" scale9grid="160,22,320,44"/>
|
||||
<image id="qlvw7ckp" name="Frame 46.png" path="/component/phone_login/image/"/>
|
||||
<component id="11mfw7ckq" name="IDLogin.xml" path="/" exported="true"/>
|
||||
<image id="11mfw7ckr" name="Group 16.png" path="/component/id_login/image/"/>
|
||||
<image id="11mfw7cks" name="登录.png" path="/component/id_login/image/"/>
|
||||
<component id="11mfw7ckt" name="Btn_id.xml" path="/component/main/component/"/>
|
||||
<image id="11mfw7cku" name="Group 16.png" path="/component/main/image/"/>
|
||||
</resources>
|
||||
<publish name="Login" path="..\wb_unity_pro\Assets\ART\base\login\ui" packageCount="2" maxAtlasSize="2048">
|
||||
<atlas name="按钮" index="0"/>
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<component size="91,94">
|
||||
<controller name="jing" pages="0,,1," selected="0"/>
|
||||
<controller name="jing" pages="0,,1," selected="1"/>
|
||||
<displayList>
|
||||
<loader id="n0_gi99" name="icon" xy="0,0" size="91,94" url="ui://Main_Majiang/b201_0" align="center" vAlign="middle" fill="scaleFree">
|
||||
<relation target="" sidePair="width-width,height-height"/>
|
||||
</loader>
|
||||
<image id="n1_g9ft" name="jing" src="ofwa1gm" fileName="Main_new/Main/Image/jing.png" xy="32,-8" size="55,78" aspect="true">
|
||||
<image id="n1_g9ft" name="jing" src="ofwa1gm" fileName="Main_new/Main/Image/jing.png" xy="32,5" size="55,78" aspect="true">
|
||||
<gearDisplay controller="jing" pages="1"/>
|
||||
<relation target="" sidePair="width-width%,height-height%,right-right%,top-top%"/>
|
||||
</image>
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 3.1 MiB After Width: | Height: | Size: 4.0 MiB |
|
Before Width: | Height: | Size: 3.8 MiB After Width: | Height: | Size: 964 KiB |
|
Before Width: | Height: | Size: 1.7 MiB After Width: | Height: | Size: 1.8 MiB |
|
Before Width: | Height: | Size: 2.0 MiB After Width: | Height: | Size: 1.0 MiB |
|
Before Width: | Height: | Size: 1.1 MiB After Width: | Height: | Size: 1.4 MiB |
|
Before Width: | Height: | Size: 1.2 MiB After Width: | Height: | Size: 955 KiB |
|
After Width: | Height: | Size: 1.6 MiB |
|
|
@ -0,0 +1,92 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 09fe1432b0c4b2c44b95b99916003e5c
|
||||
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: base/lobby/4a425335ab0e1c246f741e6da62b244f
|
||||
assetBundleVariant:
|
||||
|
Before Width: | Height: | Size: 1.5 MiB After Width: | Height: | Size: 3.9 MiB |
|
Before Width: | Height: | Size: 3.8 MiB After Width: | Height: | Size: 2.5 MiB |
|
Before Width: | Height: | Size: 1.4 MiB After Width: | Height: | Size: 3.1 MiB |
|
Before Width: | Height: | Size: 938 KiB After Width: | Height: | Size: 1.4 MiB |
|
Before Width: | Height: | Size: 2.3 MiB After Width: | Height: | Size: 1.7 MiB |
|
Before Width: | Height: | Size: 838 KiB After Width: | Height: | Size: 722 KiB |
|
Before Width: | Height: | Size: 1.5 MiB After Width: | Height: | Size: 819 KiB |
|
Before Width: | Height: | Size: 1.4 MiB After Width: | Height: | Size: 1.2 MiB |
|
Before Width: | Height: | Size: 1.1 MiB After Width: | Height: | Size: 1.1 MiB |
|
|
@ -1,41 +1,41 @@
|
|||
[
|
||||
{
|
||||
"ver": "1.0.54",
|
||||
"ver": "1.0.55",
|
||||
"name": "跑得快",
|
||||
"check": true,
|
||||
"version": "1.0.54",
|
||||
"version": "1.0.55",
|
||||
"game_id": "66",
|
||||
"bundle": "extend/poker/runfast"
|
||||
},
|
||||
{
|
||||
"ver": "1.0.77",
|
||||
"ver": "1.0.78",
|
||||
"name": "南城麻将",
|
||||
"check": true,
|
||||
"version": "1.0.77",
|
||||
"version": "1.0.78",
|
||||
"game_id": "86",
|
||||
"bundle": "extend/majiang/nancheng"
|
||||
},
|
||||
{
|
||||
"ver": "1.0.82",
|
||||
"ver": "1.0.83",
|
||||
"name": "黎川麻将",
|
||||
"check": true,
|
||||
"version": "1.0.82",
|
||||
"version": "1.0.83",
|
||||
"game_id": "87",
|
||||
"bundle": "extend/majiang/lichuan"
|
||||
},
|
||||
{
|
||||
"ver": "1.0.64",
|
||||
"ver": "1.0.65",
|
||||
"name": "金溪麻将",
|
||||
"check": true,
|
||||
"version": "1.0.64",
|
||||
"version": "1.0.65",
|
||||
"game_id": "88",
|
||||
"bundle": "extend/majiang/jinxi"
|
||||
},
|
||||
{
|
||||
"ver": "1.0.63",
|
||||
"ver": "1.0.64",
|
||||
"name": "抚州麻将",
|
||||
"check": true,
|
||||
"version": "1.0.63",
|
||||
"version": "1.0.64",
|
||||
"game_id": "89",
|
||||
"bundle": "extend/majiang/fuzhou"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,39 +1,39 @@
|
|||
[
|
||||
{
|
||||
"lua_path": "/tolua_project,/base_project,/main_project",
|
||||
"ver": "1.0.7",
|
||||
"ver": "1.0.8",
|
||||
"name": "base_script",
|
||||
"check": true,
|
||||
"bundle": "base/base_script",
|
||||
"version": "1.0.7"
|
||||
"version": "1.0.8"
|
||||
},
|
||||
{
|
||||
"ver": "1.0.6",
|
||||
"ver": "1.0.7",
|
||||
"name": "common",
|
||||
"check": true,
|
||||
"bundle": "base/common",
|
||||
"version": "1.0.6"
|
||||
"version": "1.0.7"
|
||||
},
|
||||
{
|
||||
"ver": "1.0.6",
|
||||
"ver": "1.0.7",
|
||||
"name": "login",
|
||||
"check": true,
|
||||
"bundle": "base/login",
|
||||
"version": "1.0.6"
|
||||
"version": "1.0.7"
|
||||
},
|
||||
{
|
||||
"ver": "1.0.6",
|
||||
"ver": "1.0.7",
|
||||
"name": "lobby",
|
||||
"check": true,
|
||||
"bundle": "base/lobby",
|
||||
"version": "1.0.6"
|
||||
"version": "1.0.7"
|
||||
},
|
||||
{
|
||||
"ver": "1.0.6",
|
||||
"ver": "1.0.7",
|
||||
"name": "Family",
|
||||
"check": true,
|
||||
"bundle": "base/Family",
|
||||
"version": "1.0.6"
|
||||
"version": "1.0.7"
|
||||
},
|
||||
{
|
||||
"ver": "1.0.6",
|
||||
|
|
@ -57,10 +57,10 @@
|
|||
"bundle": "base/rank"
|
||||
},
|
||||
{
|
||||
"ver": "1.0.6",
|
||||
"ver": "1.0.7",
|
||||
"name": "main_majiang",
|
||||
"check": true,
|
||||
"version": "1.0.6",
|
||||
"version": "1.0.7",
|
||||
"bundle": "base/main_majiang"
|
||||
},
|
||||
{
|
||||
|
|
|
|||
|
|
@ -0,0 +1,109 @@
|
|||
[
|
||||
{
|
||||
"lua_path": "/tolua_project,/base_project,/main_project",
|
||||
"ver": "1.0.8",
|
||||
"name": "base_script",
|
||||
"check": true,
|
||||
"bundle": "base/base_script",
|
||||
"version": "1.0.8"
|
||||
},
|
||||
{
|
||||
"ver": "1.0.7",
|
||||
"name": "common",
|
||||
"check": true,
|
||||
"bundle": "base/common",
|
||||
"version": "1.0.7"
|
||||
},
|
||||
{
|
||||
"ver": "1.0.7",
|
||||
"name": "login",
|
||||
"check": true,
|
||||
"bundle": "base/login",
|
||||
"version": "1.0.7"
|
||||
},
|
||||
{
|
||||
"ver": "1.0.7",
|
||||
"name": "lobby",
|
||||
"check": true,
|
||||
"bundle": "base/lobby",
|
||||
"version": "1.0.7"
|
||||
},
|
||||
{
|
||||
"ver": "1.0.7",
|
||||
"name": "Family",
|
||||
"check": true,
|
||||
"bundle": "base/Family",
|
||||
"version": "1.0.7"
|
||||
},
|
||||
{
|
||||
"ver": "1.0.6",
|
||||
"name": "chat",
|
||||
"check": true,
|
||||
"bundle": "base/chat",
|
||||
"version": "1.0.6"
|
||||
},
|
||||
{
|
||||
"ver": "1.0.6",
|
||||
"name": "newgroup",
|
||||
"check": true,
|
||||
"bundle": "base/newgroup",
|
||||
"version": "1.0.6"
|
||||
},
|
||||
{
|
||||
"ver": "1.0.6",
|
||||
"name": "rank",
|
||||
"check": true,
|
||||
"version": "1.0.6",
|
||||
"bundle": "base/rank"
|
||||
},
|
||||
{
|
||||
"ver": "1.0.7",
|
||||
"name": "main_majiang",
|
||||
"check": true,
|
||||
"version": "1.0.7",
|
||||
"bundle": "base/main_majiang"
|
||||
},
|
||||
{
|
||||
"ver": "1.0.6",
|
||||
"name": "main_poker",
|
||||
"check": true,
|
||||
"version": "1.0.6",
|
||||
"bundle": "base/main_poker"
|
||||
},
|
||||
{
|
||||
"ver": "1.0.6",
|
||||
"name": "main_zipai",
|
||||
"check": true,
|
||||
"version": "1.0.6",
|
||||
"bundle": "base/main_zipai"
|
||||
},
|
||||
{
|
||||
"ver": "1.0.6",
|
||||
"name": "static",
|
||||
"check": true,
|
||||
"bundle": "base/static",
|
||||
"version": "1.0.6"
|
||||
},
|
||||
{
|
||||
"ver": "1.0.6",
|
||||
"is_res": true,
|
||||
"name": "embed",
|
||||
"check": true,
|
||||
"bundle": "base/embed",
|
||||
"version": "1.0.6"
|
||||
},
|
||||
{
|
||||
"ver": "1.0.6",
|
||||
"name": "main_pokemajiang",
|
||||
"check": true,
|
||||
"version": "1.0.6",
|
||||
"bundle": "base/main_pokemajiang"
|
||||
},
|
||||
{
|
||||
"ver": "1.0.6",
|
||||
"name": "main_zipaimajiang",
|
||||
"check": true,
|
||||
"version": "1.0.6",
|
||||
"bundle": "base/main_zipaimajiang"
|
||||
}
|
||||
]
|
||||
|
|
@ -39,7 +39,6 @@ GraphicsSettings:
|
|||
- {fileID: 16000, guid: 0000000000000000f000000000000000, type: 0}
|
||||
- {fileID: 16001, guid: 0000000000000000f000000000000000, type: 0}
|
||||
- {fileID: 17000, guid: 0000000000000000f000000000000000, type: 0}
|
||||
- {fileID: 16003, guid: 0000000000000000f000000000000000, type: 0}
|
||||
m_PreloadedShaders: []
|
||||
m_SpritesDefaultMaterial: {fileID: 10754, guid: 0000000000000000f000000000000000,
|
||||
type: 0}
|
||||
|
|
|
|||