Implement browser tabs.

This commit is contained in:
2023-11-11 11:54:52 +08:00
parent c05b771425
commit 166478e4bb
5 changed files with 64 additions and 588 deletions

View File

@@ -1,13 +1,31 @@
using System;
using TMPro;
using UnityEngine;
using UnityEngine.EventSystems;
using UnityEngine.UI;
namespace Cryville.Crtr.Browsing.UI {
[RequireComponent(typeof(BrowserTabLayout))]
[RequireComponent(typeof(CanvasGroup))]
internal class BrowserTab : MonoBehaviour, IPointerClickHandler {
[SerializeField]
Image m_icon;
[SerializeField]
TextMeshProUGUI m_text;
[SerializeField]
float m_deselectedAlpha = 0.6f;
public event Action<BrowserTab> Clicked;
public Sprite Icon {
get { return m_icon.sprite; }
set { m_icon.sprite = value; }
}
public string Text {
get { return m_text.text; }
set { m_text.text = value; }
}
bool m_selected;
public bool Selected {
get { return m_selected; }
@@ -31,7 +49,7 @@ namespace Cryville.Crtr.Browsing.UI {
}
public void OnPointerClick(PointerEventData eventData) {
throw new System.NotImplementedException();
Clicked?.Invoke(this);
}
}
}

View File

@@ -2,6 +2,10 @@ using UnityEngine;
namespace Cryville.Crtr.Browsing.UI {
public abstract class ResourceBrowser : MonoBehaviour {
[SerializeField]
Sprite m_icon;
public Sprite Icon { get { return m_icon; } }
protected ResourceBrowserMaster Master { get; private set; }
protected virtual void Awake() {
Master = GetComponentInParent<ResourceBrowserMaster>();

View File

@@ -8,22 +8,48 @@ using UnityEngine.UI;
namespace Cryville.Crtr.Browsing.UI {
public class ResourceBrowserMaster : MonoBehaviour {
[SerializeField]
private Button m_playButton;
Button m_playButton;
[SerializeField]
private Button m_configButton;
Button m_configButton;
[SerializeField]
private ConfigPanelMaster m_configPanel;
ConfigPanelMaster m_configPanel;
[SerializeField]
private PathedResourceBrowser m_mainBrowser;
Transform m_tabContainer;
[SerializeField]
private DetailPanel m_detailPanel;
GameObject m_tabPrefab;
[SerializeField]
PathedResourceBrowser m_mainBrowser;
[SerializeField]
DetailPanel m_detailPanel;
readonly List<ResourceBrowser> _units = new List<ResourceBrowser>();
BrowserTab _currentTab;
readonly Dictionary<BrowserTab, ResourceBrowser> _tabs = new Dictionary<BrowserTab, ResourceBrowser>();
void Awake() {
m_mainBrowser.ResourceManager = new LegacyResourceManager(Settings.Default.GameDataPath);
_units.Add(m_mainBrowser);
// _units.Add(m_detailPanel);
OnTabClicked(AddTab("Local", m_mainBrowser));
}
BrowserTab AddTab(string name, ResourceBrowser browser) {
var tab = Instantiate(m_tabPrefab, m_tabContainer, false).GetComponent<BrowserTab>();
tab.Icon = browser.Icon;
tab.Text = name;
tab.Clicked += OnTabClicked;
_tabs.Add(tab, browser);
return tab;
}
void OnTabClicked(BrowserTab tab) {
if (tab == _currentTab) return;
if (_currentTab != null) {
_currentTab.Selected = false;
_tabs[_currentTab].gameObject.SetActive(false);
}
_currentTab = tab;
if (_currentTab != null) {
_currentTab.Selected = true;
_tabs[_currentTab].gameObject.SetActive(true);
}
}
public void ShowDetail(int id, ChartDetail detail) {

View File

@@ -400,6 +400,8 @@ MonoBehaviour:
m_Script: {fileID: 11500000, guid: 62b498b3519eb364cb6683512b28400a, type: 3}
m_Name:
m_EditorClassIdentifier:
m_icon: {fileID: 262420016426466097}
m_text: {fileID: 1950821457908238818}
m_deselectedAlpha: 0.6
--- !u!114 &1950821458490172666
MonoBehaviour:

View File

@@ -659,6 +659,9 @@ MonoBehaviour:
m_playButton: {fileID: 92937986}
m_configButton: {fileID: 92937986}
m_configPanel: {fileID: 0}
m_tabContainer: {fileID: 1748260183}
m_tabPrefab: {fileID: 1950821458490172551, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
m_mainBrowser: {fileID: 995942989}
m_detailPanel: {fileID: 1177404488}
--- !u!1 &166455782
@@ -2719,192 +2722,8 @@ MonoBehaviour:
m_Script: {fileID: 11500000, guid: f3c17bb298cf2294dad4b675c7290b2a, type: 3}
m_Name:
m_EditorClassIdentifier:
m_icon: {fileID: 21300000, guid: faee4ec2120f8a142b33d1a2956c39ca, type: 3}
ItemContainer: {fileID: 17676803}
--- !u!1001 &1021339990
PrefabInstance:
m_ObjectHideFlags: 0
serializedVersion: 2
m_Modification:
m_TransformParent: {fileID: 1748260183}
m_Modifications:
- target: {fileID: 196868636178997228, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_AnchorMax.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 196868636178997228, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_AnchorMin.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 196868636178997228, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_SizeDelta.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 196868636178997228, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_SizeDelta.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 196868636178997228, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_AnchoredPosition.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 196868636178997228, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_AnchoredPosition.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 262420016426466097, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_Sprite
value:
objectReference: {fileID: 21300000, guid: 15cf38e3a4deaec4cb102518f1ec7bf9,
type: 3}
- target: {fileID: 1950821457908238818, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_text
value: Unofficial
objectReference: {fileID: 0}
- target: {fileID: 1950821457908238820, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_AnchorMax.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1950821457908238820, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_AnchorMin.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1950821457908238820, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_SizeDelta.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1950821457908238820, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_SizeDelta.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1950821457908238820, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_AnchoredPosition.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1950821457908238820, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_AnchoredPosition.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1950821458490172548, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_RootOrder
value: 2
objectReference: {fileID: 0}
- target: {fileID: 1950821458490172548, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_AnchorMax.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1950821458490172548, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_AnchorMin.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1950821458490172548, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_SizeDelta.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1950821458490172548, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_SizeDelta.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1950821458490172548, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_LocalPosition.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1950821458490172548, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_LocalPosition.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1950821458490172548, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_AnchoredPosition.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1950821458490172548, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_AnchoredPosition.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1950821458490172548, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_LocalEulerAnglesHint.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1950821458490172548, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_LocalEulerAnglesHint.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1950821458490172548, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_LocalEulerAnglesHint.z
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1950821458490172551, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_Name
value: Tab (2)
objectReference: {fileID: 0}
- target: {fileID: 8933519220164484658, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_AnchorMax.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8933519220164484658, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_AnchorMax.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8933519220164484658, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_AnchorMin.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8933519220164484658, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_SizeDelta.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8933519220164484658, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_SizeDelta.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8933519220164484658, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_LocalPosition.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8933519220164484658, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_AnchoredPosition.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8933519220164484658, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_AnchoredPosition.y
value: 0
objectReference: {fileID: 0}
m_RemovedComponents: []
m_SourcePrefab: {fileID: 100100000, guid: 21929f2cd75aeaf4190f37571e8e5ff0, type: 3}
--- !u!1 &1040642968
GameObject:
m_ObjectHideFlags: 0
@@ -3314,12 +3133,6 @@ RectTransform:
m_AnchoredPosition: {x: 0, y: 0}
m_SizeDelta: {x: 0, y: 0}
m_Pivot: {x: 0, y: 0}
--- !u!224 &1120482552 stripped
RectTransform:
m_CorrespondingSourceObject: {fileID: 1950821458490172548, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
m_PrefabInstance: {fileID: 1165295241}
m_PrefabAsset: {fileID: 0}
--- !u!1 &1137636944
GameObject:
m_ObjectHideFlags: 0
@@ -3625,191 +3438,6 @@ CanvasRenderer:
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1161502693}
m_CullTransparentMesh: 1
--- !u!1001 &1165295241
PrefabInstance:
m_ObjectHideFlags: 0
serializedVersion: 2
m_Modification:
m_TransformParent: {fileID: 1748260183}
m_Modifications:
- target: {fileID: 196868636178997228, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_AnchorMax.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 196868636178997228, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_AnchorMin.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 196868636178997228, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_SizeDelta.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 196868636178997228, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_SizeDelta.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 196868636178997228, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_AnchoredPosition.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 196868636178997228, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_AnchoredPosition.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 262420016426466097, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_Sprite
value:
objectReference: {fileID: 21300000, guid: b20f2df41ebe8f84dada702db850866b,
type: 3}
- target: {fileID: 1950821457908238818, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_text
value: Settings
objectReference: {fileID: 0}
- target: {fileID: 1950821457908238820, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_AnchorMax.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1950821457908238820, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_AnchorMin.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1950821457908238820, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_SizeDelta.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1950821457908238820, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_SizeDelta.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1950821457908238820, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_AnchoredPosition.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1950821457908238820, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_AnchoredPosition.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1950821458490172548, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_RootOrder
value: 4
objectReference: {fileID: 0}
- target: {fileID: 1950821458490172548, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_AnchorMax.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1950821458490172548, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_AnchorMin.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1950821458490172548, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_SizeDelta.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1950821458490172548, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_SizeDelta.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1950821458490172548, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_LocalPosition.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1950821458490172548, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_LocalPosition.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1950821458490172548, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_AnchoredPosition.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1950821458490172548, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_AnchoredPosition.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1950821458490172548, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_LocalEulerAnglesHint.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1950821458490172548, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_LocalEulerAnglesHint.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1950821458490172548, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_LocalEulerAnglesHint.z
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1950821458490172551, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_Name
value: Tab (4)
objectReference: {fileID: 0}
- target: {fileID: 8933519220164484658, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_AnchorMax.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8933519220164484658, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_AnchorMax.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8933519220164484658, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_AnchorMin.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8933519220164484658, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_SizeDelta.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8933519220164484658, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_SizeDelta.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8933519220164484658, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_LocalPosition.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8933519220164484658, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_AnchoredPosition.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8933519220164484658, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_AnchoredPosition.y
value: 0
objectReference: {fileID: 0}
m_RemovedComponents: []
m_SourcePrefab: {fileID: 100100000, guid: 21929f2cd75aeaf4190f37571e8e5ff0, type: 3}
--- !u!1 &1177404486
GameObject:
m_ObjectHideFlags: 0
@@ -4073,12 +3701,6 @@ MonoBehaviour:
m_ChildScaleWidth: 0
m_ChildScaleHeight: 0
m_ReverseArrangement: 0
--- !u!224 &1492817113 stripped
RectTransform:
m_CorrespondingSourceObject: {fileID: 1950821458490172548, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
m_PrefabInstance: {fileID: 1021339990}
m_PrefabAsset: {fileID: 0}
--- !u!1 &1493443250
GameObject:
m_ObjectHideFlags: 0
@@ -4158,191 +3780,6 @@ MonoBehaviour:
m_ChildScaleWidth: 0
m_ChildScaleHeight: 0
m_ReverseArrangement: 0
--- !u!1001 &1498298880
PrefabInstance:
m_ObjectHideFlags: 0
serializedVersion: 2
m_Modification:
m_TransformParent: {fileID: 1748260183}
m_Modifications:
- target: {fileID: 196868636178997228, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_AnchorMax.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 196868636178997228, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_AnchorMin.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 196868636178997228, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_SizeDelta.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 196868636178997228, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_SizeDelta.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 196868636178997228, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_AnchoredPosition.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 196868636178997228, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_AnchoredPosition.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 262420016426466097, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_Sprite
value:
objectReference: {fileID: 21300000, guid: 15cf38e3a4deaec4cb102518f1ec7bf9,
type: 3}
- target: {fileID: 1950821457908238818, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_text
value: Official
objectReference: {fileID: 0}
- target: {fileID: 1950821457908238820, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_AnchorMax.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1950821457908238820, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_AnchorMin.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1950821457908238820, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_SizeDelta.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1950821457908238820, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_SizeDelta.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1950821457908238820, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_AnchoredPosition.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1950821457908238820, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_AnchoredPosition.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1950821458490172548, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_RootOrder
value: 1
objectReference: {fileID: 0}
- target: {fileID: 1950821458490172548, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_AnchorMax.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1950821458490172548, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_AnchorMin.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1950821458490172548, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_SizeDelta.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1950821458490172548, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_SizeDelta.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1950821458490172548, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_LocalPosition.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1950821458490172548, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_LocalPosition.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1950821458490172548, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_AnchoredPosition.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1950821458490172548, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_AnchoredPosition.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1950821458490172548, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_LocalEulerAnglesHint.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1950821458490172548, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_LocalEulerAnglesHint.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1950821458490172548, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_LocalEulerAnglesHint.z
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1950821458490172551, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_Name
value: Tab (1)
objectReference: {fileID: 0}
- target: {fileID: 8933519220164484658, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_AnchorMax.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8933519220164484658, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_AnchorMax.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8933519220164484658, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_AnchorMin.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8933519220164484658, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_SizeDelta.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8933519220164484658, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_SizeDelta.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8933519220164484658, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_LocalPosition.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8933519220164484658, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_AnchoredPosition.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8933519220164484658, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
propertyPath: m_AnchoredPosition.y
value: 0
objectReference: {fileID: 0}
m_RemovedComponents: []
m_SourcePrefab: {fileID: 100100000, guid: 21929f2cd75aeaf4190f37571e8e5ff0, type: 3}
--- !u!1 &1514109545
GameObject:
m_ObjectHideFlags: 0
@@ -4420,12 +3857,6 @@ CanvasRenderer:
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1514109545}
m_CullTransparentMesh: 1
--- !u!224 &1573995060 stripped
RectTransform:
m_CorrespondingSourceObject: {fileID: 1950821458490172548, guid: 21929f2cd75aeaf4190f37571e8e5ff0,
type: 3}
m_PrefabInstance: {fileID: 2088319162}
m_PrefabAsset: {fileID: 0}
--- !u!1 &1585700337
GameObject:
m_ObjectHideFlags: 0
@@ -4741,12 +4172,7 @@ RectTransform:
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children:
- {fileID: 908805178}
- {fileID: 769556386}
- {fileID: 1492817113}
- {fileID: 1573995060}
- {fileID: 1120482552}
m_Children: []
m_Father: {fileID: 556888409}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}