diff --git a/lua_probject/base_project/Game/View/ResultView.lua b/lua_probject/base_project/Game/View/ResultView.lua
index 25fedba7..9ffecc0b 100644
--- a/lua_probject/base_project/Game/View/ResultView.lua
+++ b/lua_probject/base_project/Game/View/ResultView.lua
@@ -270,8 +270,6 @@ function M:InitBigResult(room, fontsize)
local isWin = false
for i = 1, #self._resultInfo.player_list do
local player_info = self._resultInfo.player_list[i]
- printlog("player_info:")
- pt(player_info)
local total_score = room:GetTotalScore(player_info.score)
local hp_nonnegative = room:checkHpNonnegative()
player_info.total_score = 0
@@ -304,7 +302,7 @@ function M:InitBigResult(room, fontsize)
local item = player_list:AddItemFromPool()
item:GetChild('txt_name').text = player_info.nick
-
+ item:GetChild('txt_userid').text = player_info.userId
local head = item:GetChild('head'):GetChild('n4')
ImageLoad.Load(player_info.head_url, head)
diff --git a/lua_probject/extend_project/extend/poker/runfast/RunFast_PlayerSelfPokerInfoView.lua b/lua_probject/extend_project/extend/poker/runfast/RunFast_PlayerSelfPokerInfoView.lua
index d185083f..1a7acf23 100644
--- a/lua_probject/extend_project/extend/poker/runfast/RunFast_PlayerSelfPokerInfoView.lua
+++ b/lua_probject/extend_project/extend/poker/runfast/RunFast_PlayerSelfPokerInfoView.lua
@@ -837,7 +837,6 @@ end
function M:GetHandCardOffset(count)
local start = -50 ---54
-
local offset = 0
if count > 10 then
offset = start - count + 18
@@ -849,6 +848,15 @@ end
function M:GetHandCardPos(index, card_count)
local x, y = 0, -18
+
+ printlog("DataManager.CurrenRoom.cardsize:"..DataManager.CurrenRoom.cardsize)
+ if DataManager.CurrenRoom.cardsize == 0 then
+ y = -70
+ elseif DataManager.CurrenRoom.cardsize == 1 then
+ y = -50
+ elseif DataManager.CurrenRoom.cardsize == 2 then
+ y = -30
+ end
local offset = self:GetHandCardOffset(card_count)
local middle_x = self.cards_view.width / 2
local start_x = middle_x - (card_count / 2 * (self.card_width + offset)) + (offset / 2)
diff --git a/lua_probject/extend_project/extend/zipai/fanpaofa/EXRoomConfig.lua b/lua_probject/extend_project/extend/zipai/fanpaofa/EXRoomConfig.lua
index 238eeebb..fcf1a3fe 100644
--- a/lua_probject/extend_project/extend/zipai/fanpaofa/EXRoomConfig.lua
+++ b/lua_probject/extend_project/extend/zipai/fanpaofa/EXRoomConfig.lua
@@ -43,7 +43,7 @@ end
function M:GetDes(sp)
sp = sp or " "
- local str = self.round and self.round .. "局" .. sp or ""
+ local str = "百息结算局" .. sp
str = str .. RoomConfig.GetDes(self, sp)
if self.maxPlayers == 2 then
if self.qupai then
@@ -52,7 +52,7 @@ function M:GetDes(sp)
end
end
- str = str .. "娄底放炮罚 十五息起胡 明偎 天地胡 30胡翻倍 红黑胡"
+ str = str .. "娄底放炮罚 十五息起胡 明偎 天地胡 20胡100息 30胡翻倍 红黑胡"
str = str .. sp
return str
end
diff --git a/lua_probject/extend_project/extend/zipai/fanpaofa/FanPaoFa_ResultView.lua b/lua_probject/extend_project/extend/zipai/fanpaofa/FanPaoFa_ResultView.lua
index 50882da6..7c60dc88 100644
--- a/lua_probject/extend_project/extend/zipai/fanpaofa/FanPaoFa_ResultView.lua
+++ b/lua_probject/extend_project/extend/zipai/fanpaofa/FanPaoFa_ResultView.lua
@@ -904,6 +904,7 @@ function M:FillItemData2(room, data, list)
local user = room:GetPlayerBySeat(data[i].seat).self_user
local p = room:GetPlayerBySeat(data[i].seat)
player_list[i].id = user.account_id
+ player_list[i].userId = user.account_id
local total_score = data[i].total_score
player_list[i].hp_info = data[i].hp_info
player_list[i].score = total_score
@@ -963,14 +964,18 @@ function M:FillItemData2(room, data, list)
player_list[i].param[5].key = '打鸟总分:'
player_list[i].param[5].value = tostring(dncount)
+ player_list[i].param[6] = {}
+ player_list[i].param[6].key = '[u][color=#0000FF]总胡息:[/color][/u]'
+ player_list[i].param[6].value = '[u][color=#0000FF]'..tostring(data[i].total_huxi)..'[/color][/u]'
+
end
local round = room.room_config.round
self:GenerateRoomResultInfo(round, room.room_config:GetGameName(), room.room_id, room.create_time, player_list)
- self:SetGSListlineGap(5)
+ self:SetGSListlineGap(1)
-- room.room_config.isNonnegative = 0
- self:InitBigResult(room, 26)
+ self:InitBigResult(room, 30)
diff --git a/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/clearing.xml b/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/clearing.xml
index 83de0d89..1d7235ec 100644
--- a/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/clearing.xml
+++ b/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/clearing.xml
@@ -70,7 +70,7 @@
-
+
@@ -90,7 +90,7 @@
-
+
@@ -98,7 +98,7 @@
-
+
diff --git a/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/clearing_1_item.xml b/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/clearing_1_item.xml
index d723f45a..9933708e 100644
--- a/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/clearing_1_item.xml
+++ b/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/clearing_1_item.xml
@@ -20,7 +20,7 @@
-
+
diff --git a/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/image/hu_1.png b/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/image/hu_1.png
index 09694568..dcb92a95 100644
Binary files a/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/image/hu_1.png and b/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/image/hu_1.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/image/hu_10.png b/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/image/hu_10.png
index 2e8d5b5e..b8b7028e 100644
Binary files a/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/image/hu_10.png and b/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/image/hu_10.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/image/hu_11.png b/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/image/hu_11.png
index 21939038..f8631072 100644
Binary files a/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/image/hu_11.png and b/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/image/hu_11.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/image/hu_2.png b/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/image/hu_2.png
index 81d26b38..59267768 100644
Binary files a/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/image/hu_2.png and b/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/image/hu_2.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/image/hu_3.png b/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/image/hu_3.png
index c79fdd28..e84e9753 100644
Binary files a/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/image/hu_3.png and b/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/image/hu_3.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/image/hu_4.png b/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/image/hu_4.png
index fbc3dd65..0d6e5775 100644
Binary files a/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/image/hu_4.png and b/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/image/hu_4.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/image/hu_5.png b/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/image/hu_5.png
index cd3b2481..752cc0d1 100644
Binary files a/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/image/hu_5.png and b/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/image/hu_5.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/image/hu_6.png b/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/image/hu_6.png
index 8ef53d90..a9fd514b 100644
Binary files a/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/image/hu_6.png and b/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/image/hu_6.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/image/hu_7.png b/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/image/hu_7.png
index 12e03b01..cb5d788b 100644
Binary files a/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/image/hu_7.png and b/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/image/hu_7.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/image/hu_8.png b/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/image/hu_8.png
index 222bc8f8..9ea1d30a 100644
Binary files a/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/image/hu_8.png and b/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/image/hu_8.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/image/hu_9.png b/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/image/hu_9.png
index cd7d378b..3c882eca 100644
Binary files a/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/image/hu_9.png and b/wb_new_ui/assets/Extend_Poker_FanPaoFa/component/clearing/image/hu_9.png differ
diff --git a/wb_new_ui/assets/Extend_Poker_RunFastNew/component/card_info/Player_card_info_1.xml b/wb_new_ui/assets/Extend_Poker_RunFastNew/component/card_info/Player_card_info_1.xml
index dd06791c..0f5704af 100644
--- a/wb_new_ui/assets/Extend_Poker_RunFastNew/component/card_info/Player_card_info_1.xml
+++ b/wb_new_ui/assets/Extend_Poker_RunFastNew/component/card_info/Player_card_info_1.xml
@@ -1,12 +1,12 @@
-
-
+
+
-
+
diff --git a/wb_new_ui/assets/Main_RunBeard/component/Main/Main_2.xml b/wb_new_ui/assets/Main_RunBeard/component/Main/Main_2.xml
index 05882dab..57bb398e 100644
--- a/wb_new_ui/assets/Main_RunBeard/component/Main/Main_2.xml
+++ b/wb_new_ui/assets/Main_RunBeard/component/Main/Main_2.xml
@@ -2,7 +2,7 @@
-
+
@@ -35,24 +35,24 @@
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/wb_new_ui/assets/Main_RunBeard/component/Main/component/Player_card_info_1.xml b/wb_new_ui/assets/Main_RunBeard/component/Main/component/Player_card_info_1.xml
index d28bc092..a75203c4 100644
--- a/wb_new_ui/assets/Main_RunBeard/component/Main/component/Player_card_info_1.xml
+++ b/wb_new_ui/assets/Main_RunBeard/component/Main/component/Player_card_info_1.xml
@@ -3,7 +3,7 @@
-
+
@@ -52,13 +52,13 @@
-
+
-
+
-
+
diff --git a/wb_new_ui/assets/Main_RunBeard/component/clearing/big_zipai_result_item.xml b/wb_new_ui/assets/Main_RunBeard/component/clearing/big_zipai_result_item.xml
index 87e6c56b..4dc6308a 100644
--- a/wb_new_ui/assets/Main_RunBeard/component/clearing/big_zipai_result_item.xml
+++ b/wb_new_ui/assets/Main_RunBeard/component/clearing/big_zipai_result_item.xml
@@ -16,7 +16,7 @@
-
+
diff --git a/wb_new_ui/assets/Main_RunBeard/component/clearing/descript_item_zipai.xml b/wb_new_ui/assets/Main_RunBeard/component/clearing/descript_item_zipai.xml
index 886aaafe..5a2dfef1 100644
--- a/wb_new_ui/assets/Main_RunBeard/component/clearing/descript_item_zipai.xml
+++ b/wb_new_ui/assets/Main_RunBeard/component/clearing/descript_item_zipai.xml
@@ -1,7 +1,7 @@
-
+
-
-
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Main_RunBeard/component/clearing/result_zipai_main.xml b/wb_new_ui/assets/Main_RunBeard/component/clearing/result_zipai_main.xml
index 7a7084a3..89343a43 100644
--- a/wb_new_ui/assets/Main_RunBeard/component/clearing/result_zipai_main.xml
+++ b/wb_new_ui/assets/Main_RunBeard/component/clearing/result_zipai_main.xml
@@ -23,47 +23,47 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
diff --git a/wb_new_ui/assets/Main_RunBeard/component/setting/images/newsetting/Component5.xml b/wb_new_ui/assets/Main_RunBeard/component/setting/images/newsetting/Component5.xml
index 612ca0a8..fc9fdc91 100644
--- a/wb_new_ui/assets/Main_RunBeard/component/setting/images/newsetting/Component5.xml
+++ b/wb_new_ui/assets/Main_RunBeard/component/setting/images/newsetting/Component5.xml
@@ -19,7 +19,7 @@
-
+
diff --git a/wb_unity_pro_2/Library/ArtifactDB b/wb_unity_pro_2/Library/ArtifactDB
index 0a514544..0b2a46b4 100644
Binary files a/wb_unity_pro_2/Library/ArtifactDB and b/wb_unity_pro_2/Library/ArtifactDB differ
diff --git a/wb_unity_pro_2/Library/ArtifactDB-lock b/wb_unity_pro_2/Library/ArtifactDB-lock
index 9159a178..74983205 100644
Binary files a/wb_unity_pro_2/Library/ArtifactDB-lock and b/wb_unity_pro_2/Library/ArtifactDB-lock differ
diff --git a/wb_unity_pro_2/Library/CurrentLayout-default.dwlt b/wb_unity_pro_2/Library/CurrentLayout-default.dwlt
index b1a1f2b3..2b1c614c 100644
--- a/wb_unity_pro_2/Library/CurrentLayout-default.dwlt
+++ b/wb_unity_pro_2/Library/CurrentLayout-default.dwlt
@@ -14,8 +14,8 @@ MonoBehaviour:
m_EditorClassIdentifier:
m_PixelRect:
serializedVersion: 2
- x: 822.6667
- y: 50
+ x: 580.6667
+ y: 80.66667
width: 876.6667
height: 854.6667
m_ShowMode: 4
@@ -114,7 +114,7 @@ MonoBehaviour:
m_MinSize: {x: 201, y: 342}
m_MaxSize: {x: 4001, y: 8042}
vertical: 0
- controlID: 15
+ controlID: 34
--- !u!114 &6
MonoBehaviour:
m_ObjectHideFlags: 52
@@ -139,7 +139,7 @@ MonoBehaviour:
m_MinSize: {x: 201, y: 342}
m_MaxSize: {x: 4001, y: 8042}
vertical: 1
- controlID: 16
+ controlID: 35
--- !u!114 &7
MonoBehaviour:
m_ObjectHideFlags: 52
@@ -158,7 +158,7 @@ MonoBehaviour:
x: 0
y: 0
width: 877
- height: 407
+ height: 403
m_MinSize: {x: 201, y: 221}
m_MaxSize: {x: 4001, y: 4021}
m_ActualView: {fileID: 10}
@@ -183,9 +183,9 @@ MonoBehaviour:
m_Position:
serializedVersion: 2
x: 0
- y: 407
+ y: 403
width: 877
- height: 398
+ height: 402
m_MinSize: {x: 101, y: 121}
m_MaxSize: {x: 4001, y: 4021}
m_ActualView: {fileID: 12}
@@ -331,10 +331,10 @@ MonoBehaviour:
m_Tooltip:
m_Pos:
serializedVersion: 2
- x: 822.6667
- y: 80
+ x: 0
+ y: 19
width: 876
- height: 386
+ height: 382
m_ViewDataDictionary: {fileID: 0}
m_SerializedViewNames: []
m_SerializedViewValues: []
@@ -369,7 +369,7 @@ MonoBehaviour:
m_VAllowExceedBaseRangeMax: 1
m_ScaleWithWindow: 0
m_HSlider: 0
- m_VSlider: 0
+ m_VSlider: 1
m_IgnoreScrollWheelUntilClicked: 0
m_EnableMouseInput: 1
m_EnableSliderZoomHorizontal: 0
@@ -381,22 +381,22 @@ MonoBehaviour:
x: 0
y: 21
width: 876
- height: 365
- m_Scale: {x: 0.38020834, y: 0.38020834}
- m_Translation: {x: 438, y: 182.5}
+ height: 361
+ m_Scale: {x: 0.37604168, y: 0.37604168}
+ m_Translation: {x: 438, y: 180.49998}
m_MarginLeft: 0
m_MarginRight: 0
m_MarginTop: 0
m_MarginBottom: 0
m_LastShownAreaInsideMargins:
serializedVersion: 2
- x: -1152
- y: -480
- width: 2304
- height: 960
+ x: -1164.7645
+ y: -479.99994
+ width: 2329.529
+ height: 959.99994
m_MinimalGUI: 1
- m_defaultScale: 0.38020834
- m_LastWindowPixelSize: {x: 1314, y: 579}
+ m_defaultScale: 0.37604168
+ m_LastWindowPixelSize: {x: 1314, y: 573}
m_ClearInEditMode: 1
m_NoCameraWarning: 1
m_LowResolutionForAspectRatios: 00000001000000000000
@@ -453,7 +453,7 @@ MonoBehaviour:
scrollPos: {x: 0, y: 0}
m_SelectedIDs: f03b0000
m_LastClickedID: 15344
- m_ExpandedIDs: 000000002e3c0000
+ m_ExpandedIDs: 00000000f03b0000
m_RenameOverlay:
m_UserAcceptedRename: 0
m_Name:
@@ -481,7 +481,7 @@ MonoBehaviour:
scrollPos: {x: 0, y: 0}
m_SelectedIDs:
m_LastClickedID: 0
- m_ExpandedIDs: 000000002e3c0000
+ m_ExpandedIDs: 00000000f03b0000
m_RenameOverlay:
m_UserAcceptedRename: 0
m_Name:
@@ -558,10 +558,10 @@ MonoBehaviour:
m_Tooltip:
m_Pos:
serializedVersion: 2
- x: 822.6667
- y: 487.33334
+ x: 0
+ y: 422
width: 876
- height: 377
+ height: 381
m_ViewDataDictionary: {fileID: 0}
--- !u!114 &13
MonoBehaviour:
@@ -594,7 +594,7 @@ MonoBehaviour:
scrollPos: {x: 0, y: 0}
m_SelectedIDs:
m_LastClickedID: 0
- m_ExpandedIDs: bcfaffff
+ m_ExpandedIDs: 60fbffff
m_RenameOverlay:
m_UserAcceptedRename: 0
m_Name:
diff --git a/wb_unity_pro_2/Library/SourceAssetDB b/wb_unity_pro_2/Library/SourceAssetDB
index 571d3c94..e1d37592 100644
Binary files a/wb_unity_pro_2/Library/SourceAssetDB and b/wb_unity_pro_2/Library/SourceAssetDB differ
diff --git a/wb_unity_pro_2/Library/SourceAssetDB-lock b/wb_unity_pro_2/Library/SourceAssetDB-lock
index 26fd9bff..be218b8d 100644
Binary files a/wb_unity_pro_2/Library/SourceAssetDB-lock and b/wb_unity_pro_2/Library/SourceAssetDB-lock differ
diff --git a/wb_unity_pro_2/Library/StateCache/Hierarchy/bfa95a-mainStage.json b/wb_unity_pro_2/Library/StateCache/Hierarchy/bfa95a-mainStage.json
index eb7b9bde..b5650d7e 100644
--- a/wb_unity_pro_2/Library/StateCache/Hierarchy/bfa95a-mainStage.json
+++ b/wb_unity_pro_2/Library/StateCache/Hierarchy/bfa95a-mainStage.json
@@ -1 +1 @@
-{"m_ExpandedPrefabGameObjectFileIDs":[],"m_ExpandedSceneGameObjectInstanceIDs":[-1184],"m_ScrollY":0.0,"m_LastClickedFileID":0,"m_LastClickedInstanceID":0}
\ No newline at end of file
+{"m_ExpandedPrefabGameObjectFileIDs":[],"m_ExpandedSceneGameObjectInstanceIDs":[-1186],"m_ScrollY":0.0,"m_LastClickedFileID":0,"m_LastClickedInstanceID":0}
\ No newline at end of file
diff --git a/wb_unity_pro_2/Library/shadercompiler-UnityShaderCompiler.exe0.log b/wb_unity_pro_2/Library/shadercompiler-UnityShaderCompiler.exe0.log
index ab5e9c24..e69de29b 100644
--- a/wb_unity_pro_2/Library/shadercompiler-UnityShaderCompiler.exe0.log
+++ b/wb_unity_pro_2/Library/shadercompiler-UnityShaderCompiler.exe0.log
@@ -1,2 +0,0 @@
-Base path: 'C:/Program Files/Unity/Hub/Editor/2019.4.10f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2019.4.10f1/Editor/Data/PlaybackEngines'
-Cmd: initializeCompiler