修改bug
This commit is contained in:
@@ -52,7 +52,6 @@ namespace FGUI.tixian
|
||||
public GButton btn_close;
|
||||
public GButton btn_task_watch;
|
||||
public GRichTextField text_nowch;
|
||||
public GImage text_ch_2;
|
||||
public const string URL = "ui://jwedp6jyupx71p";
|
||||
|
||||
public static com_saveingpot CreateInstance()
|
||||
@@ -109,7 +108,6 @@ namespace FGUI.tixian
|
||||
btn_close = (GButton)GetChildAt(76);
|
||||
btn_task_watch = (GButton)GetChildAt(77);
|
||||
text_nowch = (GRichTextField)GetChildAt(78);
|
||||
text_ch_2 = (GImage)GetChildAt(79);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1658,7 +1658,7 @@ namespace BingoBrain
|
||||
}
|
||||
public static bool isRDExchangeMode()
|
||||
{
|
||||
// return false;//zhushi
|
||||
return true;//zhushi
|
||||
return SaveData.GetSaveobject().ExchangeModeToggle == 1;
|
||||
}
|
||||
public static string getDesByKey(string key)
|
||||
|
||||
@@ -170,9 +170,11 @@ namespace BingoBrain
|
||||
if (PreferencesMgr.Instance.IsOnceWheel)
|
||||
{
|
||||
id = turntable.wheel_itemA;
|
||||
val = id == 102
|
||||
? GameHelper.Get102Str((decimal)PreferencesMgr.Instance.FerrWheelLst[i])
|
||||
: PreferencesMgr.Instance.FerrWheelLst[i].ToString();
|
||||
if (id == 102)
|
||||
{
|
||||
val = GameHelper.isRDExchangeMode() ? $"{PreferencesMgr.Instance.FerrWheelLst[i]:N}" : GameHelper.Get102Str((decimal)PreferencesMgr.Instance.FerrWheelLst[i]);
|
||||
}
|
||||
else val = PreferencesMgr.Instance.FerrWheelLst[i].ToString();
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -181,9 +183,16 @@ namespace BingoBrain
|
||||
{
|
||||
PreferencesMgr.Instance.VidelWheelLst[i] = MathF.Ceiling(PreferencesMgr.Instance.VidelWheelLst[i]);
|
||||
}
|
||||
val = id == 102
|
||||
? GameHelper.Get102Str((decimal)PreferencesMgr.Instance.VidelWheelLst[i])
|
||||
: PreferencesMgr.Instance.VidelWheelLst[i].ToString();
|
||||
|
||||
if (id == 102)
|
||||
{
|
||||
val = GameHelper.isRDExchangeMode() ? $"{PreferencesMgr.Instance.VidelWheelLst[i]:N}" : GameHelper.Get102Str((decimal)PreferencesMgr.Instance.VidelWheelLst[i]);
|
||||
}
|
||||
else val = PreferencesMgr.Instance.VidelWheelLst[i].ToString();
|
||||
|
||||
// val = id == 102
|
||||
// ? GameHelper.Get102Str((decimal)PreferencesMgr.Instance.VidelWheelLst[i])
|
||||
// : PreferencesMgr.Instance.VidelWheelLst[i].ToString();
|
||||
}
|
||||
|
||||
rewards.cont_currency.selectedIndex = id switch
|
||||
|
||||
@@ -89,5 +89,156 @@ namespace BingoBrain
|
||||
{
|
||||
|
||||
}
|
||||
public void ClickBtn(string name)
|
||||
{
|
||||
// // Debug.Log("[UNITY] Click btn: " + name);
|
||||
// FGUIHelper.PlayClickSound();
|
||||
if (name == "flyBtn")
|
||||
{
|
||||
OnClickFlyCash();
|
||||
NetworkKit.BuriedPoint(BuriedPointEvent.Hall_behavior, BuriedPointEvent.collect_fly_number, 1);
|
||||
//NetworkKit.BuriedPoint(BuriedPointEvent.Hall_behavior,BuriedPointEvent.collect_fly_people,1);
|
||||
}
|
||||
else if (name == "rewardBtn")
|
||||
{
|
||||
OnClickIcon();
|
||||
|
||||
}
|
||||
}
|
||||
private void OnClickFlyCash()
|
||||
{
|
||||
// PreferencesMgr.Instance.AdCashFlyShowTime =
|
||||
// GameHelper.GetNowTime() + ConfigSystem.GetConfig<CommonModel>().flyCD;
|
||||
// var rewardData = new RewardData();
|
||||
|
||||
// var singleValue =
|
||||
// (decimal)Math.Round(
|
||||
// UnityEngine.Random.Range(ConfigSystem.GetConfig<CommonModel>().flyReward[0],
|
||||
// ConfigSystem.GetConfig<CommonModel>().flyReward[1]), 2);
|
||||
|
||||
|
||||
// decimal rewardValue;
|
||||
|
||||
|
||||
// if (flyClickCount >= flyNeedClickCount)
|
||||
// {
|
||||
// flyClickCount = -1;
|
||||
// //var rate = GameHelper.GetVideoRate();
|
||||
// rewardValue = singleValue;
|
||||
// GameHelper.ShowVideoAd("reward_fly", isCompleted =>
|
||||
// {
|
||||
// if (isCompleted)
|
||||
// {
|
||||
// GameDispatcher.Instance.Dispatch(GameMsg.GetReward, rewardData);
|
||||
// GameDispatcher.Instance.Dispatch(GameMsg.RefreshMakeupData);
|
||||
// }
|
||||
// });
|
||||
// }
|
||||
// else
|
||||
// {
|
||||
// rewardValue = singleValue;
|
||||
// }
|
||||
|
||||
// var startPosition = GameHelper.GetUICenterPosition(ui.com_fly);
|
||||
// var endPosition = GameHelper.GetUICenterPosition(ui.com_top.text_num);
|
||||
|
||||
// var rewardSingleData = new RewardSingleData(102, rewardValue, RewardOrigin.H5Fly101)
|
||||
// {
|
||||
// startPosition = startPosition,
|
||||
// endPosition = new Vector2(endPosition.x - 150, endPosition.y - 106)
|
||||
// };
|
||||
|
||||
// rewardData.AddReward(rewardSingleData);
|
||||
// rewardData.displayType = RewardDisplayType.RewardFly | RewardDisplayType.ValueChange;
|
||||
// rewardData.AddCompleted(isSuccess =>
|
||||
// {
|
||||
// if (isSuccess)
|
||||
// {
|
||||
// flyClickCount++;
|
||||
// }
|
||||
|
||||
// SetMakeup();
|
||||
// });
|
||||
// //GameHelper.addMoney((float)rewardValue);
|
||||
// GameDispatcher.Instance.Dispatch(GameMsg.GetReward, rewardData);
|
||||
// GameDispatcher.Instance.Dispatch(GameMsg.RefreshMakeupData);
|
||||
// CheckShowFly();
|
||||
}
|
||||
private void OnClickIcon()
|
||||
{
|
||||
// //WebThroughUtil.WebThroughClick(H5WebThroughType.OnlineH5, ui.btn_icon);
|
||||
// if (iconTime < ConfigSystem.GetConfig<CommonModel>().ThroughRewardCD)
|
||||
// {
|
||||
// return;
|
||||
// }
|
||||
|
||||
// #if UNITY_IOS && !UNITY_EDITOR
|
||||
// WebviewManager.Instance.ShowH5View(false);
|
||||
// #endif
|
||||
|
||||
// float[] cash_array = GameHelper.GetRewardValue(2);
|
||||
|
||||
// // var temp = new { is_success = true, cash_number = cash_array[0], rate = cash_array[1], is_level_success = false, is_h5_reward = true };
|
||||
// SuccessData temp = new SuccessData();
|
||||
// temp.IsWin = true;
|
||||
// temp.cash_number = cash_array[0];
|
||||
// temp.rate = (int)cash_array[1];
|
||||
// temp.IsLevelSuccess = false;
|
||||
// temp.IsH5Reward = true;
|
||||
// UICtrlDispatcher.Instance.Dispatch(UICtrlMsg.LevelSuccessUI_Open, temp);
|
||||
|
||||
// //UICtrlDispatcher.Instance.Dispatch(UICtrlMsg.RewardUI_Open);
|
||||
// // var rewardData = new RewardData();
|
||||
|
||||
// // var rewardType = 111;
|
||||
// // decimal rewardValue = (decimal)GameHelper.GetRewardValue(3)[0];
|
||||
|
||||
// // var rewardSingleData = new RewardSingleData(rewardType, rewardValue, RewardOrigin.H5Icon)
|
||||
// // {
|
||||
// // startPosition = GameHelper.GetUICenterPosition(ui.btn_icon),
|
||||
// // endPosition = GameHelper.GetUICenterPosition(ui.com_top.text_num)
|
||||
// // };
|
||||
// // rewardData.AddReward(rewardSingleData);
|
||||
// // rewardData.AddCompleted(isSuccess =>
|
||||
// // {
|
||||
// // ui.btn_icon.cont_state.selectedIndex = btn_icon.State_none;
|
||||
// // iconTime = 0;
|
||||
// // SetMakeup();
|
||||
// // });
|
||||
// // rewardData.condition = RewardCondition.AD;
|
||||
// // rewardData.displayType =
|
||||
// // RewardDisplayType.Dialog | RewardDisplayType.RewardFly | RewardDisplayType.ValueChange;
|
||||
|
||||
// // GameDispatcher.Instance.Dispatch(GameMsg.GetReward, rewardData);
|
||||
|
||||
// // GameHelper.addMoney((float)rewardValue);
|
||||
// // GameDispatcher.Instance.Dispatch(GameMsg.GetReward, rewardData);
|
||||
// // GameDispatcher.Instance.Dispatch(GameMsg.RefreshMakeupData);
|
||||
|
||||
|
||||
// iconTime = 0;
|
||||
// // SetMakeup();
|
||||
// NetworkKit.BuriedPoint(BuriedPointEvent.Hall_behavior, BuriedPointEvent.annular_get_number, 1);
|
||||
}
|
||||
private void CheckShowFly()
|
||||
{
|
||||
// var nowTime = GameHelper.GetNowTime();
|
||||
// var leftTime = (int)(PreferencesMgr.Instance.AdCashFlyShowTime - nowTime);
|
||||
|
||||
// ui.com_fly.visible = false;
|
||||
// ui.com_fly.visible = leftTime <= 0;
|
||||
// if (leftTime > 0)
|
||||
// {
|
||||
// WebviewManager.Instance.ShowFlyBtn(false);
|
||||
// isFlyShow = false;
|
||||
// }
|
||||
// else
|
||||
// {
|
||||
// //StartFly();
|
||||
// if (!isFlyShow) WebviewManager.Instance.ShowFlyBtn(true);
|
||||
// isFlyShow = true;
|
||||
|
||||
// }
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -54,13 +54,18 @@ namespace BingoBrain
|
||||
{
|
||||
uiCtrlDispatcher.AddListener(openUIMsg, OpenUI);
|
||||
uiCtrlDispatcher.AddListener(closeUIMsg, CloseUI);
|
||||
gameDispatcher.AddListener(BingoInfo.H5ViewClickBtn, OnH5ClickBtn);
|
||||
}
|
||||
protected override void RemoveListener()
|
||||
{
|
||||
uiCtrlDispatcher.RemoveListener(openUIMsg, OpenUI);
|
||||
uiCtrlDispatcher.RemoveListener(closeUIMsg, CloseUI);
|
||||
gameDispatcher.RemoveListener(BingoInfo.H5ViewClickBtn, OnH5ClickBtn);
|
||||
}
|
||||
void OnH5ClickBtn(object arg)
|
||||
{
|
||||
ui?.ClickBtn((string)arg);
|
||||
}
|
||||
|
||||
protected override void AddServerListener()
|
||||
{
|
||||
|
||||
|
||||
@@ -172,7 +172,7 @@ namespace BingoBrain
|
||||
else
|
||||
{
|
||||
day.cont_currency.selectedIndex = btn_day2.Currency_diam;
|
||||
day.text_reward.text = $"{GameHelper.Get102Str((decimal)dailyBonus.quantity)}";
|
||||
day.text_reward.text = (GameHelper.isRDExchangeMode() && GameHelper.IsGiftSwitch()) ?$"{dailyBonus.quantity:N}" : GameHelper.Get102Str((decimal)dailyBonus.quantity);
|
||||
}
|
||||
|
||||
day.text_day.text = "Day " + (index + 1);
|
||||
@@ -212,7 +212,7 @@ namespace BingoBrain
|
||||
else
|
||||
{
|
||||
day.cont_currency.selectedIndex = btn_day.Currency_diam;
|
||||
day.text_reward.text = $"{GameHelper.Get102Str((decimal)dailyBonus.quantity):N}";
|
||||
day.text_reward.text = (GameHelper.isRDExchangeMode() && GameHelper.IsGiftSwitch()) ? $"{dailyBonus.quantity:N}" : GameHelper.Get102Str((decimal)dailyBonus.quantity);
|
||||
}
|
||||
|
||||
day.text_day.text = "Day " + (index + 1);
|
||||
|
||||
@@ -732,6 +732,7 @@ namespace BingoBrain
|
||||
ConfigSystem.GetConfig<CommonModel>().inlineInitNum[0],
|
||||
makeupTaskData.inlineInitNum);
|
||||
makeupTaskData.order_time = GameHelper.GetNowTime();
|
||||
PreferencesMgr.Instance.Currency102 = PreferencesMgr.Instance.Currency102 - vo.item_need;
|
||||
PreferencesMgr.Instance.SaveMakeupTaskHistory();
|
||||
GameDispatcher.Instance.Dispatch(BingoInfo.Update102);
|
||||
//OnInline();
|
||||
@@ -785,6 +786,7 @@ namespace BingoBrain
|
||||
ConfigSystem.GetConfig<CommonModel>().inlineInitNum[0],
|
||||
makeupTaskData.inlineInitNum);
|
||||
makeupTaskData.order_time = GameHelper.GetNowTime();
|
||||
PreferencesMgr.Instance.Currency102 = PreferencesMgr.Instance.Currency102 - vo.item_need;
|
||||
PreferencesMgr.Instance.SaveMakeupTaskHistory();
|
||||
GameDispatcher.Instance.Dispatch(BingoInfo.Update102);
|
||||
//OnInline();
|
||||
|
||||
@@ -738,7 +738,7 @@ namespace BingoBrain
|
||||
|
||||
if (GameHelper.isRDExchangeMode())
|
||||
{
|
||||
ui.com_task.text_payer.SetVar("amt", "<img src='ui://pmf3wbji112epi7'/>" + makeupTaskData.amount).FlushVars();
|
||||
ui.com_task.text_payer.SetVar("amt", "<img src='ui://o9974uc5t9w7c3'/>" + makeupTaskData.amount).FlushVars();
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -922,7 +922,7 @@ namespace BingoBrain
|
||||
|
||||
for (int i = 0; i < btn_list.Count; i++)
|
||||
{
|
||||
btn_list[i].text_ch.text = (GameHelper.isRDExchangeMode() ? "<img src='ui://pmf3wbji112epi7'/>" : "") + GameHelper.Get102Str_new(makeup_list[i].item_need);
|
||||
btn_list[i].text_ch.text = (GameHelper.isRDExchangeMode() ? "<img src='ui://o9974uc5t9w7c3'/>" : "$") + makeup_list[i].item_need;
|
||||
Debug.Log(makeup_list[i].item_need);
|
||||
btn_list[i].index.selectedIndex = i;
|
||||
if (i >= saveingpot_history.Count)
|
||||
|
||||
@@ -89,7 +89,7 @@ namespace BingoBrain
|
||||
ui.cash_text.text = cash.ToString();
|
||||
Out102 item = GameHelper.GetDynamicVersion_Cash();
|
||||
ui.rate_text.text = "UP TO+" + item.cashmultiple + "00%";
|
||||
ui.btn_adget.title = "$" + cash * item.cashmultiple;
|
||||
ui.btn_adget.title = GameHelper.isRDExchangeMode() ? (cash * item.cashmultiple).ToString() : "$" + cash * item.cashmultiple;
|
||||
ui.btn_get.SetClick(() =>
|
||||
{
|
||||
CheckReward(cash / 10);
|
||||
|
||||
@@ -294,7 +294,7 @@ namespace BingoBrain
|
||||
GetGameConfig<MultigiftModel, Multigift>(dictionary);
|
||||
|
||||
GetGameConfig<ExchangeDesModel, ExchangeDescriptors>(dictionary);//兑换
|
||||
Debug.Log(JsonConvert.SerializeObject(ConfigSystem.GetConfig<ExchangeDesModel>().dataList));
|
||||
// Debug.Log(JsonConvert.SerializeObject(ConfigSystem.GetConfig<ExchangeDesModel>().dataList));
|
||||
exBrPoolModel.config_name_list = ConfigSystem.GetConfig<exBrPoolModel>().dataList[0].user_name.Split(",").ToList();
|
||||
exBrPoolModel.config_money_list = ConfigSystem.GetConfig<exBrPoolModel>().dataList[0].amount.Split(",").ToList();
|
||||
exBrPoolModel_2.config_name_list = ConfigSystem.GetConfig<exBrPoolModel_2>().dataList[0].user_name.Split(",").ToList();
|
||||
|
||||
@@ -1019,7 +1019,7 @@
|
||||
}
|
||||
if(web_2_through_time<web_2_disable_time)return nil;
|
||||
else {
|
||||
web_2_disable_time=[ClickAddtime[2] floatValue] + ([ClickAddtime[3] floatValue] - [ClickAddtime[2] floatValue]) * drand48();
|
||||
web_2_disable_time=[ClickAddtime[0] floatValue] + ([ClickAddtime[1] floatValue] - [ClickAddtime[0] floatValue]) * drand48();
|
||||
web_2_through_time=-0.1;
|
||||
return touchedView;
|
||||
}
|
||||
|
||||
Binary file not shown.
@@ -40,11 +40,11 @@ MonoBehaviour:
|
||||
m_Position:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 376
|
||||
width: 420
|
||||
height: 563
|
||||
m_MinSize: {x: 100, y: 100}
|
||||
m_MaxSize: {x: 4000, y: 4000}
|
||||
y: 345
|
||||
width: 579
|
||||
height: 594
|
||||
m_MinSize: {x: 101, y: 121}
|
||||
m_MaxSize: {x: 4001, y: 4021}
|
||||
m_ActualView: {fileID: 18}
|
||||
m_Panes:
|
||||
- {fileID: 18}
|
||||
@@ -67,14 +67,14 @@ MonoBehaviour:
|
||||
- {fileID: 2}
|
||||
m_Position:
|
||||
serializedVersion: 2
|
||||
x: 1500
|
||||
x: 1341
|
||||
y: 0
|
||||
width: 420
|
||||
width: 579
|
||||
height: 939
|
||||
m_MinSize: {x: 100, y: 100}
|
||||
m_MaxSize: {x: 8096, y: 16192}
|
||||
vertical: 1
|
||||
controlID: 1264
|
||||
controlID: 128
|
||||
draggingID: 0
|
||||
--- !u!114 &4
|
||||
MonoBehaviour:
|
||||
@@ -93,10 +93,10 @@ MonoBehaviour:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 0
|
||||
width: 420
|
||||
height: 376
|
||||
m_MinSize: {x: 275, y: 50}
|
||||
m_MaxSize: {x: 4000, y: 4000}
|
||||
width: 579
|
||||
height: 345
|
||||
m_MinSize: {x: 276, y: 71}
|
||||
m_MaxSize: {x: 4001, y: 4021}
|
||||
m_ActualView: {fileID: 14}
|
||||
m_Panes:
|
||||
- {fileID: 14}
|
||||
@@ -117,9 +117,9 @@ MonoBehaviour:
|
||||
m_Children: []
|
||||
m_Position:
|
||||
serializedVersion: 2
|
||||
x: 796
|
||||
x: 743
|
||||
y: 0
|
||||
width: 704
|
||||
width: 598
|
||||
height: 939
|
||||
m_MinSize: {x: 232, y: 271}
|
||||
m_MaxSize: {x: 10002, y: 10021}
|
||||
@@ -152,7 +152,7 @@ MonoBehaviour:
|
||||
m_MinSize: {x: 400, y: 100}
|
||||
m_MaxSize: {x: 32384, y: 16192}
|
||||
vertical: 0
|
||||
controlID: 1261
|
||||
controlID: 127
|
||||
draggingID: 0
|
||||
--- !u!114 &7
|
||||
MonoBehaviour:
|
||||
@@ -171,10 +171,10 @@ MonoBehaviour:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 0
|
||||
width: 332
|
||||
width: 329
|
||||
height: 939
|
||||
m_MinSize: {x: 200, y: 200}
|
||||
m_MaxSize: {x: 4000, y: 4000}
|
||||
m_MinSize: {x: 201, y: 221}
|
||||
m_MaxSize: {x: 4001, y: 4021}
|
||||
m_ActualView: {fileID: 15}
|
||||
m_Panes:
|
||||
- {fileID: 15}
|
||||
@@ -271,12 +271,12 @@ MonoBehaviour:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 0
|
||||
width: 1500
|
||||
width: 1341
|
||||
height: 939
|
||||
m_MinSize: {x: 300, y: 50}
|
||||
m_MaxSize: {x: 24288, y: 8096}
|
||||
vertical: 0
|
||||
controlID: 38
|
||||
controlID: 62
|
||||
draggingID: 0
|
||||
--- !u!114 &12
|
||||
MonoBehaviour:
|
||||
@@ -293,9 +293,9 @@ MonoBehaviour:
|
||||
m_Children: []
|
||||
m_Position:
|
||||
serializedVersion: 2
|
||||
x: 332
|
||||
x: 329
|
||||
y: 0
|
||||
width: 464
|
||||
width: 414
|
||||
height: 939
|
||||
m_MinSize: {x: 202, y: 221}
|
||||
m_MaxSize: {x: 4002, y: 4021}
|
||||
@@ -325,9 +325,9 @@ MonoBehaviour:
|
||||
m_Tooltip:
|
||||
m_Pos:
|
||||
serializedVersion: 2
|
||||
x: 796
|
||||
x: 743
|
||||
y: 73
|
||||
width: 702
|
||||
width: 596
|
||||
height: 918
|
||||
m_SerializedDataModeController:
|
||||
m_DataMode: 0
|
||||
@@ -350,7 +350,7 @@ MonoBehaviour:
|
||||
m_SkipHidden: 0
|
||||
m_SearchArea: 1
|
||||
m_Folders:
|
||||
- Assets/Resources/AssetHotFix/Effect/spine/fx_first_reward
|
||||
- Assets/Plugins/iOS
|
||||
m_Globs: []
|
||||
m_OriginalText:
|
||||
m_ImportLogFlags: 0
|
||||
@@ -358,16 +358,16 @@ MonoBehaviour:
|
||||
m_ViewMode: 1
|
||||
m_StartGridSize: 16
|
||||
m_LastFolders:
|
||||
- Assets/Resources/AssetHotFix/Effect/spine/fx_first_reward
|
||||
- Assets/Plugins/iOS
|
||||
m_LastFoldersGridSize: 16
|
||||
m_LastProjectPath: D:\git_\BingoGrassland
|
||||
m_LastProjectPath: D:\git_test\BingoGrassland
|
||||
m_LockTracker:
|
||||
m_IsLocked: 0
|
||||
m_FolderTreeState:
|
||||
scrollPos: {x: 0, y: 240}
|
||||
m_SelectedIDs: d0f70000
|
||||
m_LastClickedID: 63440
|
||||
m_ExpandedIDs: 00000000386d00003a6d00003c6d00003e6d0000406d0000426d0000446d0000486d00004a6d00004c6d00004e6d0000506d0000526d0000546d0000566d0000586d00005a6d00005c6d0000606d0000626d0000746d00008e6d00009e6d0000bcaa000000ca9a3bffffff7f
|
||||
scrollPos: {x: 0, y: 1200}
|
||||
m_SelectedIDs: f4990100
|
||||
m_LastClickedID: 104948
|
||||
m_ExpandedIDs: 00000000026e0000046e0000066e0000086e00000a6e00000c6e00000e6e0000106e0000126e0000146e0000166e0000186e00001a6e00001c6e00001e6e0000226e0000246e0000266e0000286e00002a6e0000306e0000566e0000606e0000626e00006a6e00006c6e00006e6e0000c26e000000ca9a3bffffff7f
|
||||
m_RenameOverlay:
|
||||
m_UserAcceptedRename: 0
|
||||
m_Name:
|
||||
@@ -395,7 +395,7 @@ MonoBehaviour:
|
||||
scrollPos: {x: 0, y: 0}
|
||||
m_SelectedIDs:
|
||||
m_LastClickedID: 0
|
||||
m_ExpandedIDs: 00000000386d00003a6d00003c6d00003e6d0000406d0000426d0000446d0000466d0000486d00004a6d00004c6d00004e6d0000506d0000526d0000546d0000566d0000586d00005a6d00005c6d00005e6d0000606d0000626d0000
|
||||
m_ExpandedIDs: 00000000026e0000046e0000066e0000086e00000a6e00000c6e00000e6e0000106e0000126e0000146e0000166e0000186e00001a6e00001c6e00001e6e0000206e0000226e0000246e0000266e0000286e00002a6e00002c6e00002e6e0000306e0000
|
||||
m_RenameOverlay:
|
||||
m_UserAcceptedRename: 0
|
||||
m_Name:
|
||||
@@ -450,7 +450,7 @@ MonoBehaviour:
|
||||
m_ScrollPosition: {x: 0, y: 0}
|
||||
m_GridSize: 16
|
||||
m_SkipHiddenPackages: 0
|
||||
m_DirectoriesAreaWidth: 313
|
||||
m_DirectoriesAreaWidth: 309
|
||||
--- !u!114 &14
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 52
|
||||
@@ -471,10 +471,10 @@ MonoBehaviour:
|
||||
m_Tooltip:
|
||||
m_Pos:
|
||||
serializedVersion: 2
|
||||
x: 1500
|
||||
x: 1341
|
||||
y: 73
|
||||
width: 419
|
||||
height: 355
|
||||
width: 578
|
||||
height: 324
|
||||
m_SerializedDataModeController:
|
||||
m_DataMode: 0
|
||||
m_PreferredDataMode: 0
|
||||
@@ -520,7 +520,7 @@ MonoBehaviour:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 73
|
||||
width: 331
|
||||
width: 328
|
||||
height: 918
|
||||
m_SerializedDataModeController:
|
||||
m_DataMode: 0
|
||||
@@ -537,21 +537,21 @@ MonoBehaviour:
|
||||
scrollPos: {x: 0, y: 0}
|
||||
m_SelectedIDs:
|
||||
m_LastClickedID: 0
|
||||
m_ExpandedIDs: 4627f8ff5627f8ff6627f8ff8c5bf8ff325cf8ff2c68f8ffd268f8ffde87f8ffe487f8ff729af8ff5aa1f8ff7ea1f8ff96a1f8ffaca1f8ff24a2f8ffc2b0f8ffd4b0f8ffdab0f8fff2b0f8ffc2b7f8fff8b7f8ff10b8f8ff26b8f8ff9eb8f8fff813f9ff1c14f9ff061af9ff301af9ff481af9ff5e1af9ffd61af9ffc468f9ffca68f9ff666af9ff706af9ff9e6af9ff166bf9ff4ef6f9ff5ef6f9ff6ef6f9ffaa64faff5065faff5a7bfaff007cfaff8cadfaff32aefaff20d2faff30d2faff40d2faff8054fbff2655fbff5091fbff6091fbff7091fbff0e98fbff1e98fbff2e98fbffb0fdfbffc0fdfbffac75fcffbc75fcff0cabfcff1cabfcffb821fdfffa89fdff308afdff488afdff5e8afdffd68afdffe6d1fdff38d6fdff00e2fdff06e2fdff946efeff3a6ffeff02aafeffa8aafeff8af6feff30f7feff6805ffff0e06ffff5c32ffff0233ffff9247ffff3848ffff5e4fffff6e4fffff7e4fffffaa57ffffae57ffffbe57ffffce57fffffa5effff0a5fffff826dffff866dffff966dffffa66dffff2afbfffff4ffffff
|
||||
m_ExpandedIDs: ce14edff4e4bedffd24bedff0492edff1692edff3a92edff5292edff6892edffe092edff10c3edff46c3edff5ec3edff74c3edffecc3edff7e46efff2447efff2a02f2ff3002f2ff340df2ff1015f2ff4615f2ff5e15f2ff7415f2ffec15f2ffd8a3f3ffdea3f3ffe4a3f3ff2cabf3ff50abf3ff68abf3ff7eabf3fff6abf3ff04b0f4ff46b0f4ff5eb0f4ff74b0f4ff8cb0f4ffecb0f4ff42cdf4ff14e2f4ff56e2f4ff6ee2f4ff84e2f4fffce2f4ff2e4cf5ff524ff5ff584ff5ff5e4ff5ff0e5af5ff065cf5ff9063f5ffa863f5ffbe63f5ff3664f5ff2498f5ff6698f5ff7e98f5ff9498f5ff0c99f5ff66b0f5ff6cb0f5ff7eb0f5ffbeb9f5ffdcb9f5ff00baf5ff18baf5ff2ebaf5ffa6baf5ff3ef2f5ff80f2f5ff98f2f5ffaef2f5ff26f3f5ffbc10f6ffc210f6ff3a12f6ff4012f6ff5a12f6ff6412f6ff7c12f6ff9212f6ff0a13f6fff258f6ff3459f6ff4c59f6ff6259f6ffda59f6ff9e78f6ffe078f6fff878f6ff0e79f6ff8679f6ffa640f8ff0845f8ff084df8ff0e4df8ff90cef8ff96cef8ffdecef8ff20cff8ff40d6f8ffa0daf8ff00e2f8ffa0e2f8ffa6e2f8ff644df9ff3c94f9ff5494f9ff6a94f9ffbe94f9ffc294f9ffd294f9ffe294f9ffe49cf9ffe89cf9fff89cf9ff089df9ffaea0f9ffb2a0f9ffc2a0f9ffd2a0f9ff6ca4f9ff70a4f9ff80a4f9ff90a4f9ff7c85faff8285faff748bfaff7a8bfafff88cfaff128dfaff1c8dfaff348dfaff4a8dfaffc28dfafffa82fcff6a8cfcff708cfcff948cfcffac8cfcffc28cfcff3a8dfcffb6b7fcff5cb8fcffe40afdff940cfdffac0cfdffc20cfdff3a0dfdffbe51fdffce51fdff0c5bfdff1c5bfdff9a65fdffaa65fdff6ab0fdff7ab0fdff8ab0fdfff4c4feff04c5feff3c35ffff4c35ffff4a58ffff5a58ffff108effff208effff2afbfffff4ffffff
|
||||
m_RenameOverlay:
|
||||
m_UserAcceptedRename: 0
|
||||
m_Name:
|
||||
m_OriginalName:
|
||||
m_Name: (GodPleAcUI)Com_CoinWnd
|
||||
m_OriginalName: (GodPleAcUI)Com_CoinWnd
|
||||
m_EditFieldRect:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 0
|
||||
width: 0
|
||||
height: 0
|
||||
m_UserData: 0
|
||||
m_UserData: -700560
|
||||
m_IsWaitingForDelay: 0
|
||||
m_IsRenaming: 0
|
||||
m_OriginalEventType: 11
|
||||
m_OriginalEventType: 0
|
||||
m_IsRenamingFilename: 0
|
||||
m_ClientGUIView: {fileID: 7}
|
||||
m_SearchString:
|
||||
@@ -581,9 +581,9 @@ MonoBehaviour:
|
||||
m_Tooltip:
|
||||
m_Pos:
|
||||
serializedVersion: 2
|
||||
x: 332
|
||||
x: 329
|
||||
y: 73
|
||||
width: 462
|
||||
width: 412
|
||||
height: 918
|
||||
m_SerializedDataModeController:
|
||||
m_DataMode: 0
|
||||
@@ -904,9 +904,9 @@ MonoBehaviour:
|
||||
m_PlayAudio: 0
|
||||
m_AudioPlay: 0
|
||||
m_Position:
|
||||
m_Target: {x: 10004.477, y: 9998.3, z: 0.22193862}
|
||||
m_Target: {x: 10003.788, y: 9991.058, z: 0.19638933}
|
||||
speed: 2
|
||||
m_Value: {x: 10004.477, y: 9998.3, z: 0.22193862}
|
||||
m_Value: {x: 10003.788, y: 9991.058, z: 0.19638933}
|
||||
m_RenderMode: 0
|
||||
m_CameraMode:
|
||||
drawMode: 0
|
||||
@@ -956,9 +956,9 @@ MonoBehaviour:
|
||||
speed: 2
|
||||
m_Value: {x: 0, y: 0, z: 0, w: 1}
|
||||
m_Size:
|
||||
m_Target: 4.938752
|
||||
m_Target: 7.467294
|
||||
speed: 2
|
||||
m_Value: 4.938752
|
||||
m_Value: 7.467294
|
||||
m_Ortho:
|
||||
m_Target: 1
|
||||
speed: 2
|
||||
@@ -1003,9 +1003,9 @@ MonoBehaviour:
|
||||
m_Tooltip:
|
||||
m_Pos:
|
||||
serializedVersion: 2
|
||||
x: 332
|
||||
x: 329
|
||||
y: 73
|
||||
width: 462
|
||||
width: 412
|
||||
height: 918
|
||||
m_SerializedDataModeController:
|
||||
m_DataMode: 0
|
||||
@@ -1059,23 +1059,23 @@ MonoBehaviour:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 21
|
||||
width: 462
|
||||
width: 412
|
||||
height: 897
|
||||
m_Scale: {x: 0.500558, y: 0.500558}
|
||||
m_Translation: {x: 231, y: 448.5}
|
||||
m_Scale: {x: 0.49758455, y: 0.49758455}
|
||||
m_Translation: {x: 206, y: 448.5}
|
||||
m_MarginLeft: 0
|
||||
m_MarginRight: 0
|
||||
m_MarginTop: 0
|
||||
m_MarginBottom: 0
|
||||
m_LastShownAreaInsideMargins:
|
||||
serializedVersion: 2
|
||||
x: -461.48495
|
||||
y: -896
|
||||
width: 922.9699
|
||||
height: 1792
|
||||
x: -414
|
||||
y: -901.3544
|
||||
width: 828
|
||||
height: 1802.7087
|
||||
m_MinimalGUI: 1
|
||||
m_defaultScale: 0.500558
|
||||
m_LastWindowPixelSize: {x: 462, y: 918}
|
||||
m_defaultScale: 0.49758455
|
||||
m_LastWindowPixelSize: {x: 412, y: 918}
|
||||
m_ClearInEditMode: 1
|
||||
m_NoCameraWarning: 1
|
||||
m_LowResolutionForAspectRatios: 01000100000000000000
|
||||
@@ -1102,10 +1102,10 @@ MonoBehaviour:
|
||||
m_Tooltip:
|
||||
m_Pos:
|
||||
serializedVersion: 2
|
||||
x: 1500
|
||||
y: 449
|
||||
width: 419
|
||||
height: 542
|
||||
x: 1341
|
||||
y: 418
|
||||
width: 578
|
||||
height: 573
|
||||
m_SerializedDataModeController:
|
||||
m_DataMode: 0
|
||||
m_PreferredDataMode: 0
|
||||
|
||||
Reference in New Issue
Block a user