diff --git a/Assets/Data/ChampionsEnum.cs b/Assets/Data/ChampionsEnum.cs deleted file mode 100644 index 89ca738..0000000 --- a/Assets/Data/ChampionsEnum.cs +++ /dev/null @@ -1,66 +0,0 @@ -using System; - -[Flags] -public enum ChampionsEnum : long -{ - ASHE = 1L << 0, - BLITZCRANK = 1L << 1, - ELISE = 1L << 2, - JAX = 1L << 3, - JAYCE = 1L << 4, - LILLIA = 1L << 5, - NOMSY = 1L << 6, - POPPY = 1L << 7, - SERAPHINE = 1L << 8, - SORAKA = 1L << 9, - TWITCH = 1L << 10, - WARWICK = 1L << 11, - ZIGGS = 1L << 12, - ZOE = 1L << 13, - AHRI = 1L << 14, - AKALI = 1L << 15, - CASSIOPEIA = 1L << 16, - GALIO = 1L << 17, - KASSADIN = 1L << 18, - KOGMAW = 1L << 19, - NILAH = 1L << 20, - NUNU = 1L << 21, - RUMBLE = 1L << 22, - SHYVANA = 1L << 23, - SYNDRA = 1L << 24, - TRISTANA = 1L << 25, - ZILEAN = 1L << 26, - BARD = 1L << 27, - EZREAL = 1L << 28, - HECARIM = 1L << 29, - HWEI = 1L << 30, - JINX = 1L << 31, - KATARINA = 1L << 32, - MORDEKAISER = 1L << 33, - NEEKO = 1L << 34, - SHEN = 1L << 35, - SWAIN = 1L << 36, - VEIGAR = 1L << 37, - VEX = 1L << 38, - WUKONG = 1L << 39, - FIORA = 1L << 40, - GWEN = 1L << 41, - KALISTA = 1L << 42, - KARMA = 1L << 43, - NAMI = 1L << 44, - NASUS = 1L << 45, - OLAF = 1L << 46, - RAKAN = 1L << 47, - RYZE = 1L << 48, - TAHMKENCH = 1L << 49, - TARIC = 1L << 50, - VARUS = 1L << 51, - BRIAR = 1L << 52, - CAMILLE = 1L << 53, - DIANA = 1L << 54, - MILLIO = 1L << 55, - MORGANA = 1L << 56, - NORRA = 1L << 57, - SMOLDER = 1L << 58, - XERATH = 1L << 59, -} diff --git a/Assets/Data/TraitSelectorManager.cs b/Assets/Data/TraitSelectorManager.cs deleted file mode 100644 index 2c1d71b..0000000 --- a/Assets/Data/TraitSelectorManager.cs +++ /dev/null @@ -1,83 +0,0 @@ -using System.Collections; -using System.Collections.Generic; -using Assets.Data; -using TMPro; -using UnityEngine; - -public class TraitSelectorManager : MonoBehaviour -{ - [SerializeField] - private TMP_InputField _compositionSize; - - [SerializeField] - private ChampionSelector _mandatorychampionSelector; - - [SerializeField] - private ChampionSelector _acceptablechampionSelector; - - [SerializeField] - private EmblemSelector _emblemSelector; - - [SerializeField] - private int _traitThreshold = 7; - - [SerializeField] public int _compositionPerFrame = 100; - public void ListAllActivableCompo() - { - var emblemList = _emblemSelector.GetEmblems(); - var mandatoryChampions = ChampionUtils.ToLong(_mandatorychampionSelector.GetSelectedChampions()); - var acceptableChampions = ChampionUtils.ToLong(_acceptablechampionSelector.GetSelectedChampions()); - int compositionSize = _compositionSize.text == "" ? 1 : int.Parse(_compositionSize.text); - - Coroutine coroutine = StartCoroutine(ComputeCompositionAsync(mandatoryChampions, acceptableChampions, compositionSize, emblemList)); - } - - public IEnumerator ComputeCompositionAsync(long mandatoryChampions, long acceptableChampions, int compositionSize, Dictionary emblemList) - { - var compositions = TraitsMapping.GenerateCombinations(mandatoryChampions, acceptableChampions, compositionSize); - Debug.Log($"{compositions.Count} Compositions generated."); - yield return 0f; - int compHandled = 0; - int totalCompHandled = 0; - int totalSucessfulCompFound = 0; - foreach (var composition in compositions) - { - int activeSynergies = GetActiveSynergy(composition, emblemList); - compHandled++; - totalCompHandled++; - if(TraitUtils.TraitCountFromInt(activeSynergies) >= _traitThreshold) - { - totalSucessfulCompFound++; - HashSet champions = ChampionUtils.FromLong(composition); - var s = TraitsMapping.CompositionToString(champions); - Debug.Log($"{totalSucessfulCompFound}: {s} - {TraitUtils.TraitCountFromInt(activeSynergies)}"); - } - if(compHandled >= _compositionPerFrame) - { - Debug.LogWarning($"{totalSucessfulCompFound} : {totalCompHandled} Compositions handled."); - compHandled = 0; - yield return 0f; - } - } - - Debug.Log("Total successful compositions found: " + totalSucessfulCompFound); - } - - private int GetActiveSynergy(long combination, Dictionary emblemList) - { - var synergies = TraitsMapping.TraitCountInCompo(combination); - - var synergiesWithEmblem = TraitsMapping.MergeEmblems( - synergies, - emblemList - ); - var activeSynergies = TraitsMapping.FilterActiveTraits(synergiesWithEmblem); - return activeSynergies; - - } - - public void StopAll() - { - StopAllCoroutines(); - } -} diff --git a/Assets/Data/TraitsEnum.cs b/Assets/Data/TraitsEnum.cs deleted file mode 100644 index 0fe60e4..0000000 --- a/Assets/Data/TraitsEnum.cs +++ /dev/null @@ -1,29 +0,0 @@ -using System; - -[Flags] -public enum TraitsEnum : int -{ - ARCANA = 1 << 0, - CHRONO = 1 << 1, - DRAGON = 1 << 2, - DRUID = 1 << 3, - ELDRICHT = 1 << 4, - FAERIE = 1 << 5, - FROST = 1 << 6, - HONEYMANCY = 1 << 7, - PORTAL = 1 << 8, - PYRO = 1 << 9, - SUGARCRAFT = 1 << 10, - WITCHCRAFT = 1 << 11, - BASTION = 1 << 12, - BLASTER = 1 << 13, - HUNTER = 1 << 14, - INCANTATOR = 1 << 15, - MAGE = 1 << 16, - MULTISTRIKER = 1 << 17, - PRESERVER = 1 << 18, - SCHOLAR = 1 << 19, - SHAPESHIFTER = 1 << 20, - VANGUARD = 1 << 21, - WARRIOR = 1 << 22 -} \ No newline at end of file diff --git a/Assets/Data/TraitsMapping.cs b/Assets/Data/TraitsMapping.cs deleted file mode 100644 index 1658f58..0000000 --- a/Assets/Data/TraitsMapping.cs +++ /dev/null @@ -1,1023 +0,0 @@ -using System.Collections; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using NUnit.Framework; -using UnityEngine; - -namespace Assets.Data -{ - public class TraitsMapping : MonoBehaviour - { - // long for champion, int for traits - public static int TotalChampionCout = 60; - public static int TotalTraitCount = 23; - public static Dictionary ChampsTraits = new Dictionary - { - { - (long)ChampionsEnum.ASHE, - TraitUtils.ToInt( - new HashSet { TraitsEnum.ELDRICHT, TraitsEnum.MULTISTRIKER } - ) - }, - { - (long)ChampionsEnum.BLITZCRANK, - TraitUtils.ToInt( - new HashSet { TraitsEnum.HONEYMANCY, TraitsEnum.VANGUARD } - ) - }, - { - (long)ChampionsEnum.ELISE, - TraitUtils.ToInt( - new HashSet { TraitsEnum.ELDRICHT, TraitsEnum.SHAPESHIFTER } - ) - }, - { - (long)ChampionsEnum.JAX, - TraitUtils.ToInt( - new HashSet { TraitsEnum.CHRONO, TraitsEnum.MULTISTRIKER } - ) - }, - { - (long)ChampionsEnum.JAYCE, - TraitUtils.ToInt( - new HashSet { TraitsEnum.PORTAL, TraitsEnum.SHAPESHIFTER } - ) - }, - { - (long)ChampionsEnum.LILLIA, - TraitUtils.ToInt(new HashSet { TraitsEnum.FAERIE, TraitsEnum.BASTION }) - }, - { - (long)ChampionsEnum.NOMSY, - TraitUtils.ToInt(new HashSet { TraitsEnum.DRAGON, TraitsEnum.HUNTER }) - }, - { - (long)ChampionsEnum.POPPY, - TraitUtils.ToInt( - new HashSet { TraitsEnum.WITCHCRAFT, TraitsEnum.BASTION } - ) - }, - { - (long)ChampionsEnum.SERAPHINE, - TraitUtils.ToInt(new HashSet { TraitsEnum.FAERIE, TraitsEnum.MAGE }) - }, - { - (long)ChampionsEnum.SORAKA, - TraitUtils.ToInt(new HashSet { TraitsEnum.SUGARCRAFT, TraitsEnum.MAGE }) - }, - { - (long)ChampionsEnum.TWITCH, - TraitUtils.ToInt(new HashSet { TraitsEnum.FROST, TraitsEnum.HUNTER }) - }, - { - (long)ChampionsEnum.WARWICK, - TraitUtils.ToInt(new HashSet { TraitsEnum.FROST, TraitsEnum.VANGUARD }) - }, - { - (long)ChampionsEnum.ZIGGS, - TraitUtils.ToInt( - new HashSet { TraitsEnum.HONEYMANCY, TraitsEnum.INCANTATOR } - ) - }, - { - (long)ChampionsEnum.ZOE, - TraitUtils.ToInt( - new HashSet - { - TraitsEnum.WITCHCRAFT, - TraitsEnum.SCHOLAR, - TraitsEnum.PORTAL, - } - ) - }, - { - (long)ChampionsEnum.AHRI, - TraitUtils.ToInt(new HashSet { TraitsEnum.ARCANA, TraitsEnum.SCHOLAR }) - }, - { - (long)ChampionsEnum.AKALI, - TraitUtils.ToInt( - new HashSet - { - TraitsEnum.PYRO, - TraitsEnum.MULTISTRIKER, - TraitsEnum.WARRIOR, - } - ) - }, - { - (long)ChampionsEnum.CASSIOPEIA, - TraitUtils.ToInt( - new HashSet { TraitsEnum.WITCHCRAFT, TraitsEnum.INCANTATOR } - ) - }, - { - (long)ChampionsEnum.GALIO, - TraitUtils.ToInt( - new HashSet - { - TraitsEnum.PORTAL, - TraitsEnum.VANGUARD, - TraitsEnum.MAGE, - } - ) - }, - { - (long)ChampionsEnum.KASSADIN, - TraitUtils.ToInt( - new HashSet { TraitsEnum.PORTAL, TraitsEnum.MULTISTRIKER } - ) - }, - { - (long)ChampionsEnum.KOGMAW, - TraitUtils.ToInt( - new HashSet { TraitsEnum.HONEYMANCY, TraitsEnum.HUNTER } - ) - }, - { - (long)ChampionsEnum.NILAH, - TraitUtils.ToInt( - new HashSet { TraitsEnum.ELDRICHT, TraitsEnum.WARRIOR } - ) - }, - { - (long)ChampionsEnum.NUNU, - TraitUtils.ToInt( - new HashSet { TraitsEnum.HONEYMANCY, TraitsEnum.BASTION } - ) - }, - { - (long)ChampionsEnum.RUMBLE, - TraitUtils.ToInt( - new HashSet - { - TraitsEnum.SUGARCRAFT, - TraitsEnum.BLASTER, - TraitsEnum.VANGUARD, - } - ) - }, - { - (long)ChampionsEnum.SHYVANA, - TraitUtils.ToInt( - new HashSet { TraitsEnum.DRAGON, TraitsEnum.SHAPESHIFTER } - ) - }, - { - (long)ChampionsEnum.SYNDRA, - TraitUtils.ToInt( - new HashSet { TraitsEnum.ELDRICHT, TraitsEnum.INCANTATOR } - ) - }, - { - (long)ChampionsEnum.TRISTANA, - TraitUtils.ToInt(new HashSet { TraitsEnum.FAERIE, TraitsEnum.BLASTER }) - }, - { - (long)ChampionsEnum.ZILEAN, - TraitUtils.ToInt( - new HashSet - { - TraitsEnum.FROST, - TraitsEnum.CHRONO, - TraitsEnum.PRESERVER, - } - ) - }, - { - (long)ChampionsEnum.BARD, - TraitUtils.ToInt( - new HashSet - { - TraitsEnum.SUGARCRAFT, - TraitsEnum.SCHOLAR, - TraitsEnum.PRESERVER, - } - ) - }, - { - (long)ChampionsEnum.EZREAL, - TraitUtils.ToInt(new HashSet { TraitsEnum.PORTAL, TraitsEnum.BLASTER }) - }, - { - (long)ChampionsEnum.HECARIM, - TraitUtils.ToInt( - new HashSet - { - TraitsEnum.ARCANA, - TraitsEnum.MULTISTRIKER, - TraitsEnum.BASTION, - } - ) - }, - { - (long)ChampionsEnum.HWEI, - TraitUtils.ToInt(new HashSet { TraitsEnum.FROST, TraitsEnum.BLASTER }) - }, - { - (long)ChampionsEnum.JINX, - TraitUtils.ToInt( - new HashSet { TraitsEnum.SUGARCRAFT, TraitsEnum.HUNTER } - ) - }, - { - (long)ChampionsEnum.KATARINA, - TraitUtils.ToInt(new HashSet { TraitsEnum.FAERIE, TraitsEnum.WARRIOR }) - }, - { - (long)ChampionsEnum.MORDEKAISER, - TraitUtils.ToInt( - new HashSet { TraitsEnum.ELDRICHT, TraitsEnum.VANGUARD } - ) - }, - { - (long)ChampionsEnum.NEEKO, - TraitUtils.ToInt( - new HashSet { TraitsEnum.WITCHCRAFT, TraitsEnum.SHAPESHIFTER } - ) - }, - { - (long)ChampionsEnum.SHEN, - TraitUtils.ToInt(new HashSet { TraitsEnum.PYRO, TraitsEnum.BASTION }) - }, - { - (long)ChampionsEnum.SWAIN, - TraitUtils.ToInt( - new HashSet { TraitsEnum.FROST, TraitsEnum.SHAPESHIFTER } - ) - }, - { - (long)ChampionsEnum.VEIGAR, - TraitUtils.ToInt(new HashSet { TraitsEnum.HONEYMANCY, TraitsEnum.MAGE }) - }, - { - (long)ChampionsEnum.VEX, - TraitUtils.ToInt(new HashSet { TraitsEnum.CHRONO, TraitsEnum.MAGE }) - }, - { - (long)ChampionsEnum.WUKONG, - TraitUtils.ToInt(new HashSet { TraitsEnum.DRUID }) - }, - { - (long)ChampionsEnum.FIORA, - TraitUtils.ToInt( - new HashSet { TraitsEnum.WITCHCRAFT, TraitsEnum.WARRIOR } - ) - }, - { - (long)ChampionsEnum.GWEN, - TraitUtils.ToInt( - new HashSet { TraitsEnum.SUGARCRAFT, TraitsEnum.WARRIOR } - ) - }, - { - (long)ChampionsEnum.KALISTA, - TraitUtils.ToInt( - new HashSet { TraitsEnum.FAERIE, TraitsEnum.MULTISTRIKER } - ) - }, - { - (long)ChampionsEnum.KARMA, - TraitUtils.ToInt( - new HashSet { TraitsEnum.INCANTATOR, TraitsEnum.CHRONO } - ) - }, - { - (long)ChampionsEnum.NAMI, - TraitUtils.ToInt(new HashSet { TraitsEnum.ELDRICHT, TraitsEnum.MAGE }) - }, - { - (long)ChampionsEnum.NASUS, - TraitUtils.ToInt( - new HashSet { TraitsEnum.SHAPESHIFTER, TraitsEnum.PYRO } - ) - }, - { - (long)ChampionsEnum.OLAF, - TraitUtils.ToInt(new HashSet { TraitsEnum.FROST, TraitsEnum.HUNTER }) - }, - { - (long)ChampionsEnum.RAKAN, - TraitUtils.ToInt( - new HashSet { TraitsEnum.FAERIE, TraitsEnum.PRESERVER } - ) - }, - { - (long)ChampionsEnum.RYZE, - TraitUtils.ToInt(new HashSet { TraitsEnum.PORTAL, TraitsEnum.SCHOLAR }) - }, - { - (long)ChampionsEnum.TAHMKENCH, - TraitUtils.ToInt(new HashSet { TraitsEnum.ARCANA, TraitsEnum.VANGUARD }) - }, - { - (long)ChampionsEnum.TARIC, - TraitUtils.ToInt(new HashSet { TraitsEnum.PORTAL, TraitsEnum.BASTION }) - }, - { - (long)ChampionsEnum.VARUS, - TraitUtils.ToInt(new HashSet { TraitsEnum.PYRO, TraitsEnum.BLASTER }) - }, - { - (long)ChampionsEnum.BRIAR, - TraitUtils.ToInt( - new HashSet { TraitsEnum.ELDRICHT, TraitsEnum.SHAPESHIFTER } - ) - }, - { - (long)ChampionsEnum.CAMILLE, - TraitUtils.ToInt( - new HashSet { TraitsEnum.CHRONO, TraitsEnum.MULTISTRIKER } - ) - }, - { - (long)ChampionsEnum.DIANA, - TraitUtils.ToInt(new HashSet { TraitsEnum.FROST, TraitsEnum.BASTION }) - }, - { - (long)ChampionsEnum.MILLIO, - TraitUtils.ToInt(new HashSet { TraitsEnum.FAERIE, TraitsEnum.SCHOLAR }) - }, - { - (long)ChampionsEnum.MORGANA, - TraitUtils.ToInt( - new HashSet { TraitsEnum.WITCHCRAFT, TraitsEnum.PRESERVER } - ) - }, - { - (long)ChampionsEnum.NORRA, - TraitUtils.ToInt(new HashSet { TraitsEnum.PORTAL, TraitsEnum.MAGE }) - }, - { - (long)ChampionsEnum.SMOLDER, - TraitUtils.ToInt(new HashSet { TraitsEnum.DRAGON, TraitsEnum.BLASTER }) - }, - { - (long)ChampionsEnum.XERATH, - TraitUtils.ToInt(new HashSet { TraitsEnum.ARCANA }) - }, - }; - - // int for trait and long for list of champions - public static Dictionary TraitsChamp = new Dictionary - { - { - (int)TraitsEnum.ARCANA, - ChampionUtils.ToLong( - new HashSet() - { - ChampionsEnum.AHRI, - ChampionsEnum.HECARIM, - ChampionsEnum.TAHMKENCH, - ChampionsEnum.XERATH, - } - ) - }, - { - (int)TraitsEnum.CHRONO, - ChampionUtils.ToLong( - new HashSet() - { - ChampionsEnum.CAMILLE, - ChampionsEnum.JAX, - ChampionsEnum.KARMA, - ChampionsEnum.VEX, - ChampionsEnum.ZILEAN, - } - ) - }, - { - (int)TraitsEnum.DRAGON, - ChampionUtils.ToLong( - new HashSet() - { - ChampionsEnum.SMOLDER, - ChampionsEnum.SHYVANA, - ChampionsEnum.NOMSY, - } - ) - }, - { - (int)TraitsEnum.DRUID, - ChampionUtils.ToLong(new HashSet() { ChampionsEnum.WUKONG }) - }, - { - (int)TraitsEnum.ELDRICHT, - ChampionUtils.ToLong( - new HashSet() - { - ChampionsEnum.ASHE, - ChampionsEnum.BRIAR, - ChampionsEnum.ELISE, - ChampionsEnum.MORDEKAISER, - ChampionsEnum.NAMI, - ChampionsEnum.NILAH, - ChampionsEnum.SYNDRA, - } - ) - }, - { - (int)TraitsEnum.FAERIE, - ChampionUtils.ToLong( - new HashSet() - { - ChampionsEnum.KALISTA, - ChampionsEnum.KATARINA, - ChampionsEnum.LILLIA, - ChampionsEnum.MILLIO, - ChampionsEnum.RAKAN, - ChampionsEnum.SERAPHINE, - ChampionsEnum.TRISTANA, - } - ) - }, - { - (int)TraitsEnum.FROST, - ChampionUtils.ToLong( - new HashSet() - { - ChampionsEnum.DIANA, - ChampionsEnum.HWEI, - ChampionsEnum.OLAF, - ChampionsEnum.SWAIN, - ChampionsEnum.TWITCH, - ChampionsEnum.WARWICK, - ChampionsEnum.ZILEAN, - } - ) - }, - { - (int)TraitsEnum.HONEYMANCY, - ChampionUtils.ToLong( - new HashSet() - { - ChampionsEnum.BLITZCRANK, - ChampionsEnum.KOGMAW, - ChampionsEnum.NUNU, - ChampionsEnum.VEIGAR, - ChampionsEnum.ZIGGS, - } - ) - }, - { - (int)TraitsEnum.PORTAL, - ChampionUtils.ToLong( - new HashSet() - { - ChampionsEnum.EZREAL, - ChampionsEnum.GALIO, - ChampionsEnum.JAYCE, - ChampionsEnum.KASSADIN, - ChampionsEnum.NORRA, - ChampionsEnum.RYZE, - ChampionsEnum.TARIC, - ChampionsEnum.ZOE, - } - ) - }, - { - (int)TraitsEnum.PYRO, - ChampionUtils.ToLong( - new HashSet() - { - ChampionsEnum.AKALI, - ChampionsEnum.NASUS, - ChampionsEnum.SHEN, - ChampionsEnum.VARUS, - } - ) - }, - { - (int)TraitsEnum.SUGARCRAFT, - ChampionUtils.ToLong( - new HashSet() - { - ChampionsEnum.BARD, - ChampionsEnum.GWEN, - ChampionsEnum.JINX, - ChampionsEnum.RUMBLE, - ChampionsEnum.SORAKA, - } - ) - }, - { - (int)TraitsEnum.WITCHCRAFT, - ChampionUtils.ToLong( - new HashSet() - { - ChampionsEnum.CASSIOPEIA, - ChampionsEnum.FIORA, - ChampionsEnum.MORGANA, - ChampionsEnum.NEEKO, - ChampionsEnum.POPPY, - ChampionsEnum.ZOE, - } - ) - }, - { - (int)TraitsEnum.BASTION, - ChampionUtils.ToLong( - new HashSet() - { - ChampionsEnum.DIANA, - ChampionsEnum.HECARIM, - ChampionsEnum.LILLIA, - ChampionsEnum.NUNU, - ChampionsEnum.POPPY, - ChampionsEnum.SHEN, - ChampionsEnum.TARIC, - } - ) - }, - { - (int)TraitsEnum.BLASTER, - ChampionUtils.ToLong( - new HashSet() - { - ChampionsEnum.EZREAL, - ChampionsEnum.HWEI, - ChampionsEnum.RUMBLE, - ChampionsEnum.SMOLDER, - ChampionsEnum.TRISTANA, - ChampionsEnum.VARUS, - } - ) - }, - { - (int)TraitsEnum.HUNTER, - ChampionUtils.ToLong( - new HashSet() - { - ChampionsEnum.JINX, - ChampionsEnum.KOGMAW, - ChampionsEnum.NOMSY, - ChampionsEnum.OLAF, - ChampionsEnum.TWITCH, - } - ) - }, - { - (int)TraitsEnum.INCANTATOR, - ChampionUtils.ToLong( - new HashSet() - { - ChampionsEnum.CASSIOPEIA, - ChampionsEnum.KARMA, - ChampionsEnum.SYNDRA, - ChampionsEnum.ZIGGS, - } - ) - }, - { - (int)TraitsEnum.MAGE, - ChampionUtils.ToLong( - new HashSet() - { - ChampionsEnum.GALIO, - ChampionsEnum.NAMI, - ChampionsEnum.NORRA, - ChampionsEnum.SERAPHINE, - ChampionsEnum.SORAKA, - ChampionsEnum.VEIGAR, - ChampionsEnum.VEX, - } - ) - }, - { - (int)TraitsEnum.MULTISTRIKER, - ChampionUtils.ToLong( - new HashSet() - { - ChampionsEnum.AKALI, - ChampionsEnum.ASHE, - ChampionsEnum.CAMILLE, - ChampionsEnum.HECARIM, - ChampionsEnum.JAX, - ChampionsEnum.KALISTA, - ChampionsEnum.KASSADIN, - } - ) - }, - { - (int)TraitsEnum.PRESERVER, - ChampionUtils.ToLong( - new HashSet() - { - ChampionsEnum.BARD, - ChampionsEnum.MORGANA, - ChampionsEnum.RAKAN, - ChampionsEnum.ZILEAN, - } - ) - }, - { - (int)TraitsEnum.SCHOLAR, - ChampionUtils.ToLong( - new HashSet() - { - ChampionsEnum.AHRI, - ChampionsEnum.BARD, - ChampionsEnum.MILLIO, - ChampionsEnum.RYZE, - ChampionsEnum.ZOE, - } - ) - }, - { - (int)TraitsEnum.SHAPESHIFTER, - ChampionUtils.ToLong( - new HashSet() - { - ChampionsEnum.BRIAR, - ChampionsEnum.ELISE, - ChampionsEnum.JAYCE, - ChampionsEnum.NASUS, - ChampionsEnum.NEEKO, - ChampionsEnum.SHYVANA, - ChampionsEnum.SWAIN, - } - ) - }, - { - (int)TraitsEnum.VANGUARD, - ChampionUtils.ToLong( - new HashSet() - { - ChampionsEnum.BLITZCRANK, - ChampionsEnum.GALIO, - ChampionsEnum.MORDEKAISER, - ChampionsEnum.RUMBLE, - ChampionsEnum.TAHMKENCH, - ChampionsEnum.WARWICK, - } - ) - }, - { - (int)TraitsEnum.WARRIOR, - ChampionUtils.ToLong( - new HashSet - { - ChampionsEnum.AKALI, - ChampionsEnum.FIORA, - ChampionsEnum.GWEN, - ChampionsEnum.KATARINA, - ChampionsEnum.NILAH, - } - ) - }, - }; - - public Dictionary ChampionCost = new Dictionary() - { - { (long)ChampionsEnum.ASHE, 1 }, - { (long)ChampionsEnum.BLITZCRANK, 1 }, - { (long)ChampionsEnum.ELISE, 1 }, - { (long)ChampionsEnum.JAX, 1 }, - { (long)ChampionsEnum.JAYCE, 1 }, - { (long)ChampionsEnum.LILLIA, 1 }, - { (long)ChampionsEnum.NOMSY, 1 }, - { (long)ChampionsEnum.POPPY, 1 }, - { (long)ChampionsEnum.SERAPHINE, 1 }, - { (long)ChampionsEnum.SORAKA, 1 }, - { (long)ChampionsEnum.TWITCH, 1 }, - { (long)ChampionsEnum.WARWICK, 1 }, - { (long)ChampionsEnum.ZIGGS, 1 }, - { (long)ChampionsEnum.ZOE, 1 }, - { (long)ChampionsEnum.AHRI, 2 }, - { (long)ChampionsEnum.AKALI, 2 }, - { (long)ChampionsEnum.CASSIOPEIA, 2 }, - { (long)ChampionsEnum.GALIO, 2 }, - { (long)ChampionsEnum.KASSADIN, 2 }, - { (long)ChampionsEnum.KOGMAW, 2 }, - { (long)ChampionsEnum.NILAH, 2 }, - { (long)ChampionsEnum.NUNU, 2 }, - { (long)ChampionsEnum.RUMBLE, 2 }, - { (long)ChampionsEnum.SHYVANA, 2 }, - { (long)ChampionsEnum.SYNDRA, 2 }, - { (long)ChampionsEnum.TRISTANA, 2 }, - { (long)ChampionsEnum.ZILEAN, 2 }, - { (long)ChampionsEnum.BARD, 3 }, - { (long)ChampionsEnum.EZREAL, 3 }, - { (long)ChampionsEnum.HECARIM, 3 }, - { (long)ChampionsEnum.HWEI, 3 }, - { (long)ChampionsEnum.JINX, 3 }, - { (long)ChampionsEnum.KATARINA, 3 }, - { (long)ChampionsEnum.MORDEKAISER, 3 }, - { (long)ChampionsEnum.NEEKO, 3 }, - { (long)ChampionsEnum.SHEN, 3 }, - { (long)ChampionsEnum.SWAIN, 3 }, - { (long)ChampionsEnum.VEIGAR, 3 }, - { (long)ChampionsEnum.VEX, 3 }, - { (long)ChampionsEnum.WUKONG, 3 }, - { (long)ChampionsEnum.FIORA, 4 }, - { (long)ChampionsEnum.GWEN, 4 }, - { (long)ChampionsEnum.KALISTA, 4 }, - { (long)ChampionsEnum.KARMA, 4 }, - { (long)ChampionsEnum.NAMI, 4 }, - { (long)ChampionsEnum.NASUS, 4 }, - { (long)ChampionsEnum.OLAF, 4 }, - { (long)ChampionsEnum.RAKAN, 4 }, - { (long)ChampionsEnum.RYZE, 4 }, - { (long)ChampionsEnum.TAHMKENCH, 4 }, - { (long)ChampionsEnum.TARIC, 4 }, - { (long)ChampionsEnum.VARUS, 4 }, - { (long)ChampionsEnum.BRIAR, 5 }, - { (long)ChampionsEnum.CAMILLE, 5 }, - { (long)ChampionsEnum.DIANA, 5 }, - { (long)ChampionsEnum.MILLIO, 5 }, - { (long)ChampionsEnum.MORGANA, 5 }, - { (long)ChampionsEnum.NORRA, 5 }, - { (long)ChampionsEnum.SMOLDER, 5 }, - { (long)ChampionsEnum.XERATH, 5 }, - }; - - public static Dictionary> TraitsSteps = new Dictionary> - { - { - (int)TraitsEnum.ARCANA, - new List { 2, 3, 4, 5 } - }, - { - (int)TraitsEnum.CHRONO, - new List { 2, 4, 6 } - }, - { - (int)TraitsEnum.DRAGON, - new List { 2, 3 } - }, - { - (int)TraitsEnum.DRUID, - new List { 1 } - }, - { - (int)TraitsEnum.ELDRICHT, - new List { 3, 5, 7, 10 } - }, - { - (int)TraitsEnum.FAERIE, - new List { 3, 5, 7, 9 } - }, - { - (int)TraitsEnum.FROST, - new List { 3, 5, 7, 9 } - }, - { - (int)TraitsEnum.HONEYMANCY, - new List { 3, 5, 7 } - }, - { - (int)TraitsEnum.PORTAL, - new List { 3, 6, 8, 10 } - }, - { - (int)TraitsEnum.PYRO, - new List { 2, 3, 4, 5 } - }, - { - (int)TraitsEnum.SUGARCRAFT, - new List { 2, 4, 6 } - }, - { - (int)TraitsEnum.WITCHCRAFT, - new List { 2, 4, 6, 8 } - }, - { - (int)TraitsEnum.BASTION, - new List { 2, 4, 6, 8 } - }, - { - (int)TraitsEnum.BLASTER, - new List { 2, 4, 6 } - }, - { - (int)TraitsEnum.HUNTER, - new List { 2, 4, 6 } - }, - { - (int)TraitsEnum.INCANTATOR, - new List { 2, 4 } - }, - { - (int)TraitsEnum.MAGE, - new List { 3, 5, 7, 10 } - }, - { - (int)TraitsEnum.MULTISTRIKER, - new List { 3, 5, 7, 9 } - }, - { - (int)TraitsEnum.PRESERVER, - new List { 2, 3, 4, 5 } - }, - { - (int)TraitsEnum.SCHOLAR, - new List { 2, 4, 6 } - }, - { - (int)TraitsEnum.SHAPESHIFTER, - new List { 2, 4, 6, 8 } - }, - { - (int)TraitsEnum.VANGUARD, - new List { 2, 4, 6 } - }, - { - (int)TraitsEnum.WARRIOR, - new List { 2, 4, 6 } - }, - }; - - public static int GetMinimalActivation(int trait) - { - return TraitsSteps[trait][0]; - } - - public bool TraitEnabled(int trait, int traitChampCount) - { - return traitChampCount >= GetMinimalActivation(trait); - } - - /// - /// first int is the trait, second int is the number of champions with this trait - /// - /// - /// - public static Dictionary TraitCountInCompo(long compo) - { - Dictionary synergies = new Dictionary(); - for (int i = 0; i < TotalChampionCout; i++) - { - if ((compo & (1L << i)) != 0) - { - var champ = (long)(1L << i); - var traits = ChampsTraits[champ]; - // combine the traits within synergies using bitwise operation - for (int trait = 0; trait < TotalTraitCount; trait++) - { - if ((traits & (1 << trait)) != 0) - { - if (synergies.ContainsKey(1 << trait)) - { - synergies[1 << trait]++; - } - else - { - synergies.Add(1 << trait, 1); - } - } - } - } - } - - return synergies; - } - - /// - /// first int is trait, second int is the number of champions with this trait - /// output is int of the flag of active traits - /// - /// - /// - public static int FilterActiveTraits(Dictionary synergies) - { - int output = 0; - foreach (var kvp in synergies) - { - if (kvp.Value >= GetMinimalActivation(kvp.Key)) - { - output |= kvp.Key; - } - } - return output; - } - - /// - /// trait is the trait, count is the number of champions with this trait - /// - /// - /// - /// - public static Dictionary MergeEmblems( - Dictionary synergies, - Dictionary additionalEmblems - ) - { - Dictionary mergedEmblems = new Dictionary(); - - mergedEmblems = synergies - .Concat(additionalEmblems) - .GroupBy(x => x.Key) - .ToDictionary(x => x.Key, x => x.Sum(y => y.Value)); - return mergedEmblems; - } - - - public void DisplayTraits(Dictionary traits) - { - foreach (var kvp in traits) - { - Debug.Log($"{kvp.Key} : {kvp.Value}"); - } - } - - public string DisplayComposition(HashSet compo) - { - StringBuilder sb = new StringBuilder(); - foreach (var champ in compo) - { - sb.Append(champ.ToString() + " / "); - } - return sb.ToString(); - } - - - public static int MaxIntForCombinationOfn(int n) - { - return (1 << n) - 1; - } - - internal static string CompositionToString( - HashSet composition - ) - { - StringBuilder sb = new StringBuilder(); - foreach (var champ in composition) - { - sb.Append(champ.ToString() + " / "); - } - sb.Append(" --------- "); - // HashSet activeSynergies = FilterActiveTraits(ChampionUtils.ToLong(composition))); - // foreach (var trait in activeSynergies) - // { - // sb.Append(trait.ToString() + " / "); - // } - return sb.ToString(); - } - - /// - /// I have a list of champion that are fixed, in a long called mandatoryChamps. - /// I have a list of champions that are possible, in a long called possibleChamps. - /// I want to generate all possible combinations of champions that contain all mandatory champions. - /// I can use MaxIntForCombinationOfn to get the maximum number of possible combinations and iterate over all possible combination, - /// each bit of the combination will represent the nth champion in the list of possible champions, which is not a list but a long. - /// The composition will be composed of all the mandatory champs and some of the possible champs, to add up to the composition size exactly. - /// - /// - /// - /// - /// - public static List GenerateCombinations( - long mandatoryChamps, - long possibleChamps, - int compositionSize - ) { - possibleChamps = possibleChamps & ~mandatoryChamps; - - Assert.IsTrue((mandatoryChamps & possibleChamps) == 0); - - List compositions = new List(); - int champToSelectCount = compositionSize - ChampionUtils.NumberOfChampions(mandatoryChamps); - int possibleChampCount = ChampionUtils.NumberOfChampions(possibleChamps); - Assert.IsTrue(champToSelectCount >= 0); // else we have too many mandatory champs - HashSet combinations = BitWise.GetAllPermutation(champToSelectCount, possibleChampCount); - foreach (var combinationOfPossibleChamps in combinations) - { - var composition = SelectSublistOfChampion(possibleChamps, combinationOfPossibleChamps); - composition |= mandatoryChamps; - compositions.Add(composition); - } - return compositions; - } - - - - public static IEnumerator DisplayCompositions(List compositions) - { - Debug.Log("Number of compositions : " + compositions.Count); - yield return null; - foreach (var compo in compositions) - { - Debug.Log(CompositionToString(ChampionUtils.FromLong(compo))); - yield return null; - } - } - - public static long SelectSublistOfChampion(long accessibleChampions, long subselectedChampions) - { - var champs = ChampionUtils.FromLong(accessibleChampions).ToList(); - // this list of champ is ordered. I want to filter this with the subselectedChampions bit flag - // where all bit to 1 are the champions I want to keep, and all bit to 0 are the champions I want to remove - HashSet selectedChamps = new HashSet(); - - for (int i = 0; i < champs.Count; i++) - { - if ((subselectedChampions & (1L << i)) != 0) - { - selectedChamps.Add(champs[i]); - } - } - return ChampionUtils.ToLong(selectedChamps); - } - } -} diff --git a/Assets/ReferenceSet15.cs b/Assets/ReferenceSet15.cs new file mode 100644 index 0000000..5180387 --- /dev/null +++ b/Assets/ReferenceSet15.cs @@ -0,0 +1,69 @@ +/* +TFT Set 15 Champion Data +Format: Champion Name / Cost / Trait1 / Trait2 / (Trait3) + +Aatrox / 1 / Mighty Mech / Heavyweight / Juggernaut +Ahri / 3 / Star Guardian / Sorcerer +Akali / 4 / Supreme Cells / Executioner +Ashe / 4 / Crystal Gambit / Duelist +Braum / 5 / The Champ / Luchador / Bastion +Caitlyn / 3 / Battle Academia / Sniper +Darius / 3 / Supreme Cells / Heavyweight +Dr. Mundo / 2 / Luchador / Juggernaut +Ekko / 5 / Prodigy / Sorcerer / Strategist +Ezreal / 1 / Battle Academia / Prodigy +Gangplank / 2 / Mighty Mech / Duelist +Garen / 1 / Battle Academia / Bastion +Gnar / 1 / Luchador / Sniper +Gwen / 5 / Soul Fighter / Sorcerer +Janna / 2 / Crystal Gambit / Protector / Strategist +Jarvan IV / 4 / Mighty Mech / Strategist +Jayce / 3 / Battle Academia / Heavyweight +Jhin / 2 / Wraith / Sniper +Jinx / 4 / Star Guardian / Sniper +Kai'Sa / 2 / Supreme Cells / Duelist +Kalista / 1 / Soul Fighter / Executioner +Karma / 4 / Mighty Mech / Sorcerer +Katarina / 2 / Battle Academia / Executioner +Kayle / 1 / Wraith / Duelist +Kennen / 1 / Supreme Cells / Protector / Sorcerer +Kobuko / 2 / Mentor / Heavyweight +Kog'Maw / 3 / Monster Trainer +K'Sante / 4 / Wraith / Protector +Lee Sin / 5 / Stance Master / Duelist / Juggernaut / Executioner +Leona / 4 / Battle Academia / Bastion +Lucian / 1 / Mighty Mech / Sorcerer +Lulu / 3 / Monster Trainer +Lux / 2 / Soul Fighter / Sorcerer +Malphite / 1 / The Crew / Protector +Malzahar / 3 / Wraith / Prodigy +Naafiri / 1 / Soul Fighter / Juggernaut +Neeko / 3 / Star Guardian / Protector +Poppy / 4 / Star Guardian / Heavyweight +Rakan / 2 / Battle Academia / Protector +Rammus / 3 / Monster Trainer +Rell / 1 / Star Guardian / Bastion +Ryze / 4 / Mentor / Executioner / Strategist +Samira / 4 / Soul Fighter / Edgelord +Senna / 3 / Mighty Mech / Executioner +Seraphine / 5 / Star Guardian / Prodigy +Sett / 4 / Soul Fighter / Juggernaut +Shen / 2 / The Crew / Bastion / Edgelord +Sivir / 1 / The Crew / Sniper +Smolder / 3 / Monster Trainer +Swain / 3 / Crystal Gambit / Bastion / Sorcerer +Syndra / 1 / Crystal Gambit / Star Guardian / Prodigy +Twisted Fate / 5 / Rogue Captain / The Crew +Udyr / 3 / Mentor / Juggernaut / Duelist +Varus / 5 / Wraith / Sniper +Vi / 2 / Crystal Gambit / Juggernaut +Viego / 3 / Soul Fighter / Duelist +Volibear / 4 / Luchador / Edgelord +Xayah / 2 / Star Guardian / Edgelord +Xin Zhao / 2 / Soul Fighter / Bastion +Yasuo / 3 / Mentor / Edgelord +Yone / 5 / Mighty Mech / Edgelord +Yuumi / 4 / Battle Academia / Prodigy +Zac / 1 / Wraith / Heavyweight +Ziggs / 3 / The Crew / Strategist +*/ \ No newline at end of file diff --git a/Assets/ReferenceSet15.cs.meta b/Assets/ReferenceSet15.cs.meta new file mode 100644 index 0000000..9197c36 --- /dev/null +++ b/Assets/ReferenceSet15.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 2a1c5bf866ccea24fad71331cd6ac6c3 \ No newline at end of file diff --git a/Assets/Set.meta b/Assets/Set.meta new file mode 100644 index 0000000..9fa18ff --- /dev/null +++ b/Assets/Set.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0c5ec2ccbda5d0047bb36be0354668d7 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Data.meta b/Assets/Set/Data.meta similarity index 77% rename from Assets/Data.meta rename to Assets/Set/Data.meta index c7c4043..5bcda37 100644 --- a/Assets/Data.meta +++ b/Assets/Set/Data.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 3352894ddb2980e45b7117dcbfc78999 +guid: 02eade1755b3bee4ba788d4232fa4dd8 folderAsset: yes DefaultImporter: externalObjects: {} diff --git a/Assets/Data/ChampionUtils.cs b/Assets/Set/Data/ChampionUtils.cs similarity index 98% rename from Assets/Data/ChampionUtils.cs rename to Assets/Set/Data/ChampionUtils.cs index c62c203..8a50dce 100644 --- a/Assets/Data/ChampionUtils.cs +++ b/Assets/Set/Data/ChampionUtils.cs @@ -1,6 +1,6 @@ using System.Collections.Generic; -namespace Assets.Data +namespace Set.Data { public class ChampionUtils { diff --git a/Assets/Data/ChampionUtils.cs.meta b/Assets/Set/Data/ChampionUtils.cs.meta similarity index 100% rename from Assets/Data/ChampionUtils.cs.meta rename to Assets/Set/Data/ChampionUtils.cs.meta diff --git a/Assets/Set/Data/ChampionsEnum.cs b/Assets/Set/Data/ChampionsEnum.cs new file mode 100644 index 0000000..638ddfe --- /dev/null +++ b/Assets/Set/Data/ChampionsEnum.cs @@ -0,0 +1,81 @@ +using System; + +namespace Set.Data +{ + [Flags] + public enum ChampionsEnum : long + { + // Cost 1 Champions + AATROX = 1L << 0, + EZREAL = 1L << 1, + GAREN = 1L << 2, + GNAR = 1L << 3, + KALISTA = 1L << 4, + KAYLE = 1L << 5, + KENNEN = 1L << 6, + LUCIAN = 1L << 7, + MALPHITE = 1L << 8, + NAAFIRI = 1L << 9, + RELL = 1L << 10, + SIVIR = 1L << 11, + SYNDRA = 1L << 12, + ZAC = 1L << 13, + + // Cost 2 Champions + DRMUNDO = 1L << 14, + GANGPLANK = 1L << 15, + JANNA = 1L << 16, + JHIN = 1L << 17, + KAISA = 1L << 18, + KATARINA = 1L << 19, + KOBUKO = 1L << 20, + LUX = 1L << 21, + RAKAN = 1L << 22, + SHEN = 1L << 23, + VI = 1L << 24, + XAYAH = 1L << 25, + XINZHAO = 1L << 26, + + // Cost 3 Champions + AHRI = 1L << 27, + CAITLYN = 1L << 28, + DARIUS = 1L << 29, + JAYCE = 1L << 30, + KOGMAW = 1L << 31, + LULU = 1L << 32, + MALZAHAR = 1L << 33, + NEEKO = 1L << 34, + RAMMUS = 1L << 35, + SENNA = 1L << 36, + SMOLDER = 1L << 37, + SWAIN = 1L << 38, + UDYR = 1L << 39, + VIEGO = 1L << 40, + YASUO = 1L << 41, + ZIGGS = 1L << 42, + + // Cost 4 Champions + AKALI = 1L << 43, + ASHE = 1L << 44, + JARVANIV = 1L << 45, + JINX = 1L << 46, + KARMA = 1L << 47, + KSANTE = 1L << 48, + LEONA = 1L << 49, + POPPY = 1L << 50, + RYZE = 1L << 51, + SAMIRA = 1L << 52, + SETT = 1L << 53, + VOLIBEAR = 1L << 54, + YUUMI = 1L << 55, + + // Cost 5 Champions + BRAUM = 1L << 56, + EKKO = 1L << 57, + GWEN = 1L << 58, + LEESIN = 1L << 59, + SERAPHINE = 1L << 60, + TWISTEDFATE = 1L << 61, + VARUS = 1L << 62, + } +} diff --git a/Assets/Data/ChampionsEnum.cs.meta b/Assets/Set/Data/ChampionsEnum.cs.meta similarity index 100% rename from Assets/Data/ChampionsEnum.cs.meta rename to Assets/Set/Data/ChampionsEnum.cs.meta diff --git a/Assets/Set/Data/TraitSelectorManager.cs b/Assets/Set/Data/TraitSelectorManager.cs new file mode 100644 index 0000000..5e32e37 --- /dev/null +++ b/Assets/Set/Data/TraitSelectorManager.cs @@ -0,0 +1,109 @@ +using System.Collections; +using System.Collections.Generic; +using TMPro; +using UI; +using UnityEngine; + +namespace Set.Data +{ + public class TraitSelectorManager : MonoBehaviour + { + [SerializeField] + private TMP_InputField _compositionSize; + + [SerializeField] + private ChampionSelector _mandatorychampionSelector; + + [SerializeField] + private ChampionSelector _acceptablechampionSelector; + + [SerializeField] + private EmblemSelector _emblemSelector; + + [SerializeField] + private int _traitThreshold = 7; + + [SerializeField] + public int _compositionPerFrame = 100; + + public void ListAllActivableCompo() + { + var emblemList = _emblemSelector.GetEmblems(); + var mandatoryChampions = ChampionUtils.ToLong( + _mandatorychampionSelector.GetSelectedChampions() + ); + var acceptableChampions = ChampionUtils.ToLong( + _acceptablechampionSelector.GetSelectedChampions() + ); + int compositionSize = + _compositionSize.text == "" ? 1 : int.Parse(_compositionSize.text); + + Coroutine coroutine = StartCoroutine( + ComputeCompositionAsync( + mandatoryChampions, + acceptableChampions, + compositionSize, + emblemList + ) + ); + } + + public IEnumerator ComputeCompositionAsync( + long mandatoryChampions, + long acceptableChampions, + int compositionSize, + Dictionary emblemList + ) + { + var compositions = TraitsMapping.GenerateCombinations( + mandatoryChampions, + acceptableChampions, + compositionSize + ); + Debug.Log($"{compositions.Count} Compositions generated."); + yield return 0f; + int compHandled = 0; + int totalCompHandled = 0; + int totalSucessfulCompFound = 0; + foreach (var composition in compositions) + { + int activeSynergies = GetActiveSynergy(composition, emblemList); + compHandled++; + totalCompHandled++; + if (TraitUtils.TraitCountFromInt(activeSynergies) >= _traitThreshold) + { + totalSucessfulCompFound++; + HashSet champions = ChampionUtils.FromLong(composition); + var s = TraitsMapping.CompositionToString(champions); + Debug.Log( + $"{totalSucessfulCompFound}: {s} - {TraitUtils.TraitCountFromInt(activeSynergies)}" + ); + } + if (compHandled >= _compositionPerFrame) + { + Debug.LogWarning( + $"{totalSucessfulCompFound} : {totalCompHandled} Compositions handled." + ); + compHandled = 0; + yield return 0f; + } + } + + Debug.Log("Total successful compositions found: " + totalSucessfulCompFound); + } + + private int GetActiveSynergy(long combination, Dictionary emblemList) + { + var synergies = TraitsMapping.TraitCountInCompo(combination); + + var synergiesWithEmblem = TraitsMapping.MergeEmblems(synergies, emblemList); + var activeSynergies = TraitsMapping.FilterActiveTraits(synergiesWithEmblem); + return activeSynergies; + } + + public void StopAll() + { + StopAllCoroutines(); + } + } +} diff --git a/Assets/Data/TraitSelectorManager.cs.meta b/Assets/Set/Data/TraitSelectorManager.cs.meta similarity index 100% rename from Assets/Data/TraitSelectorManager.cs.meta rename to Assets/Set/Data/TraitSelectorManager.cs.meta diff --git a/Assets/Data/TraitUtils.cs b/Assets/Set/Data/TraitUtils.cs similarity index 98% rename from Assets/Data/TraitUtils.cs rename to Assets/Set/Data/TraitUtils.cs index 231e2db..16dfba1 100644 --- a/Assets/Data/TraitUtils.cs +++ b/Assets/Set/Data/TraitUtils.cs @@ -1,7 +1,7 @@ using System.Collections.Generic; using System.Numerics; -namespace Assets.Data +namespace Set.Data { public class TraitUtils { diff --git a/Assets/Data/TraitUtils.cs.meta b/Assets/Set/Data/TraitUtils.cs.meta similarity index 100% rename from Assets/Data/TraitUtils.cs.meta rename to Assets/Set/Data/TraitUtils.cs.meta diff --git a/Assets/Set/Data/TraitsEnum.cs b/Assets/Set/Data/TraitsEnum.cs new file mode 100644 index 0000000..c99ab8d --- /dev/null +++ b/Assets/Set/Data/TraitsEnum.cs @@ -0,0 +1,34 @@ +using System; + +namespace Set.Data +{ + [Flags] + public enum TraitsEnum : int + { + BATTLEACADEMIA = 1 << 0, + CRYSTALGAMBIT = 1 << 1, + LUCHADOR = 1 << 2, + MIGHTYMECH = 1 << 3, + MONSTERTRAINER = 1 << 4, + SOULFIGHTER = 1 << 5, + STARGUARDIAN = 1 << 6, + SUPREMECELLS = 1 << 7, + THECREW = 1 << 8, + WRAITH = 1 << 9, + MENTOR = 1 << 10, + PRODIGY = 1 << 11, + THECHAMP = 1 << 12, + STANCEMASTER = 1 << 13, + ROGUECAPTAIN = 1 << 14, + BASTION = 1 << 15, + DUELIST = 1 << 16, + EDGELORD = 1 << 17, + EXECUTIONER = 1 << 18, + HEAVYWEIGHT = 1 << 19, + JUGGERNAUT = 1 << 20, + PROTECTOR = 1 << 21, + SNIPER = 1 << 22, + SORCERER = 1 << 23, + STRATEGIST = 1 << 24 + } +} \ No newline at end of file diff --git a/Assets/Data/TraitsEnum.cs.meta b/Assets/Set/Data/TraitsEnum.cs.meta similarity index 100% rename from Assets/Data/TraitsEnum.cs.meta rename to Assets/Set/Data/TraitsEnum.cs.meta diff --git a/Assets/Set/Data/TraitsMapping.cs b/Assets/Set/Data/TraitsMapping.cs new file mode 100644 index 0000000..8643527 --- /dev/null +++ b/Assets/Set/Data/TraitsMapping.cs @@ -0,0 +1,1106 @@ +using System.Collections; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using NUnit.Framework; +using UnityEngine; + +namespace Set.Data +{ + public class TraitsMapping : MonoBehaviour + { + // long for champion, int for traits + public static int TotalChampionCout = 63; + public static int TotalTraitCount = 25; + public static Dictionary ChampsTraits = new Dictionary + { + // Cost 1 Champions + { + (long)ChampionsEnum.AATROX, + TraitUtils.ToInt( + new HashSet { TraitsEnum.MIGHTYMECH, TraitsEnum.HEAVYWEIGHT, TraitsEnum.JUGGERNAUT } + ) + }, + { + (long)ChampionsEnum.EZREAL, + TraitUtils.ToInt( + new HashSet { TraitsEnum.BATTLEACADEMIA, TraitsEnum.PRODIGY } + ) + }, + { + (long)ChampionsEnum.GAREN, + TraitUtils.ToInt( + new HashSet { TraitsEnum.BATTLEACADEMIA, TraitsEnum.BASTION } + ) + }, + { + (long)ChampionsEnum.GNAR, + TraitUtils.ToInt( + new HashSet { TraitsEnum.LUCHADOR, TraitsEnum.SNIPER } + ) + }, + { + (long)ChampionsEnum.KALISTA, + TraitUtils.ToInt( + new HashSet { TraitsEnum.SOULFIGHTER, TraitsEnum.EXECUTIONER } + ) + }, + { + (long)ChampionsEnum.KAYLE, + TraitUtils.ToInt( + new HashSet { TraitsEnum.WRAITH, TraitsEnum.DUELIST } + ) + }, + { + (long)ChampionsEnum.KENNEN, + TraitUtils.ToInt( + new HashSet { TraitsEnum.SUPREMECELLS, TraitsEnum.PROTECTOR, TraitsEnum.SORCERER } + ) + }, + { + (long)ChampionsEnum.LUCIAN, + TraitUtils.ToInt( + new HashSet { TraitsEnum.MIGHTYMECH, TraitsEnum.SORCERER } + ) + }, + { + (long)ChampionsEnum.MALPHITE, + TraitUtils.ToInt( + new HashSet { TraitsEnum.THECREW, TraitsEnum.PROTECTOR } + ) + }, + { + (long)ChampionsEnum.NAAFIRI, + TraitUtils.ToInt( + new HashSet { TraitsEnum.SOULFIGHTER, TraitsEnum.JUGGERNAUT } + ) + }, + { + (long)ChampionsEnum.RELL, + TraitUtils.ToInt( + new HashSet { TraitsEnum.STARGUARDIAN, TraitsEnum.BASTION } + ) + }, + { + (long)ChampionsEnum.SIVIR, + TraitUtils.ToInt( + new HashSet { TraitsEnum.THECREW, TraitsEnum.SNIPER } + ) + }, + { + (long)ChampionsEnum.SYNDRA, + TraitUtils.ToInt( + new HashSet { TraitsEnum.CRYSTALGAMBIT, TraitsEnum.STARGUARDIAN, TraitsEnum.PRODIGY } + ) + }, + { + (long)ChampionsEnum.ZAC, + TraitUtils.ToInt( + new HashSet { TraitsEnum.WRAITH, TraitsEnum.HEAVYWEIGHT } + ) + }, + + // Cost 2 Champions + { + (long)ChampionsEnum.DRMUNDO, + TraitUtils.ToInt( + new HashSet { TraitsEnum.LUCHADOR, TraitsEnum.JUGGERNAUT } + ) + }, + { + (long)ChampionsEnum.GANGPLANK, + TraitUtils.ToInt( + new HashSet { TraitsEnum.MIGHTYMECH, TraitsEnum.DUELIST } + ) + }, + { + (long)ChampionsEnum.JANNA, + TraitUtils.ToInt( + new HashSet { TraitsEnum.CRYSTALGAMBIT, TraitsEnum.PROTECTOR, TraitsEnum.STRATEGIST } + ) + }, + { + (long)ChampionsEnum.JHIN, + TraitUtils.ToInt( + new HashSet { TraitsEnum.WRAITH, TraitsEnum.SNIPER } + ) + }, + { + (long)ChampionsEnum.KAISA, + TraitUtils.ToInt( + new HashSet { TraitsEnum.SUPREMECELLS, TraitsEnum.DUELIST } + ) + }, + { + (long)ChampionsEnum.KATARINA, + TraitUtils.ToInt( + new HashSet { TraitsEnum.BATTLEACADEMIA, TraitsEnum.EXECUTIONER } + ) + }, + { + (long)ChampionsEnum.KOBUKO, + TraitUtils.ToInt( + new HashSet { TraitsEnum.MENTOR, TraitsEnum.HEAVYWEIGHT } + ) + }, + { + (long)ChampionsEnum.LUX, + TraitUtils.ToInt( + new HashSet { TraitsEnum.SOULFIGHTER, TraitsEnum.SORCERER } + ) + }, + { + (long)ChampionsEnum.RAKAN, + TraitUtils.ToInt( + new HashSet { TraitsEnum.BATTLEACADEMIA, TraitsEnum.PROTECTOR } + ) + }, + { + (long)ChampionsEnum.SHEN, + TraitUtils.ToInt( + new HashSet { TraitsEnum.THECREW, TraitsEnum.BASTION, TraitsEnum.EDGELORD } + ) + }, + { + (long)ChampionsEnum.VI, + TraitUtils.ToInt( + new HashSet { TraitsEnum.CRYSTALGAMBIT, TraitsEnum.JUGGERNAUT } + ) + }, + { + (long)ChampionsEnum.XAYAH, + TraitUtils.ToInt( + new HashSet { TraitsEnum.STARGUARDIAN, TraitsEnum.EDGELORD } + ) + }, + { + (long)ChampionsEnum.XINZHAO, + TraitUtils.ToInt( + new HashSet { TraitsEnum.SOULFIGHTER, TraitsEnum.BASTION } + ) + }, + + // Cost 3 Champions + { + (long)ChampionsEnum.AHRI, + TraitUtils.ToInt( + new HashSet { TraitsEnum.STARGUARDIAN, TraitsEnum.SORCERER } + ) + }, + { + (long)ChampionsEnum.CAITLYN, + TraitUtils.ToInt( + new HashSet { TraitsEnum.BATTLEACADEMIA, TraitsEnum.SNIPER } + ) + }, + { + (long)ChampionsEnum.DARIUS, + TraitUtils.ToInt( + new HashSet { TraitsEnum.SUPREMECELLS, TraitsEnum.HEAVYWEIGHT } + ) + }, + { + (long)ChampionsEnum.JAYCE, + TraitUtils.ToInt( + new HashSet { TraitsEnum.BATTLEACADEMIA, TraitsEnum.HEAVYWEIGHT } + ) + }, + { + (long)ChampionsEnum.KOGMAW, + TraitUtils.ToInt( + new HashSet { TraitsEnum.MONSTERTRAINER } + ) + }, + { + (long)ChampionsEnum.LULU, + TraitUtils.ToInt( + new HashSet { TraitsEnum.MONSTERTRAINER } + ) + }, + { + (long)ChampionsEnum.MALZAHAR, + TraitUtils.ToInt( + new HashSet { TraitsEnum.WRAITH, TraitsEnum.PRODIGY } + ) + }, + { + (long)ChampionsEnum.NEEKO, + TraitUtils.ToInt( + new HashSet { TraitsEnum.STARGUARDIAN, TraitsEnum.PROTECTOR } + ) + }, + { + (long)ChampionsEnum.RAMMUS, + TraitUtils.ToInt( + new HashSet { TraitsEnum.MONSTERTRAINER } + ) + }, + { + (long)ChampionsEnum.SENNA, + TraitUtils.ToInt( + new HashSet { TraitsEnum.MIGHTYMECH, TraitsEnum.EXECUTIONER } + ) + }, + { + (long)ChampionsEnum.SMOLDER, + TraitUtils.ToInt( + new HashSet { TraitsEnum.MONSTERTRAINER } + ) + }, + { + (long)ChampionsEnum.SWAIN, + TraitUtils.ToInt( + new HashSet { TraitsEnum.CRYSTALGAMBIT, TraitsEnum.BASTION, TraitsEnum.SORCERER } + ) + }, + { + (long)ChampionsEnum.UDYR, + TraitUtils.ToInt( + new HashSet { TraitsEnum.MENTOR, TraitsEnum.JUGGERNAUT, TraitsEnum.DUELIST } + ) + }, + { + (long)ChampionsEnum.VIEGO, + TraitUtils.ToInt( + new HashSet { TraitsEnum.SOULFIGHTER, TraitsEnum.DUELIST } + ) + }, + { + (long)ChampionsEnum.YASUO, + TraitUtils.ToInt( + new HashSet { TraitsEnum.MENTOR, TraitsEnum.EDGELORD } + ) + }, + { + (long)ChampionsEnum.ZIGGS, + TraitUtils.ToInt( + new HashSet { TraitsEnum.THECREW, TraitsEnum.STRATEGIST } + ) + }, + + // Cost 4 Champions + { + (long)ChampionsEnum.AKALI, + TraitUtils.ToInt( + new HashSet { TraitsEnum.SUPREMECELLS, TraitsEnum.EXECUTIONER } + ) + }, + { + (long)ChampionsEnum.ASHE, + TraitUtils.ToInt( + new HashSet { TraitsEnum.CRYSTALGAMBIT, TraitsEnum.DUELIST } + ) + }, + { + (long)ChampionsEnum.JARVANIV, + TraitUtils.ToInt( + new HashSet { TraitsEnum.MIGHTYMECH, TraitsEnum.STRATEGIST } + ) + }, + { + (long)ChampionsEnum.JINX, + TraitUtils.ToInt( + new HashSet { TraitsEnum.STARGUARDIAN, TraitsEnum.SNIPER } + ) + }, + { + (long)ChampionsEnum.KARMA, + TraitUtils.ToInt( + new HashSet { TraitsEnum.MIGHTYMECH, TraitsEnum.SORCERER } + ) + }, + { + (long)ChampionsEnum.KSANTE, + TraitUtils.ToInt( + new HashSet { TraitsEnum.WRAITH, TraitsEnum.PROTECTOR } + ) + }, + { + (long)ChampionsEnum.LEONA, + TraitUtils.ToInt( + new HashSet { TraitsEnum.BATTLEACADEMIA, TraitsEnum.BASTION } + ) + }, + { + (long)ChampionsEnum.POPPY, + TraitUtils.ToInt( + new HashSet { TraitsEnum.STARGUARDIAN, TraitsEnum.HEAVYWEIGHT } + ) + }, + { + (long)ChampionsEnum.RYZE, + TraitUtils.ToInt( + new HashSet { TraitsEnum.MENTOR, TraitsEnum.EXECUTIONER, TraitsEnum.STRATEGIST } + ) + }, + { + (long)ChampionsEnum.SAMIRA, + TraitUtils.ToInt( + new HashSet { TraitsEnum.SOULFIGHTER, TraitsEnum.EDGELORD } + ) + }, + { + (long)ChampionsEnum.SETT, + TraitUtils.ToInt( + new HashSet { TraitsEnum.SOULFIGHTER, TraitsEnum.JUGGERNAUT } + ) + }, + { + (long)ChampionsEnum.VOLIBEAR, + TraitUtils.ToInt( + new HashSet { TraitsEnum.LUCHADOR, TraitsEnum.EDGELORD } + ) + }, + { + (long)ChampionsEnum.YUUMI, + TraitUtils.ToInt( + new HashSet { TraitsEnum.BATTLEACADEMIA, TraitsEnum.PRODIGY } + ) + }, + + // Cost 5 Champions + { + (long)ChampionsEnum.BRAUM, + TraitUtils.ToInt( + new HashSet { TraitsEnum.THECHAMP, TraitsEnum.LUCHADOR, TraitsEnum.BASTION } + ) + }, + { + (long)ChampionsEnum.EKKO, + TraitUtils.ToInt( + new HashSet { TraitsEnum.PRODIGY, TraitsEnum.SORCERER, TraitsEnum.STRATEGIST } + ) + }, + { + (long)ChampionsEnum.GWEN, + TraitUtils.ToInt( + new HashSet { TraitsEnum.SOULFIGHTER, TraitsEnum.SORCERER } + ) + }, + { + (long)ChampionsEnum.LEESIN, + TraitUtils.ToInt( + new HashSet { TraitsEnum.STANCEMASTER, TraitsEnum.DUELIST, TraitsEnum.JUGGERNAUT, TraitsEnum.EXECUTIONER } + ) + }, + { + (long)ChampionsEnum.SERAPHINE, + TraitUtils.ToInt( + new HashSet { TraitsEnum.STARGUARDIAN, TraitsEnum.PRODIGY } + ) + }, + { + (long)ChampionsEnum.TWISTEDFATE, + TraitUtils.ToInt( + new HashSet { TraitsEnum.ROGUECAPTAIN, TraitsEnum.THECREW } + ) + }, + { + (long)ChampionsEnum.VARUS, + TraitUtils.ToInt( + new HashSet { TraitsEnum.WRAITH, TraitsEnum.SNIPER } + ) + }, + }; + + public static Dictionary TraitsChamp = new Dictionary + { + { + (int)TraitsEnum.BATTLEACADEMIA, + ChampionUtils.ToLong( + new HashSet() + { + ChampionsEnum.EZREAL, + ChampionsEnum.GAREN, + ChampionsEnum.KATARINA, + ChampionsEnum.RAKAN, + ChampionsEnum.CAITLYN, + ChampionsEnum.JAYCE, + ChampionsEnum.LEONA, + ChampionsEnum.YUUMI, + } + ) + }, + { + (int)TraitsEnum.CRYSTALGAMBIT, + ChampionUtils.ToLong( + new HashSet() + { + ChampionsEnum.SYNDRA, + ChampionsEnum.JANNA, + ChampionsEnum.VI, + ChampionsEnum.ASHE, + ChampionsEnum.SWAIN, + } + ) + }, + { + (int)TraitsEnum.LUCHADOR, + ChampionUtils.ToLong( + new HashSet() + { + ChampionsEnum.GNAR, + ChampionsEnum.DRMUNDO, + ChampionsEnum.BRAUM, + ChampionsEnum.VOLIBEAR, + } + ) + }, + { + (int)TraitsEnum.MIGHTYMECH, + ChampionUtils.ToLong( + new HashSet() + { + ChampionsEnum.AATROX, + ChampionsEnum.LUCIAN, + ChampionsEnum.GANGPLANK, + ChampionsEnum.SENNA, + ChampionsEnum.JARVANIV, + ChampionsEnum.KARMA, + } + ) + }, + { + (int)TraitsEnum.MONSTERTRAINER, + ChampionUtils.ToLong( + new HashSet() + { + ChampionsEnum.KOGMAW, + ChampionsEnum.LULU, + ChampionsEnum.RAMMUS, + ChampionsEnum.SMOLDER, + } + ) + }, + { + (int)TraitsEnum.SOULFIGHTER, + ChampionUtils.ToLong( + new HashSet() + { + ChampionsEnum.KALISTA, + ChampionsEnum.NAAFIRI, + ChampionsEnum.LUX, + ChampionsEnum.XINZHAO, + ChampionsEnum.VIEGO, + ChampionsEnum.SAMIRA, + ChampionsEnum.SETT, + ChampionsEnum.GWEN, + } + ) + }, + { + (int)TraitsEnum.STARGUARDIAN, + ChampionUtils.ToLong( + new HashSet() + { + ChampionsEnum.RELL, + ChampionsEnum.SYNDRA, + ChampionsEnum.XAYAH, + ChampionsEnum.AHRI, + ChampionsEnum.NEEKO, + ChampionsEnum.JINX, + ChampionsEnum.POPPY, + ChampionsEnum.SERAPHINE, + } + ) + }, + { + (int)TraitsEnum.SUPREMECELLS, + ChampionUtils.ToLong( + new HashSet() + { + ChampionsEnum.KENNEN, + ChampionsEnum.KAISA, + ChampionsEnum.DARIUS, + ChampionsEnum.AKALI, + } + ) + }, + { + (int)TraitsEnum.THECREW, + ChampionUtils.ToLong( + new HashSet() + { + ChampionsEnum.MALPHITE, + ChampionsEnum.SIVIR, + ChampionsEnum.SHEN, + ChampionsEnum.ZIGGS, + ChampionsEnum.TWISTEDFATE, + } + ) + }, + { + (int)TraitsEnum.WRAITH, + ChampionUtils.ToLong( + new HashSet() + { + ChampionsEnum.KAYLE, + ChampionsEnum.ZAC, + ChampionsEnum.JHIN, + ChampionsEnum.MALZAHAR, + ChampionsEnum.KSANTE, + ChampionsEnum.VARUS, + } + ) + }, + { + (int)TraitsEnum.MENTOR, + ChampionUtils.ToLong( + new HashSet() + { + ChampionsEnum.KOBUKO, + ChampionsEnum.UDYR, + ChampionsEnum.YASUO, + ChampionsEnum.RYZE, + } + ) + }, + { + (int)TraitsEnum.PRODIGY, + ChampionUtils.ToLong( + new HashSet() + { + ChampionsEnum.EZREAL, + ChampionsEnum.SYNDRA, + ChampionsEnum.MALZAHAR, + ChampionsEnum.YUUMI, + ChampionsEnum.EKKO, + ChampionsEnum.SERAPHINE, + } + ) + }, + { + (int)TraitsEnum.THECHAMP, + ChampionUtils.ToLong(new HashSet() { ChampionsEnum.BRAUM }) + }, + { + (int)TraitsEnum.STANCEMASTER, + ChampionUtils.ToLong(new HashSet() { ChampionsEnum.LEESIN }) + }, + { + (int)TraitsEnum.ROGUECAPTAIN, + ChampionUtils.ToLong(new HashSet() { ChampionsEnum.TWISTEDFATE }) + }, + { + (int)TraitsEnum.BASTION, + ChampionUtils.ToLong( + new HashSet() + { + ChampionsEnum.GAREN, + ChampionsEnum.RELL, + ChampionsEnum.SHEN, + ChampionsEnum.XINZHAO, + ChampionsEnum.SWAIN, + ChampionsEnum.LEONA, + ChampionsEnum.BRAUM, + } + ) + }, + { + (int)TraitsEnum.DUELIST, + ChampionUtils.ToLong( + new HashSet() + { + ChampionsEnum.KAYLE, + ChampionsEnum.GANGPLANK, + ChampionsEnum.KAISA, + ChampionsEnum.ASHE, + ChampionsEnum.UDYR, + ChampionsEnum.VIEGO, + ChampionsEnum.LEESIN, + } + ) + }, + { + (int)TraitsEnum.EDGELORD, + ChampionUtils.ToLong( + new HashSet() + { + ChampionsEnum.SHEN, + ChampionsEnum.XAYAH, + ChampionsEnum.YASUO, + ChampionsEnum.SAMIRA, + ChampionsEnum.VOLIBEAR, + } + ) + }, + { + (int)TraitsEnum.EXECUTIONER, + ChampionUtils.ToLong( + new HashSet() + { + ChampionsEnum.KALISTA, + ChampionsEnum.KATARINA, + ChampionsEnum.AKALI, + ChampionsEnum.RYZE, + ChampionsEnum.SENNA, + ChampionsEnum.LEESIN, + } + ) + }, + { + (int)TraitsEnum.HEAVYWEIGHT, + ChampionUtils.ToLong( + new HashSet() + { + ChampionsEnum.AATROX, + ChampionsEnum.ZAC, + ChampionsEnum.KOBUKO, + ChampionsEnum.DARIUS, + ChampionsEnum.JAYCE, + ChampionsEnum.POPPY, + } + ) + }, + { + (int)TraitsEnum.JUGGERNAUT, + ChampionUtils.ToLong( + new HashSet() + { + ChampionsEnum.AATROX, + ChampionsEnum.NAAFIRI, + ChampionsEnum.DRMUNDO, + ChampionsEnum.VI, + ChampionsEnum.UDYR, + ChampionsEnum.SETT, + ChampionsEnum.LEESIN, + } + ) + }, + { + (int)TraitsEnum.PROTECTOR, + ChampionUtils.ToLong( + new HashSet() + { + ChampionsEnum.KENNEN, + ChampionsEnum.MALPHITE, + ChampionsEnum.JANNA, + ChampionsEnum.RAKAN, + ChampionsEnum.NEEKO, + ChampionsEnum.KSANTE, + } + ) + }, + { + (int)TraitsEnum.SNIPER, + ChampionUtils.ToLong( + new HashSet() + { + ChampionsEnum.GNAR, + ChampionsEnum.SIVIR, + ChampionsEnum.JHIN, + ChampionsEnum.CAITLYN, + ChampionsEnum.JINX, + ChampionsEnum.VARUS, + } + ) + }, + { + (int)TraitsEnum.SORCERER, + ChampionUtils.ToLong( + new HashSet() + { + ChampionsEnum.KENNEN, + ChampionsEnum.LUCIAN, + ChampionsEnum.LUX, + ChampionsEnum.AHRI, + ChampionsEnum.SWAIN, + ChampionsEnum.KARMA, + ChampionsEnum.EKKO, + ChampionsEnum.GWEN, + } + ) + }, + { + (int)TraitsEnum.STRATEGIST, + ChampionUtils.ToLong( + new HashSet() + { + ChampionsEnum.JANNA, + ChampionsEnum.ZIGGS, + ChampionsEnum.JARVANIV, + ChampionsEnum.RYZE, + ChampionsEnum.EKKO, + } + ) + }, + }; + + public Dictionary ChampionCost = new Dictionary() + { + // Cost 1 Champions + { (long)ChampionsEnum.AATROX, 1 }, + { (long)ChampionsEnum.EZREAL, 1 }, + { (long)ChampionsEnum.GAREN, 1 }, + { (long)ChampionsEnum.GNAR, 1 }, + { (long)ChampionsEnum.KALISTA, 1 }, + { (long)ChampionsEnum.KAYLE, 1 }, + { (long)ChampionsEnum.KENNEN, 1 }, + { (long)ChampionsEnum.LUCIAN, 1 }, + { (long)ChampionsEnum.MALPHITE, 1 }, + { (long)ChampionsEnum.NAAFIRI, 1 }, + { (long)ChampionsEnum.RELL, 1 }, + { (long)ChampionsEnum.SIVIR, 1 }, + { (long)ChampionsEnum.SYNDRA, 1 }, + { (long)ChampionsEnum.ZAC, 1 }, + + // Cost 2 Champions + { (long)ChampionsEnum.DRMUNDO, 2 }, + { (long)ChampionsEnum.GANGPLANK, 2 }, + { (long)ChampionsEnum.JANNA, 2 }, + { (long)ChampionsEnum.JHIN, 2 }, + { (long)ChampionsEnum.KAISA, 2 }, + { (long)ChampionsEnum.KATARINA, 2 }, + { (long)ChampionsEnum.KOBUKO, 2 }, + { (long)ChampionsEnum.LUX, 2 }, + { (long)ChampionsEnum.RAKAN, 2 }, + { (long)ChampionsEnum.SHEN, 2 }, + { (long)ChampionsEnum.VI, 2 }, + { (long)ChampionsEnum.XAYAH, 2 }, + { (long)ChampionsEnum.XINZHAO, 2 }, + + // Cost 3 Champions + { (long)ChampionsEnum.AHRI, 3 }, + { (long)ChampionsEnum.CAITLYN, 3 }, + { (long)ChampionsEnum.DARIUS, 3 }, + { (long)ChampionsEnum.JAYCE, 3 }, + { (long)ChampionsEnum.KOGMAW, 3 }, + { (long)ChampionsEnum.LULU, 3 }, + { (long)ChampionsEnum.MALZAHAR, 3 }, + { (long)ChampionsEnum.NEEKO, 3 }, + { (long)ChampionsEnum.RAMMUS, 3 }, + { (long)ChampionsEnum.SENNA, 3 }, + { (long)ChampionsEnum.SMOLDER, 3 }, + { (long)ChampionsEnum.SWAIN, 3 }, + { (long)ChampionsEnum.UDYR, 3 }, + { (long)ChampionsEnum.VIEGO, 3 }, + { (long)ChampionsEnum.YASUO, 3 }, + { (long)ChampionsEnum.ZIGGS, 3 }, + + // Cost 4 Champions + { (long)ChampionsEnum.AKALI, 4 }, + { (long)ChampionsEnum.ASHE, 4 }, + { (long)ChampionsEnum.JARVANIV, 4 }, + { (long)ChampionsEnum.JINX, 4 }, + { (long)ChampionsEnum.KARMA, 4 }, + { (long)ChampionsEnum.KSANTE, 4 }, + { (long)ChampionsEnum.LEONA, 4 }, + { (long)ChampionsEnum.POPPY, 4 }, + { (long)ChampionsEnum.RYZE, 4 }, + { (long)ChampionsEnum.SAMIRA, 4 }, + { (long)ChampionsEnum.SETT, 4 }, + { (long)ChampionsEnum.VOLIBEAR, 4 }, + { (long)ChampionsEnum.YUUMI, 4 }, + + // Cost 5 Champions + { (long)ChampionsEnum.BRAUM, 5 }, + { (long)ChampionsEnum.EKKO, 5 }, + { (long)ChampionsEnum.GWEN, 5 }, + { (long)ChampionsEnum.LEESIN, 5 }, + { (long)ChampionsEnum.SERAPHINE, 5 }, + { (long)ChampionsEnum.TWISTEDFATE, 5 }, + { (long)ChampionsEnum.VARUS, 5 }, + }; + + public static Dictionary> TraitsSteps = new Dictionary> + { + { + (int)TraitsEnum.BATTLEACADEMIA, + new List { 3, 5, 7 } + }, + { + (int)TraitsEnum.CRYSTALGAMBIT, + new List { 2, 4, 6 } + }, + { + (int)TraitsEnum.LUCHADOR, + new List { 2, 4 } + }, + { + (int)TraitsEnum.MIGHTYMECH, + new List { 3, 5, 7 } + }, + { + (int)TraitsEnum.MONSTERTRAINER, + new List { 1 } + }, + { + (int)TraitsEnum.SOULFIGHTER, + new List { 2, 4, 6, 8 } + }, + { + (int)TraitsEnum.STARGUARDIAN, + new List { 2, 3, 4, 5, 6, 7, 8, 9, 10 } + }, + { + (int)TraitsEnum.SUPREMECELLS, + new List { 2, 3, 4 } + }, + { + (int)TraitsEnum.THECREW, + new List { 2, 3, 4, 5 } + }, + { + (int)TraitsEnum.WRAITH, + new List { 2, 4, 6 } + }, + { + (int)TraitsEnum.MENTOR, + new List { 1, 4 } + }, + { + (int)TraitsEnum.PRODIGY, + new List { 2, 3, 4, 5 } + }, + { + (int)TraitsEnum.THECHAMP, + new List { 1 } + }, + { + (int)TraitsEnum.STANCEMASTER, + new List { 1 } + }, + { + (int)TraitsEnum.ROGUECAPTAIN, + new List { 1 } + }, + { + (int)TraitsEnum.BASTION, + new List { 2, 4, 6 } + }, + { + (int)TraitsEnum.DUELIST, + new List { 2, 4, 6 } + }, + { + (int)TraitsEnum.EDGELORD, + new List { 2, 4, 6 } + }, + { + (int)TraitsEnum.EXECUTIONER, + new List { 2, 3, 4, 5 } + }, + { + (int)TraitsEnum.HEAVYWEIGHT, + new List { 2, 4, 6 } + }, + { + (int)TraitsEnum.JUGGERNAUT, + new List { 2, 4, 6 } + }, + { + (int)TraitsEnum.PROTECTOR, + new List { 2, 4, 6 } + }, + { + (int)TraitsEnum.SNIPER, + new List { 2, 3, 4, 5 } + }, + { + (int)TraitsEnum.SORCERER, + new List { 2, 4, 6 } + }, + { + (int)TraitsEnum.STRATEGIST, + new List { 2, 3, 4, 5 } + }, + }; + + public static int GetMinimalActivation(int trait) + { + return TraitsSteps[trait][0]; + } + + public bool TraitEnabled(int trait, int traitChampCount) + { + return traitChampCount >= GetMinimalActivation(trait); + } + + /// + /// first int is the trait, second int is the number of champions with this trait + /// + /// + /// + public static Dictionary TraitCountInCompo(long compo) + { + Dictionary synergies = new Dictionary(); + for (int i = 0; i < TotalChampionCout; i++) + { + if ((compo & (1L << i)) != 0) + { + var champ = (long)(1L << i); + var traits = ChampsTraits[champ]; + // combine the traits within synergies using bitwise operation + for (int trait = 0; trait < TotalTraitCount; trait++) + { + if ((traits & (1 << trait)) != 0) + { + if (synergies.ContainsKey(1 << trait)) + { + synergies[1 << trait]++; + } + else + { + synergies.Add(1 << trait, 1); + } + } + } + } + } + + return synergies; + } + + /// + /// first int is trait, second int is the number of champions with this trait + /// output is int of the flag of active traits + /// + /// + /// + public static int FilterActiveTraits(Dictionary synergies) + { + int output = 0; + foreach (var kvp in synergies) + { + if (kvp.Value >= GetMinimalActivation(kvp.Key)) + { + output |= kvp.Key; + } + } + return output; + } + + /// + /// trait is the trait, count is the number of champions with this trait + /// + /// + /// + /// + public static Dictionary MergeEmblems( + Dictionary synergies, + Dictionary additionalEmblems + ) + { + Dictionary mergedEmblems = new Dictionary(); + + mergedEmblems = synergies + .Concat(additionalEmblems) + .GroupBy(x => x.Key) + .ToDictionary(x => x.Key, x => x.Sum(y => y.Value)); + return mergedEmblems; + } + + public void DisplayTraits(Dictionary traits) + { + foreach (var kvp in traits) + { + Debug.Log($"{kvp.Key} : {kvp.Value}"); + } + } + + public string DisplayComposition(HashSet compo) + { + StringBuilder sb = new StringBuilder(); + foreach (var champ in compo) + { + sb.Append(champ.ToString() + " / "); + } + return sb.ToString(); + } + + public static int MaxIntForCombinationOfn(int n) + { + return (1 << n) - 1; + } + + internal static string CompositionToString(HashSet composition) + { + StringBuilder sb = new StringBuilder(); + foreach (var champ in composition) + { + sb.Append(champ.ToString() + " / "); + } + sb.Append(" --------- "); + // HashSet activeSynergies = FilterActiveTraits(ChampionUtils.ToLong(composition))); + // foreach (var trait in activeSynergies) + // { + // sb.Append(trait.ToString() + " / "); + // } + return sb.ToString(); + } + + /// + /// I have a list of champion that are fixed, in a long called mandatoryChamps. + /// I have a list of champions that are possible, in a long called possibleChamps. + /// I want to generate all possible combinations of champions that contain all mandatory champions. + /// I can use MaxIntForCombinationOfn to get the maximum number of possible combinations and iterate over all possible combination, + /// each bit of the combination will represent the nth champion in the list of possible champions, which is not a list but a long. + /// The composition will be composed of all the mandatory champs and some of the possible champs, to add up to the composition size exactly. + /// + /// + /// + /// + /// + public static List GenerateCombinations( + long mandatoryChamps, + long possibleChamps, + int compositionSize + ) + { + possibleChamps = possibleChamps & ~mandatoryChamps; + + Assert.IsTrue((mandatoryChamps & possibleChamps) == 0); + + List compositions = new List(); + int champToSelectCount = + compositionSize - ChampionUtils.NumberOfChampions(mandatoryChamps); + int possibleChampCount = ChampionUtils.NumberOfChampions(possibleChamps); + Assert.IsTrue(champToSelectCount >= 0); // else we have too many mandatory champs + HashSet combinations = BitWise.GetAllPermutation( + champToSelectCount, + possibleChampCount + ); + foreach (var combinationOfPossibleChamps in combinations) + { + var composition = SelectSublistOfChampion( + possibleChamps, + combinationOfPossibleChamps + ); + composition |= mandatoryChamps; + compositions.Add(composition); + } + return compositions; + } + + public static IEnumerator DisplayCompositions(List compositions) + { + Debug.Log("Number of compositions : " + compositions.Count); + yield return null; + foreach (var compo in compositions) + { + Debug.Log(CompositionToString(ChampionUtils.FromLong(compo))); + yield return null; + } + } + + public static long SelectSublistOfChampion( + long accessibleChampions, + long subselectedChampions + ) + { + var champs = ChampionUtils.FromLong(accessibleChampions).ToList(); + // this list of champ is ordered. I want to filter this with the subselectedChampions bit flag + // where all bit to 1 are the champions I want to keep, and all bit to 0 are the champions I want to remove + HashSet selectedChamps = new HashSet(); + + for (int i = 0; i < champs.Count; i++) + { + if ((subselectedChampions & (1L << i)) != 0) + { + selectedChamps.Add(champs[i]); + } + } + return ChampionUtils.ToLong(selectedChamps); + } + } +} diff --git a/Assets/Data/TraitsMapping.cs.meta b/Assets/Set/Data/TraitsMapping.cs.meta similarity index 100% rename from Assets/Data/TraitsMapping.cs.meta rename to Assets/Set/Data/TraitsMapping.cs.meta diff --git a/Assets/Set13.meta b/Assets/Set13.meta new file mode 100644 index 0000000..b1d40e3 --- /dev/null +++ b/Assets/Set13.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5dc542870b07f6b489464965d76fd310 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Set13/Scenes.meta b/Assets/Set13/Scenes.meta new file mode 100644 index 0000000..175bb65 --- /dev/null +++ b/Assets/Set13/Scenes.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a799773b3ea26c04ea96d6421654077d +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Set13/Scenes/Set13Tracker.unity b/Assets/Set13/Scenes/Set13Tracker.unity new file mode 100644 index 0000000..9b43364 --- /dev/null +++ b/Assets/Set13/Scenes/Set13Tracker.unity @@ -0,0 +1,6957 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!29 &1 +OcclusionCullingSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_OcclusionBakeSettings: + smallestOccluder: 5 + smallestHole: 0.25 + backfaceThreshold: 100 + m_SceneGUID: 00000000000000000000000000000000 + m_OcclusionCullingData: {fileID: 0} +--- !u!104 &2 +RenderSettings: + m_ObjectHideFlags: 0 + serializedVersion: 10 + m_Fog: 0 + m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_FogMode: 3 + m_FogDensity: 0.01 + m_LinearFogStart: 0 + m_LinearFogEnd: 300 + m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1} + m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1} + m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1} + m_AmbientIntensity: 1 + m_AmbientMode: 3 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} + m_SkyboxMaterial: {fileID: 0} + m_HaloStrength: 0.5 + m_FlareStrength: 1 + m_FlareFadeSpeed: 3 + m_HaloTexture: {fileID: 0} + m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} + m_DefaultReflectionMode: 0 + m_DefaultReflectionResolution: 128 + m_ReflectionBounces: 1 + m_ReflectionIntensity: 1 + m_CustomReflection: {fileID: 0} + m_Sun: {fileID: 0} + m_UseRadianceAmbientProbe: 0 +--- !u!157 &3 +LightmapSettings: + m_ObjectHideFlags: 0 + serializedVersion: 13 + m_BakeOnSceneLoad: 0 + m_GISettings: + serializedVersion: 2 + m_BounceScale: 1 + m_IndirectOutputScale: 1 + m_AlbedoBoost: 1 + m_EnvironmentLightingMode: 0 + m_EnableBakedLightmaps: 0 + m_EnableRealtimeLightmaps: 0 + m_LightmapEditorSettings: + serializedVersion: 12 + m_Resolution: 2 + m_BakeResolution: 40 + m_AtlasSize: 1024 + m_AO: 0 + m_AOMaxDistance: 1 + m_CompAOExponent: 1 + m_CompAOExponentDirect: 0 + m_ExtractAmbientOcclusion: 0 + m_Padding: 2 + m_LightmapParameters: {fileID: 0} + m_LightmapsBakeMode: 1 + m_TextureCompression: 1 + m_ReflectionCompression: 2 + m_MixedBakeMode: 2 + m_BakeBackend: 1 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 512 + m_PVRBounces: 2 + m_PVREnvironmentSampleCount: 256 + m_PVREnvironmentReferencePointCount: 2048 + m_PVRFilteringMode: 1 + m_PVRDenoiserTypeDirect: 1 + m_PVRDenoiserTypeIndirect: 1 + m_PVRDenoiserTypeAO: 1 + m_PVRFilterTypeDirect: 0 + m_PVRFilterTypeIndirect: 0 + m_PVRFilterTypeAO: 0 + m_PVREnvironmentMIS: 1 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousPositionSigmaDirect: 0.5 + m_PVRFilteringAtrousPositionSigmaIndirect: 2 + m_PVRFilteringAtrousPositionSigmaAO: 1 + m_ExportTrainingData: 0 + m_TrainingDataDestination: TrainingData + m_LightProbeSampleCountMultiplier: 4 + m_LightingDataAsset: {fileID: 0} + m_LightingSettings: {fileID: 0} +--- !u!196 &4 +NavMeshSettings: + serializedVersion: 2 + m_ObjectHideFlags: 0 + m_BuildSettings: + serializedVersion: 3 + agentTypeID: 0 + agentRadius: 0.5 + agentHeight: 2 + agentSlope: 45 + agentClimb: 0.4 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.16666667 + manualTileSize: 0 + tileSize: 256 + buildHeightMesh: 0 + maxJobWorkers: 0 + preserveTilesOutsideBounds: 0 + debug: + m_Flags: 0 + m_NavMeshData: {fileID: 0} +--- !u!1 &110884224 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 110884225} + - component: {fileID: 110884227} + - component: {fileID: 110884226} + m_Layer: 5 + m_Name: Text (TMP) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &110884225 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 110884224} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1767973789} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: -200, y: 119.96} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &110884226 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 110884224} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Acceptable champions + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 36 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: -0.000061035156, y: 0, z: 0.00024414062, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &110884227 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 110884224} + m_CullTransparentMesh: 1 +--- !u!1 &174394551 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 174394552} + - component: {fileID: 174394555} + - component: {fileID: 174394554} + - component: {fileID: 174394553} + m_Layer: 5 + m_Name: Stop + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &174394552 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 174394551} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1820780222} + m_Father: {fileID: 573479910} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 1, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: -385, y: 0} + m_SizeDelta: {x: 160, y: 0} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &174394553 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 174394551} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 174394554} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1355454904} + m_TargetAssemblyTypeName: TraitSelectorManager, Assembly-CSharp + m_MethodName: StopAll + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 +--- !u!114 &174394554 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 174394551} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &174394555 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 174394551} + m_CullTransparentMesh: 1 +--- !u!1 &310500834 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 310500835} + - component: {fileID: 310500837} + - component: {fileID: 310500836} + m_Layer: 5 + m_Name: Text (TMP) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &310500835 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 310500834} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1222435012} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &310500836 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 310500834} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Generate + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4281479730 + m_fontColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 24 + m_fontSizeBase: 24 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &310500837 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 310500834} + m_CullTransparentMesh: 1 +--- !u!1 &374169514 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 374169518} + - component: {fileID: 374169517} + - component: {fileID: 374169516} + - component: {fileID: 374169515} + m_Layer: 5 + m_Name: Canvas + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &374169515 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 374169514} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &374169516 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 374169514} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 0 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 800, y: 600} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 0 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 + m_PresetInfoIsWorld: 0 +--- !u!223 &374169517 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 374169514} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 0 + m_Camera: {fileID: 0} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 25 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!224 &374169518 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 374169514} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 573479910} + - {fileID: 1532427844} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 0} +--- !u!1 &394154226 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 394154227} + - component: {fileID: 394154230} + - component: {fileID: 394154229} + - component: {fileID: 394154228} + m_Layer: 5 + m_Name: ChampTotal + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &394154227 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 394154226} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1812626014} + m_Father: {fileID: 2080429968} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 321.75, y: 0} + m_SizeDelta: {x: 118.9273, y: 0} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &394154228 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 394154226} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2da0c512f12947e489f739169773d7ca, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 394154229} + m_TextViewport: {fileID: 1812626014} + m_TextComponent: {fileID: 573243575} + m_Placeholder: {fileID: 1828978727} + m_VerticalScrollbar: {fileID: 0} + m_VerticalScrollbarEventHandler: {fileID: 0} + m_LayoutGroup: {fileID: 0} + m_ScrollSensitivity: 1 + m_ContentType: 2 + m_InputType: 0 + m_AsteriskChar: 42 + m_KeyboardType: 4 + m_LineType: 0 + m_HideMobileInput: 0 + m_HideSoftKeyboard: 0 + m_CharacterValidation: 2 + m_RegexValue: + m_GlobalPointSize: 14 + m_CharacterLimit: 0 + m_OnEndEdit: + m_PersistentCalls: + m_Calls: [] + m_OnSubmit: + m_PersistentCalls: + m_Calls: [] + m_OnSelect: + m_PersistentCalls: + m_Calls: [] + m_OnDeselect: + m_PersistentCalls: + m_Calls: [] + m_OnTextSelection: + m_PersistentCalls: + m_Calls: [] + m_OnEndTextSelection: + m_PersistentCalls: + m_Calls: [] + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] + m_OnTouchScreenKeyboardStatusChanged: + m_PersistentCalls: + m_Calls: [] + m_CaretColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_CustomCaretColor: 0 + m_SelectionColor: {r: 0.65882355, g: 0.80784315, b: 1, a: 0.7529412} + m_Text: 7 + m_CaretBlinkRate: 0.85 + m_CaretWidth: 1 + m_ReadOnly: 0 + m_RichText: 1 + m_GlobalFontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_OnFocusSelectAll: 1 + m_ResetOnDeActivation: 1 + m_KeepTextSelectionVisible: 0 + m_RestoreOriginalTextOnEscape: 1 + m_isRichTextEditingAllowed: 0 + m_LineLimit: 0 + isAlert: 0 + m_InputValidator: {fileID: 0} + m_ShouldActivateOnSelect: 1 +--- !u!114 &394154229 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 394154226} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10911, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &394154230 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 394154226} + m_CullTransparentMesh: 1 +--- !u!224 &479329096 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 3940269602259411472, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + m_PrefabInstance: {fileID: 797410674217251396} + m_PrefabAsset: {fileID: 0} +--- !u!114 &479329100 stripped +MonoBehaviour: + m_CorrespondingSourceObject: {fileID: 8148431447111668956, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + m_PrefabInstance: {fileID: 797410674217251396} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 409dcb72192389940a0260fe79e0172d, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &519420028 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 519420032} + - component: {fileID: 519420031} + - component: {fileID: 519420029} + - component: {fileID: 519420030} + m_Layer: 0 + m_Name: Main Camera + m_TagString: MainCamera + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!81 &519420029 +AudioListener: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 519420028} + m_Enabled: 1 +--- !u!114 &519420030 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 519420028} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a79441f348de89743a2939f4d699eac1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_RenderShadows: 1 + m_RequiresDepthTextureOption: 2 + m_RequiresOpaqueTextureOption: 2 + m_CameraType: 0 + m_Cameras: [] + m_RendererIndex: -1 + m_VolumeLayerMask: + serializedVersion: 2 + m_Bits: 1 + m_VolumeTrigger: {fileID: 0} + m_VolumeFrameworkUpdateModeOption: 2 + m_RenderPostProcessing: 0 + m_Antialiasing: 0 + m_AntialiasingQuality: 2 + m_StopNaN: 0 + m_Dithering: 0 + m_ClearDepth: 1 + m_AllowXRRendering: 1 + m_AllowHDROutput: 1 + m_UseScreenCoordOverride: 0 + m_ScreenSizeOverride: {x: 0, y: 0, z: 0, w: 0} + m_ScreenCoordScaleBias: {x: 0, y: 0, z: 0, w: 0} + m_RequiresDepthTexture: 0 + m_RequiresColorTexture: 0 + m_Version: 2 + m_TaaSettings: + m_Quality: 3 + m_FrameInfluence: 0.1 + m_JitterScale: 1 + m_MipBias: 0 + m_VarianceClampScale: 0.9 + m_ContrastAdaptiveSharpening: 0 +--- !u!20 &519420031 +Camera: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 519420028} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 2 + m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} + m_projectionMatrixMode: 1 + m_GateFitMode: 2 + m_FOVAxisMode: 0 + m_Iso: 200 + m_ShutterSpeed: 0.005 + m_Aperture: 16 + m_FocusDistance: 10 + m_FocalLength: 50 + m_BladeCount: 5 + m_Curvature: {x: 2, y: 11} + m_BarrelClipping: 0.25 + m_Anamorphism: 0 + m_SensorSize: {x: 36, y: 24} + m_LensShift: {x: 0, y: 0} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.3 + far clip plane: 1000 + field of view: 34 + orthographic: 1 + orthographic size: 5 + m_Depth: -1 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 0 + m_HDR: 1 + m_AllowMSAA: 0 + m_AllowDynamicResolution: 0 + m_ForceIntoRT: 0 + m_OcclusionCulling: 0 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 +--- !u!4 &519420032 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 519420028} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: -10} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &528002151 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 528002152} + - component: {fileID: 528002154} + - component: {fileID: 528002153} + m_Layer: 5 + m_Name: Text (TMP) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &528002152 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 528002151} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 600350129} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &528002153 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 528002151} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Reset + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4281479730 + m_fontColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 24 + m_fontSizeBase: 24 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &528002154 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 528002151} + m_CullTransparentMesh: 1 +--- !u!1 &573243573 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 573243574} + - component: {fileID: 573243576} + - component: {fileID: 573243575} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &573243574 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 573243573} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1812626014} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &573243575 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 573243573} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: "7\u200B" + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4281479730 + m_fontColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 30 + m_fontSizeBase: 30 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 3 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 1 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &573243576 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 573243573} + m_CullTransparentMesh: 1 +--- !u!1 &573479909 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 573479910} + - component: {fileID: 573479911} + m_Layer: 5 + m_Name: Top + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &573479910 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 573479909} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2080429968} + - {fileID: 600350129} + - {fileID: 174394552} + - {fileID: 1222435012} + m_Father: {fileID: 374169518} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 70} + m_Pivot: {x: 0.5, y: 1} +--- !u!222 &573479911 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 573479909} + m_CullTransparentMesh: 1 +--- !u!1 &600350128 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 600350129} + - component: {fileID: 600350132} + - component: {fileID: 600350131} + - component: {fileID: 600350130} + m_Layer: 5 + m_Name: Reset + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &600350129 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 600350128} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 528002152} + m_Father: {fileID: 573479910} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 1, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 160, y: 0} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &600350130 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 600350128} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 600350131} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1032725645} + m_TargetAssemblyTypeName: UIToLogic, Assembly-CSharp + m_MethodName: Reset + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + - m_Target: {fileID: 479329100} + m_TargetAssemblyTypeName: ChampionSelector, Assembly-CSharp + m_MethodName: Reset + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + - m_Target: {fileID: 1418508558} + m_TargetAssemblyTypeName: ChampionSelector, Assembly-CSharp + m_MethodName: Reset + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 +--- !u!114 &600350131 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 600350128} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &600350132 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 600350128} + m_CullTransparentMesh: 1 +--- !u!1 &619394800 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 619394802} + - component: {fileID: 619394801} + m_Layer: 0 + m_Name: Global Light 2D + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &619394801 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 619394800} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 073797afb82c5a1438f328866b10b3f0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ComponentVersion: 2 + m_LightType: 4 + m_BlendStyleIndex: 0 + m_FalloffIntensity: 0.5 + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Intensity: 1 + m_LightVolumeIntensity: 1 + m_LightVolumeEnabled: 0 + m_ApplyToSortingLayers: 00000000 + m_LightCookieSprite: {fileID: 0} + m_DeprecatedPointLightCookieSprite: {fileID: 0} + m_LightOrder: 0 + m_AlphaBlendOnOverlap: 0 + m_OverlapOperation: 0 + m_NormalMapDistance: 3 + m_NormalMapQuality: 2 + m_UseNormalMap: 0 + m_ShadowsEnabled: 0 + m_ShadowIntensity: 0.75 + m_ShadowSoftness: 0 + m_ShadowSoftnessFalloffIntensity: 0.5 + m_ShadowVolumeIntensityEnabled: 0 + m_ShadowVolumeIntensity: 0.75 + m_LocalBounds: + m_Center: {x: 0, y: -0.00000011920929, z: 0} + m_Extent: {x: 0.9985302, y: 0.99853027, z: 0} + m_PointLightInnerAngle: 360 + m_PointLightOuterAngle: 360 + m_PointLightInnerRadius: 0 + m_PointLightOuterRadius: 1 + m_ShapeLightParametricSides: 5 + m_ShapeLightParametricAngleOffset: 0 + m_ShapeLightParametricRadius: 1 + m_ShapeLightFalloffSize: 0.5 + m_ShapeLightFalloffOffset: {x: 0, y: 0} + m_ShapePath: + - {x: -0.5, y: -0.5, z: 0} + - {x: 0.5, y: -0.5, z: 0} + - {x: 0.5, y: 0.5, z: 0} + - {x: -0.5, y: 0.5, z: 0} +--- !u!4 &619394802 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 619394800} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1000870279 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1000870280} + - component: {fileID: 1000870282} + - component: {fileID: 1000870281} + m_Layer: 5 + m_Name: Text (TMP) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1000870280 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1000870279} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2080429968} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 160.87561, y: -35} + m_SizeDelta: {x: 321.7512, y: 70} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1000870281 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1000870279} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Tactician level (+crown) + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 21.02 + m_fontSizeBase: 21.02 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1000870282 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1000870279} + m_CullTransparentMesh: 1 +--- !u!224 &1032725641 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 4343812720443847139, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + m_PrefabInstance: {fileID: 5829851228718998625} + m_PrefabAsset: {fileID: 0} +--- !u!114 &1032725645 stripped +MonoBehaviour: + m_CorrespondingSourceObject: {fileID: 6863307464816145440, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + m_PrefabInstance: {fileID: 5829851228718998625} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9a10ee7ba442d7847a03282c2a055a4e, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &1055715984 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1055715985} + - component: {fileID: 1055715987} + - component: {fileID: 1055715986} + m_Layer: 5 + m_Name: Text (TMP) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1055715985 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1055715984} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1836598508} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1055715986 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1055715984} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: 'Unselect + + All' + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4281479730 + m_fontColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 24 + m_fontSizeBase: 24 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1055715987 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1055715984} + m_CullTransparentMesh: 1 +--- !u!1 &1058936864 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1058936865} + - component: {fileID: 1058936867} + - component: {fileID: 1058936866} + m_Layer: 5 + m_Name: Text (TMP) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1058936865 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1058936864} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1749255783} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1058936866 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1058936864} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: 'Select + + All' + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4281479730 + m_fontColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 24 + m_fontSizeBase: 24 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1058936867 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1058936864} + m_CullTransparentMesh: 1 +--- !u!1001 &1197330606 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1767973789} + m_Modifications: + - target: {fileID: 75151862136944938, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 75151862136944938, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 75151862136944938, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 75151862136944938, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 75151862136944938, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 75151862136944938, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 166458163001866753, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 166458163001866753, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 166458163001866753, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 166458163001866753, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 166458163001866753, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 166458163001866753, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 169096540653243338, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 169096540653243338, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 169096540653243338, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 169096540653243338, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 169096540653243338, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 169096540653243338, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 431478258558076063, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 431478258558076063, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 431478258558076063, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 431478258558076063, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 431478258558076063, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 431478258558076063, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1215015617181173359, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1215015617181173359, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1215015617181173359, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1215015617181173359, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1215015617181173359, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1215015617181173359, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1291734430866755436, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1291734430866755436, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1291734430866755436, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1291734430866755436, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1291734430866755436, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1291734430866755436, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1444243177017848771, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1444243177017848771, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1444243177017848771, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1444243177017848771, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1444243177017848771, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1444243177017848771, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1555112130184801939, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1555112130184801939, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1555112130184801939, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1555112130184801939, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1555112130184801939, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1555112130184801939, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1613542473101644839, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1613542473101644839, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1613542473101644839, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1613542473101644839, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1613542473101644839, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1613542473101644839, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2132006546963837697, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2132006546963837697, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2132006546963837697, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2132006546963837697, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2132006546963837697, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2132006546963837697, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2363993229959701098, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2363993229959701098, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2363993229959701098, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2363993229959701098, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2363993229959701098, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2363993229959701098, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2470876008331191734, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2470876008331191734, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2470876008331191734, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2470876008331191734, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2470876008331191734, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2470876008331191734, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2562727015795339220, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2562727015795339220, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2562727015795339220, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2562727015795339220, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2562727015795339220, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2562727015795339220, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2574771580391282013, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2574771580391282013, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2574771580391282013, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2574771580391282013, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2574771580391282013, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2574771580391282013, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2700907858077224075, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2700907858077224075, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2700907858077224075, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2700907858077224075, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2700907858077224075, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2700907858077224075, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2747911657532157597, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2747911657532157597, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2747911657532157597, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2747911657532157597, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2747911657532157597, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2747911657532157597, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2748050840808389113, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2748050840808389113, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2748050840808389113, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2748050840808389113, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2748050840808389113, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2748050840808389113, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2908495620618349931, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2908495620618349931, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2908495620618349931, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2908495620618349931, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2908495620618349931, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2908495620618349931, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3051855926802646486, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3051855926802646486, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3051855926802646486, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3051855926802646486, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3051855926802646486, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3051855926802646486, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3359449769248939369, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3359449769248939369, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3359449769248939369, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3359449769248939369, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3359449769248939369, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3359449769248939369, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3359822401606366297, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3359822401606366297, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3359822401606366297, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3359822401606366297, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3359822401606366297, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3359822401606366297, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3393408341097822203, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3393408341097822203, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3393408341097822203, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3393408341097822203, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3393408341097822203, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3393408341097822203, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3445314962750262830, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3445314962750262830, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3445314962750262830, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3445314962750262830, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3445314962750262830, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3445314962750262830, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3569525601017139190, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3569525601017139190, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3569525601017139190, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3569525601017139190, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3569525601017139190, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3569525601017139190, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3644170477660861029, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3644170477660861029, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3644170477660861029, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3644170477660861029, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3644170477660861029, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3644170477660861029, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3936633047864782128, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3936633047864782128, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3936633047864782128, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3936633047864782128, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3936633047864782128, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3936633047864782128, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3940269602259411472, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3940269602259411472, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3940269602259411472, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3940269602259411472, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3940269602259411472, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3940269602259411472, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3940269602259411472, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3940269602259411472, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: -119.9558 + objectReference: {fileID: 0} + - target: {fileID: 3940269602259411472, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3940269602259411472, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3940269602259411472, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3940269602259411472, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3940269602259411472, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3940269602259411472, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3940269602259411472, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3940269602259411472, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3940269602259411472, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: -59.977905 + objectReference: {fileID: 0} + - target: {fileID: 3940269602259411472, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3940269602259411472, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3940269602259411472, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3943217452158358863, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3943217452158358863, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3943217452158358863, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3943217452158358863, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3943217452158358863, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3943217452158358863, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4059626667434472213, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4059626667434472213, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4059626667434472213, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4059626667434472213, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4059626667434472213, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4059626667434472213, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4441620173266449096, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4441620173266449096, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4441620173266449096, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4441620173266449096, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4441620173266449096, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4441620173266449096, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4522531725510730214, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4522531725510730214, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4522531725510730214, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4522531725510730214, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4522531725510730214, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4522531725510730214, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4581731425359477926, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4581731425359477926, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4581731425359477926, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4581731425359477926, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4581731425359477926, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4581731425359477926, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4850164342909281405, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4850164342909281405, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4850164342909281405, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4850164342909281405, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4850164342909281405, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4850164342909281405, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4888765920563511102, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4888765920563511102, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4888765920563511102, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4888765920563511102, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4888765920563511102, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4888765920563511102, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4962601939051820088, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4962601939051820088, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4962601939051820088, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4962601939051820088, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4962601939051820088, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4962601939051820088, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5134246033026045556, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5134246033026045556, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5134246033026045556, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5134246033026045556, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5134246033026045556, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5134246033026045556, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5151289581532025111, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5151289581532025111, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5151289581532025111, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5151289581532025111, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5151289581532025111, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5151289581532025111, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5159191779253341102, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5159191779253341102, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5159191779253341102, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5159191779253341102, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5159191779253341102, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5159191779253341102, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5551294466763465256, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5551294466763465256, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5551294466763465256, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5551294466763465256, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5551294466763465256, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5551294466763465256, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5620808854790671727, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5620808854790671727, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5620808854790671727, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5620808854790671727, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5620808854790671727, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5620808854790671727, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5699816849725863961, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5699816849725863961, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5699816849725863961, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5699816849725863961, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5699816849725863961, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5699816849725863961, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5736507014635225026, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5736507014635225026, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5736507014635225026, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5736507014635225026, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5736507014635225026, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5736507014635225026, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5870908613957158259, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5870908613957158259, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5870908613957158259, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5870908613957158259, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5870908613957158259, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5870908613957158259, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6144338015336187755, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6144338015336187755, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6144338015336187755, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6144338015336187755, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6144338015336187755, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6144338015336187755, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6198119892991707727, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6198119892991707727, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6198119892991707727, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6198119892991707727, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6198119892991707727, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6198119892991707727, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6344118344873482185, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6344118344873482185, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6344118344873482185, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6344118344873482185, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6344118344873482185, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6344118344873482185, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6357400115755215373, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6357400115755215373, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6357400115755215373, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6357400115755215373, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6357400115755215373, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6357400115755215373, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6420760089096392610, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6420760089096392610, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6420760089096392610, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6420760089096392610, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6420760089096392610, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6420760089096392610, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6435283881620843566, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6435283881620843566, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6435283881620843566, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6435283881620843566, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6435283881620843566, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6435283881620843566, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6729608892057299040, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6729608892057299040, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6729608892057299040, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6729608892057299040, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6729608892057299040, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6729608892057299040, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6773214040975235288, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6773214040975235288, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6773214040975235288, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6773214040975235288, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6773214040975235288, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6773214040975235288, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6950013834180122870, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6950013834180122870, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6950013834180122870, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6950013834180122870, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6950013834180122870, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6950013834180122870, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7176275823744796708, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7176275823744796708, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7176275823744796708, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7176275823744796708, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7176275823744796708, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7176275823744796708, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7508263485426799864, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7508263485426799864, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7508263485426799864, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7508263485426799864, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7508263485426799864, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7508263485426799864, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7519652362040063703, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7519652362040063703, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7519652362040063703, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7519652362040063703, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7519652362040063703, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7519652362040063703, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7555185909707965136, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7555185909707965136, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7555185909707965136, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7555185909707965136, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7555185909707965136, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7555185909707965136, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8105294732104961979, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8105294732104961979, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8105294732104961979, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8105294732104961979, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8105294732104961979, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8105294732104961979, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8371570629468773911, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8371570629468773911, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8371570629468773911, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8371570629468773911, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8371570629468773911, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8371570629468773911, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8620322980485270018, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8620322980485270018, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8620322980485270018, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8620322980485270018, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8620322980485270018, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8620322980485270018, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8765259575635820717, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8765259575635820717, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8765259575635820717, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8765259575635820717, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8765259575635820717, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8765259575635820717, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8956342530484481529, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8956342530484481529, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8956342530484481529, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8956342530484481529, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8956342530484481529, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8956342530484481529, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9041328027936804733, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_Name + value: Champions + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: c027171600fc2d34e89847fce2ced78b, type: 3} +--- !u!224 &1197330607 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 3940269602259411472, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + m_PrefabInstance: {fileID: 1197330606} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1222435011 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1222435012} + - component: {fileID: 1222435015} + - component: {fileID: 1222435014} + - component: {fileID: 1222435013} + m_Layer: 5 + m_Name: Generate + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1222435012 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1222435011} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 310500835} + m_Father: {fileID: 573479910} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 1, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: -194, y: 0} + m_SizeDelta: {x: 160, y: 0} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1222435013 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1222435011} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1222435014} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1355454904} + m_TargetAssemblyTypeName: TraitSelectorManager, Assembly-CSharp + m_MethodName: ListAllActivableCompo + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 +--- !u!114 &1222435014 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1222435011} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1222435015 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1222435011} + m_CullTransparentMesh: 1 +--- !u!1 &1355454901 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1355454903} + - component: {fileID: 1355454902} + - component: {fileID: 1355454904} + m_Layer: 0 + m_Name: Logic + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1355454902 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1355454901} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e486327ee9799854e84d9924d1e547c1, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!4 &1355454903 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1355454901} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1355454904 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1355454901} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 73ed0a195abac8049bbd09802659e2a6, type: 3} + m_Name: + m_EditorClassIdentifier: + _compositionSize: {fileID: 394154228} + _mandatorychampionSelector: {fileID: 479329100} + _acceptablechampionSelector: {fileID: 1418508558} + _emblemSelector: {fileID: 1032725645} + _traitThreshold: 7 + _compositionPerFrame: 100 +--- !u!114 &1418508558 stripped +MonoBehaviour: + m_CorrespondingSourceObject: {fileID: 8148431447111668956, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + m_PrefabInstance: {fileID: 1197330606} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 409dcb72192389940a0260fe79e0172d, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &1497444574 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1497444577} + - component: {fileID: 1497444576} + - component: {fileID: 1497444575} + m_Layer: 0 + m_Name: EventSystem + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1497444575 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1497444574} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4f231c4fb786f3946a6b90b886c48677, type: 3} + m_Name: + m_EditorClassIdentifier: + m_SendPointerHoverToParent: 1 + m_HorizontalAxis: Horizontal + m_VerticalAxis: Vertical + m_SubmitButton: Submit + m_CancelButton: Cancel + m_InputActionsPerSecond: 10 + m_RepeatDelay: 0.5 + m_ForceModuleActive: 0 +--- !u!114 &1497444576 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1497444574} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 76c392e42b5098c458856cdf6ecaaaa1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_FirstSelected: {fileID: 0} + m_sendNavigationEvents: 1 + m_DragThreshold: 10 +--- !u!4 &1497444577 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1497444574} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1532427843 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1532427844} + - component: {fileID: 1532427845} + m_Layer: 5 + m_Name: Body + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1532427844 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1532427843} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1032725641} + - {fileID: 1985338594} + - {fileID: 1767973789} + m_Father: {fileID: 374169518} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: -35} + m_SizeDelta: {x: 0, y: -70} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &1532427845 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1532427843} + m_CullTransparentMesh: 1 +--- !u!1 &1748395101 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1748395102} + - component: {fileID: 1748395104} + - component: {fileID: 1748395103} + m_Layer: 5 + m_Name: Text (TMP) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1748395102 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1748395101} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1985338594} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 119.96} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &1748395103 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1748395101} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: MandatoryChampions + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 36 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1748395104 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1748395101} + m_CullTransparentMesh: 1 +--- !u!1 &1749255782 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1749255783} + - component: {fileID: 1749255786} + - component: {fileID: 1749255785} + - component: {fileID: 1749255784} + m_Layer: 5 + m_Name: Button + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1749255783 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1749255782} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1058936865} + m_Father: {fileID: 1767973789} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 1, y: 1} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 100, y: 119.96} + m_Pivot: {x: 1, y: 1} +--- !u!114 &1749255784 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1749255782} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1749255785} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1418508558} + m_TargetAssemblyTypeName: ChampionSelector, Assembly-CSharp + m_MethodName: SetTo + m_Mode: 6 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 1 + m_CallState: 2 +--- !u!114 &1749255785 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1749255782} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1749255786 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1749255782} + m_CullTransparentMesh: 1 +--- !u!1 &1767973788 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1767973789} + - component: {fileID: 1767973791} + - component: {fileID: 1767973790} + m_Layer: 5 + m_Name: AcceptableChampions + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1767973789 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1767973788} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1197330607} + - {fileID: 110884225} + - {fileID: 1749255783} + - {fileID: 1836598508} + m_Father: {fileID: 1532427844} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 859, y: 0} + m_SizeDelta: {x: 620, y: 0} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &1767973790 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1767973788} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 0.392} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10907, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1767973791 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1767973788} + m_CullTransparentMesh: 1 +--- !u!1 &1812626013 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1812626014} + - component: {fileID: 1812626015} + m_Layer: 5 + m_Name: Text Area + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1812626014 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1812626013} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1828978725} + - {fileID: 573243574} + m_Father: {fileID: 394154227} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: -0.5} + m_SizeDelta: {x: -20, y: -13} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1812626015 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1812626013} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3312d7739989d2b4e91e6319e9a96d76, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: {x: -8, y: -5, z: -8, w: -5} + m_Softness: {x: 0, y: 0} +--- !u!1 &1820780221 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1820780222} + - component: {fileID: 1820780224} + - component: {fileID: 1820780223} + m_Layer: 5 + m_Name: Text (TMP) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1820780222 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1820780221} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 174394552} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1820780223 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1820780221} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Interrupt + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4281479730 + m_fontColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 24 + m_fontSizeBase: 24 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1820780224 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1820780221} + m_CullTransparentMesh: 1 +--- !u!1 &1828978724 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1828978725} + - component: {fileID: 1828978728} + - component: {fileID: 1828978727} + - component: {fileID: 1828978726} + m_Layer: 5 + m_Name: Placeholder + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1828978725 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1828978724} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1812626014} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1828978726 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1828978724} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 1 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &1828978727 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1828978724} + m_Enabled: 0 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: total number of champ (lvl +crowns) + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 2150773298 + m_fontColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 0.5} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 14 + m_fontSizeBase: 14 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 2 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 1 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1828978728 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1828978724} + m_CullTransparentMesh: 1 +--- !u!1 &1836598507 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1836598508} + - component: {fileID: 1836598511} + - component: {fileID: 1836598510} + - component: {fileID: 1836598509} + m_Layer: 5 + m_Name: Button (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1836598508 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1836598507} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1055715985} + m_Father: {fileID: 1767973789} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 100, y: 119.96} + m_Pivot: {x: 0, y: 1} +--- !u!114 &1836598509 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1836598507} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1836598510} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1418508558} + m_TargetAssemblyTypeName: ChampionSelector, Assembly-CSharp + m_MethodName: SetTo + m_Mode: 6 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 +--- !u!114 &1836598510 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1836598507} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1836598511 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1836598507} + m_CullTransparentMesh: 1 +--- !u!1 &1985338593 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1985338594} + - component: {fileID: 1985338596} + - component: {fileID: 1985338595} + m_Layer: 5 + m_Name: MandatoryChampions + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1985338594 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1985338593} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 479329096} + - {fileID: 1748395102} + m_Father: {fileID: 1532427844} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 222, y: 0} + m_SizeDelta: {x: 620, y: 0} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &1985338595 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1985338593} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 0.392} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10907, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1985338596 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1985338593} + m_CullTransparentMesh: 1 +--- !u!1 &2080429967 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2080429968} + - component: {fileID: 2080429970} + m_Layer: 5 + m_Name: Top + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2080429968 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2080429967} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1000870280} + - {fileID: 394154227} + m_Father: {fileID: 573479910} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 70} + m_Pivot: {x: 0.5, y: 1} +--- !u!222 &2080429970 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2080429967} + m_CullTransparentMesh: 1 +--- !u!1001 &797410674217251396 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1985338594} + m_Modifications: + - target: {fileID: 75151862136944938, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 75151862136944938, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 75151862136944938, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 75151862136944938, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 75151862136944938, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 75151862136944938, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 166458163001866753, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 166458163001866753, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 166458163001866753, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 166458163001866753, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 166458163001866753, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 166458163001866753, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 169096540653243338, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 169096540653243338, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 169096540653243338, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 169096540653243338, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 169096540653243338, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 169096540653243338, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 431478258558076063, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 431478258558076063, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 431478258558076063, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 431478258558076063, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 431478258558076063, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 431478258558076063, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1215015617181173359, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1215015617181173359, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1215015617181173359, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1215015617181173359, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1215015617181173359, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1215015617181173359, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1291734430866755436, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1291734430866755436, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1291734430866755436, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1291734430866755436, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1291734430866755436, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1291734430866755436, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1444243177017848771, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1444243177017848771, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1444243177017848771, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1444243177017848771, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1444243177017848771, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1444243177017848771, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1555112130184801939, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1555112130184801939, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1555112130184801939, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1555112130184801939, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1555112130184801939, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1555112130184801939, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1613542473101644839, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1613542473101644839, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1613542473101644839, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1613542473101644839, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1613542473101644839, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1613542473101644839, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2132006546963837697, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2132006546963837697, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2132006546963837697, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2132006546963837697, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2132006546963837697, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2132006546963837697, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2363993229959701098, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2363993229959701098, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2363993229959701098, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2363993229959701098, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2363993229959701098, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2363993229959701098, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2470876008331191734, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2470876008331191734, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2470876008331191734, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2470876008331191734, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2470876008331191734, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2470876008331191734, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2562727015795339220, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2562727015795339220, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2562727015795339220, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2562727015795339220, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2562727015795339220, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2562727015795339220, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2574771580391282013, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2574771580391282013, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2574771580391282013, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2574771580391282013, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2574771580391282013, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2574771580391282013, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2700907858077224075, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2700907858077224075, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2700907858077224075, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2700907858077224075, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2700907858077224075, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2700907858077224075, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2747911657532157597, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2747911657532157597, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2747911657532157597, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2747911657532157597, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2747911657532157597, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2747911657532157597, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2748050840808389113, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2748050840808389113, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2748050840808389113, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2748050840808389113, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2748050840808389113, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2748050840808389113, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2908495620618349931, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2908495620618349931, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2908495620618349931, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2908495620618349931, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2908495620618349931, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2908495620618349931, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3051855926802646486, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3051855926802646486, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3051855926802646486, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3051855926802646486, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3051855926802646486, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3051855926802646486, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3359449769248939369, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3359449769248939369, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3359449769248939369, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3359449769248939369, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3359449769248939369, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3359449769248939369, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3359822401606366297, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3359822401606366297, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3359822401606366297, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3359822401606366297, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3359822401606366297, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3359822401606366297, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3393408341097822203, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3393408341097822203, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3393408341097822203, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3393408341097822203, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3393408341097822203, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3393408341097822203, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3445314962750262830, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3445314962750262830, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3445314962750262830, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3445314962750262830, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3445314962750262830, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3445314962750262830, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3569525601017139190, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3569525601017139190, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3569525601017139190, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3569525601017139190, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3569525601017139190, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3569525601017139190, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3644170477660861029, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3644170477660861029, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3644170477660861029, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3644170477660861029, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3644170477660861029, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3644170477660861029, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3936633047864782128, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3936633047864782128, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3936633047864782128, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3936633047864782128, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3936633047864782128, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3936633047864782128, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3940269602259411472, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3940269602259411472, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3940269602259411472, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3940269602259411472, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3940269602259411472, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3940269602259411472, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3940269602259411472, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3940269602259411472, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: -119.9558 + objectReference: {fileID: 0} + - target: {fileID: 3940269602259411472, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3940269602259411472, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3940269602259411472, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3940269602259411472, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3940269602259411472, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3940269602259411472, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3940269602259411472, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3940269602259411472, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3940269602259411472, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: -59.977905 + objectReference: {fileID: 0} + - target: {fileID: 3940269602259411472, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3940269602259411472, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3940269602259411472, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3943217452158358863, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3943217452158358863, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3943217452158358863, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3943217452158358863, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3943217452158358863, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3943217452158358863, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4059626667434472213, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4059626667434472213, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4059626667434472213, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4059626667434472213, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4059626667434472213, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4059626667434472213, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4441620173266449096, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4441620173266449096, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4441620173266449096, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4441620173266449096, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4441620173266449096, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4441620173266449096, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4522531725510730214, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4522531725510730214, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4522531725510730214, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4522531725510730214, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4522531725510730214, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4522531725510730214, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4581731425359477926, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4581731425359477926, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4581731425359477926, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4581731425359477926, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4581731425359477926, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4581731425359477926, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4850164342909281405, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4850164342909281405, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4850164342909281405, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4850164342909281405, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4850164342909281405, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4850164342909281405, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4888765920563511102, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4888765920563511102, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4888765920563511102, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4888765920563511102, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4888765920563511102, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4888765920563511102, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4962601939051820088, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4962601939051820088, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4962601939051820088, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4962601939051820088, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4962601939051820088, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4962601939051820088, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5134246033026045556, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5134246033026045556, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5134246033026045556, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5134246033026045556, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5134246033026045556, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5134246033026045556, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5151289581532025111, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5151289581532025111, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5151289581532025111, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5151289581532025111, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5151289581532025111, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5151289581532025111, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5159191779253341102, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5159191779253341102, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5159191779253341102, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5159191779253341102, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5159191779253341102, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5159191779253341102, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5551294466763465256, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5551294466763465256, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5551294466763465256, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5551294466763465256, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5551294466763465256, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5551294466763465256, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5620808854790671727, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5620808854790671727, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5620808854790671727, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5620808854790671727, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5620808854790671727, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5620808854790671727, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5699816849725863961, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5699816849725863961, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5699816849725863961, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5699816849725863961, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5699816849725863961, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5699816849725863961, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5736507014635225026, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5736507014635225026, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5736507014635225026, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5736507014635225026, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5736507014635225026, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5736507014635225026, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5870908613957158259, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5870908613957158259, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5870908613957158259, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5870908613957158259, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5870908613957158259, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5870908613957158259, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6144338015336187755, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6144338015336187755, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6144338015336187755, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6144338015336187755, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6144338015336187755, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6144338015336187755, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6198119892991707727, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6198119892991707727, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6198119892991707727, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6198119892991707727, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6198119892991707727, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6198119892991707727, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6344118344873482185, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6344118344873482185, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6344118344873482185, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6344118344873482185, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6344118344873482185, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6344118344873482185, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6357400115755215373, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6357400115755215373, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6357400115755215373, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6357400115755215373, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6357400115755215373, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6357400115755215373, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6420760089096392610, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6420760089096392610, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6420760089096392610, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6420760089096392610, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6420760089096392610, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6420760089096392610, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6435283881620843566, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6435283881620843566, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6435283881620843566, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6435283881620843566, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6435283881620843566, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6435283881620843566, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6729608892057299040, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6729608892057299040, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6729608892057299040, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6729608892057299040, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6729608892057299040, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6729608892057299040, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6773214040975235288, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6773214040975235288, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6773214040975235288, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6773214040975235288, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6773214040975235288, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6773214040975235288, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6950013834180122870, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6950013834180122870, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6950013834180122870, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6950013834180122870, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6950013834180122870, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6950013834180122870, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7176275823744796708, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7176275823744796708, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7176275823744796708, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7176275823744796708, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7176275823744796708, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7176275823744796708, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7508263485426799864, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7508263485426799864, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7508263485426799864, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7508263485426799864, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7508263485426799864, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7508263485426799864, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7519652362040063703, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7519652362040063703, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7519652362040063703, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7519652362040063703, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7519652362040063703, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7519652362040063703, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7555185909707965136, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7555185909707965136, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7555185909707965136, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7555185909707965136, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7555185909707965136, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7555185909707965136, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8105294732104961979, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8105294732104961979, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8105294732104961979, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8105294732104961979, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8105294732104961979, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8105294732104961979, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8371570629468773911, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8371570629468773911, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8371570629468773911, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8371570629468773911, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8371570629468773911, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8371570629468773911, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8620322980485270018, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8620322980485270018, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8620322980485270018, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8620322980485270018, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8620322980485270018, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8620322980485270018, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8765259575635820717, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8765259575635820717, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8765259575635820717, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8765259575635820717, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8765259575635820717, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8765259575635820717, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8956342530484481529, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8956342530484481529, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8956342530484481529, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8956342530484481529, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8956342530484481529, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8956342530484481529, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9041328027936804733, guid: c027171600fc2d34e89847fce2ced78b, type: 3} + propertyPath: m_Name + value: Champions + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: c027171600fc2d34e89847fce2ced78b, type: 3} +--- !u!1001 &5829851228718998625 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1532427844} + m_Modifications: + - target: {fileID: 16425598733411333, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 16425598733411333, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 16425598733411333, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 16425598733411333, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 16425598733411333, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 16425598733411333, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 646504669308654164, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 646504669308654164, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 646504669308654164, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 646504669308654164, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 646504669308654164, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 646504669308654164, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1505756809452524790, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1505756809452524790, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1505756809452524790, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1505756809452524790, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1505756809452524790, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1505756809452524790, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1968396480284770408, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1968396480284770408, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1968396480284770408, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1968396480284770408, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1968396480284770408, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1968396480284770408, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2006563083109100719, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2006563083109100719, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2006563083109100719, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2006563083109100719, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2006563083109100719, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2006563083109100719, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2972278291085766129, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2972278291085766129, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2972278291085766129, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2972278291085766129, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2972278291085766129, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3061435132198985507, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3061435132198985507, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3061435132198985507, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3061435132198985507, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3061435132198985507, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3061435132198985507, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3641990153492020554, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3641990153492020554, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3641990153492020554, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3641990153492020554, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3641990153492020554, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3641990153492020554, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4343812720443847139, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_Pivot.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4343812720443847139, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4343812720443847139, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4343812720443847139, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4343812720443847139, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4343812720443847139, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4343812720443847139, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_SizeDelta.x + value: 220.7665 + objectReference: {fileID: 0} + - target: {fileID: 4343812720443847139, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4343812720443847139, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4343812720443847139, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4343812720443847139, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4343812720443847139, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4343812720443847139, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4343812720443847139, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4343812720443847139, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4343812720443847139, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4343812720443847139, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4343812720443847139, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4343812720443847139, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4343812720443847139, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4972776997145690109, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4972776997145690109, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4972776997145690109, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4972776997145690109, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4972776997145690109, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4972776997145690109, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5112399286440729213, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5112399286440729213, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5112399286440729213, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5112399286440729213, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5112399286440729213, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5112399286440729213, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5168036749323802800, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5168036749323802800, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5168036749323802800, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5168036749323802800, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5168036749323802800, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5168036749323802800, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5168748084000111524, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5168748084000111524, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5168748084000111524, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5168748084000111524, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5168748084000111524, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5168748084000111524, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5258217177119939466, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_Name + value: Emblems + objectReference: {fileID: 0} + - target: {fileID: 6162654556941305236, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6162654556941305236, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6162654556941305236, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6162654556941305236, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6162654556941305236, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6162654556941305236, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6276728433571276499, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6276728433571276499, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6276728433571276499, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6276728433571276499, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6276728433571276499, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6276728433571276499, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6362074521230625220, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6362074521230625220, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6362074521230625220, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6362074521230625220, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6362074521230625220, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6362074521230625220, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6502612269960250831, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6502612269960250831, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6502612269960250831, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6502612269960250831, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6502612269960250831, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6502612269960250831, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6696166214493544543, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6696166214493544543, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6696166214493544543, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6696166214493544543, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6696166214493544543, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6696166214493544543, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6703145520073070241, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6703145520073070241, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6703145520073070241, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6703145520073070241, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6703145520073070241, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6703145520073070241, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6863307464816145440, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: _emblemUIPrefab + value: + objectReference: {fileID: 6320555872190488032, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} + - target: {fileID: 7366465803735853350, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7366465803735853350, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7366465803735853350, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7366465803735853350, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7366465803735853350, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7366465803735853350, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7561043388121974505, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7561043388121974505, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7561043388121974505, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7561043388121974505, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7561043388121974505, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7561043388121974505, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8476211361591568336, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8476211361591568336, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8476211361591568336, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8476211361591568336, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8476211361591568336, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8476211361591568336, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8545569956740839741, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8545569956740839741, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8545569956740839741, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8545569956740839741, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8545569956740839741, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8545569956740839741, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9144389421896618050, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9144389421896618050, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9144389421896618050, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9144389421896618050, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9144389421896618050, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9144389421896618050, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 58b9bc25f0d466c4ca6af2afb7469844, type: 3} +--- !u!1660057539 &9223372036854775807 +SceneRoots: + m_ObjectHideFlags: 0 + m_Roots: + - {fileID: 519420032} + - {fileID: 619394802} + - {fileID: 1355454903} + - {fileID: 374169518} + - {fileID: 1497444577} diff --git a/Assets/Set13/Scenes/Set13Tracker.unity.meta b/Assets/Set13/Scenes/Set13Tracker.unity.meta new file mode 100644 index 0000000..b8ca5f5 --- /dev/null +++ b/Assets/Set13/Scenes/Set13Tracker.unity.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 6419b0f3fb0243d4a95bd5f520385acd +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Tests/Editor/TestBitWise.cs b/Assets/Tests/Editor/TestBitWise.cs index 82067fd..1e538ca 100644 --- a/Assets/Tests/Editor/TestBitWise.cs +++ b/Assets/Tests/Editor/TestBitWise.cs @@ -2,7 +2,7 @@ using System.Collections; using System.Collections.Generic; using NUnit.Framework; -namespace Assets.Data +namespace Tests.Editor { [TestFixture] public class TestBitWise diff --git a/Assets/Tests/Editor/TestChampionUtils.cs b/Assets/Tests/Editor/TestChampionUtils.cs index 3532297..bebce05 100644 --- a/Assets/Tests/Editor/TestChampionUtils.cs +++ b/Assets/Tests/Editor/TestChampionUtils.cs @@ -1,76 +1,77 @@ -using System; -using System.Collections; -using System.Collections.Generic; -using NUnit.Framework; +// using System; +// using System.Collections; +// using System.Collections.Generic; +// using NUnit.Framework; +// using Set.Data; -namespace Assets.Data -{ - [TestFixture] - public class TestChampionUtils - { - [Test] - [TestCaseSource(typeof(ChampionCase), "championsEnum")] - public void TestIntChampion(long champlong) - { - var champs = ChampionUtils.FromLong(champlong); - long output = ChampionUtils.ToLong(champs); - Assert.IsTrue(champlong == output); - } +// namespace Tests.Editor +// { +// [TestFixture] +// public class TestChampionUtils +// { +// [Test] +// [TestCaseSource(typeof(ChampionCase), "championsEnum")] +// public void TestIntChampion(long champlong) +// { +// var champs = ChampionUtils.FromLong(champlong); +// long output = ChampionUtils.ToLong(champs); +// Assert.IsTrue(champlong == output); +// } - [Test] - [TestCaseSource(typeof(ChampionCase), "championsNth")] - public void TestGetNthChampion(long champlons, int n, long expected) - { - long output = ChampionUtils.GetNthChampion(champlons, n); - Assert.IsTrue(output == expected); - } - } +// [Test] +// [TestCaseSource(typeof(ChampionCase), "championsNth")] +// public void TestGetNthChampion(long champlons, int n, long expected) +// { +// long output = ChampionUtils.GetNthChampion(champlons, n); +// Assert.IsTrue(output == expected); +// } +// } - public class ChampionCase - { - public static IEnumerable championsEnum - { - get - { - yield return 1223456L; - yield return 3422L; - yield return 97352L; - yield return 67855324254L; - yield return 432742125L; - yield return 76578256785L; - yield return 12345678912345678L; - } - } +// public class ChampionCase +// { +// public static IEnumerable championsEnum +// { +// get +// { +// yield return 1223456L; +// yield return 3422L; +// yield return 97352L; +// yield return 67855324254L; +// yield return 432742125L; +// yield return 76578256785L; +// yield return 12345678912345678L; +// } +// } - public static IEnumerable championsNth - { - get - { - yield return new TestCaseData( - ChampionUtils.ToLong(ChampionsEnum.ASHE), - 0, - ChampionUtils.ToLong(ChampionsEnum.ASHE) - ); - yield return new TestCaseData( - ChampionUtils.ToLong(ChampionsEnum.SMOLDER), - 0, - ChampionUtils.ToLong(ChampionsEnum.SMOLDER) - ); - yield return new TestCaseData( - ChampionUtils.ToLong(new HashSet() { ChampionsEnum.AHRI }), - 0, - ChampionUtils.ToLong(ChampionsEnum.AHRI) - ); - yield return new TestCaseData( - ChampionUtils.ToLong(new HashSet() { - ChampionsEnum.AHRI, - ChampionsEnum.POPPY, - ChampionsEnum.SORAKA, - ChampionsEnum.HWEI }), - 1, - ChampionUtils.ToLong(ChampionsEnum.SORAKA) - ); - } - } - } -} +// public static IEnumerable championsNth +// { +// get +// { +// yield return new TestCaseData( +// ChampionUtils.ToLong(ChampionsEnum.ASHE), +// 0, +// ChampionUtils.ToLong(ChampionsEnum.ASHE) +// ); +// yield return new TestCaseData( +// ChampionUtils.ToLong(ChampionsEnum.SMOLDER), +// 0, +// ChampionUtils.ToLong(ChampionsEnum.SMOLDER) +// ); +// yield return new TestCaseData( +// ChampionUtils.ToLong(new HashSet() { ChampionsEnum.AHRI }), +// 0, +// ChampionUtils.ToLong(ChampionsEnum.AHRI) +// ); +// yield return new TestCaseData( +// ChampionUtils.ToLong(new HashSet() { +// ChampionsEnum.AHRI, +// ChampionsEnum.POPPY, +// ChampionsEnum.SORAKA, +// ChampionsEnum.HWEI }), +// 1, +// ChampionUtils.ToLong(ChampionsEnum.SORAKA) +// ); +// } +// } +// } +// } diff --git a/Assets/Tests/Editor/TestTraitsMapping.cs b/Assets/Tests/Editor/TestTraitsMapping.cs index 00acef1..1ba229b 100644 --- a/Assets/Tests/Editor/TestTraitsMapping.cs +++ b/Assets/Tests/Editor/TestTraitsMapping.cs @@ -1,292 +1,293 @@ -using System.Collections; -using System.Collections.Generic; -using NUnit.Framework; +// using System.Collections; +// using System.Collections.Generic; +// using NUnit.Framework; +// using Set.Data; -namespace Assets.Data -{ - [TestFixture] - public class TestTraitsMapping - { - [Test] - [TestCaseSource(typeof(TraitsMappingCase), "ChampCombination")] - public void TestChampCombination( - long mandatoryChamps, - long possibleChamps, - int n, - List expected - ) - { - List output = TraitsMapping.GenerateCombinations( - mandatoryChamps, - possibleChamps, - n - ); - foreach (long champ in expected) - { - Assert.IsTrue(output.Contains(champ)); - } +// namespace Tests.Editor +// { +// [TestFixture] +// public class TestTraitsMapping +// // { +// [Test] +// [TestCaseSource(typeof(TraitsMappingCase), "ChampCombination")] +// public void TestChampCombination( +// long mandatoryChamps, +// long possibleChamps, +// int n, +// List expected +// ) +// { +// List output = TraitsMapping.GenerateCombinations( +// mandatoryChamps, +// possibleChamps, +// n +// ); +// foreach (long champ in expected) +// { +// Assert.IsTrue(output.Contains(champ)); +// } - foreach (long champ in output) - { - Assert.IsTrue(expected.Contains(champ)); - } - } +// foreach (long champ in output) +// { +// Assert.IsTrue(expected.Contains(champ)); +// } +// } - [Test] - [TestCaseSource(typeof(TraitsMappingCase), "TestFilteringChampCombination")] - public void TestFilteringChampCombination( - long accessibleChampions, - long subselectedChampions, - long expected - ) - { - var output = TraitsMapping.SelectSublistOfChampion(accessibleChampions, subselectedChampions); - Assert.AreEqual(expected, output); - } - } +// [Test] +// [TestCaseSource(typeof(TraitsMappingCase), "TestFilteringChampCombination")] +// public void TestFilteringChampCombination( +// long accessibleChampions, +// long subselectedChampions, +// long expected +// ) +// { +// var output = TraitsMapping.SelectSublistOfChampion(accessibleChampions, subselectedChampions); +// Assert.AreEqual(expected, output); +// } +// } - public class TraitsMappingCase - { - public static IEnumerable ChampCombination - { - get - { - yield return new TestCaseData( - ChampionUtils.ToLong( - new HashSet() - { - ChampionsEnum.ASHE, - ChampionsEnum.BLITZCRANK, - } - ), - ChampionUtils.ToLong(new HashSet() { ChampionsEnum.ELISE }), - 3, - new List() - { - ChampionUtils.ToLong( - new HashSet() - { - ChampionsEnum.ASHE, - ChampionsEnum.BLITZCRANK, - ChampionsEnum.ELISE, - } - ), - } - ); +// public class TraitsMappingCase +// { +// public static IEnumerable ChampCombination +// { +// get +// { +// yield return new TestCaseData( +// ChampionUtils.ToLong( +// new HashSet() +// { +// ChampionsEnum.ASHE, +// ChampionsEnum.BLITZCRANK, +// } +// ), +// ChampionUtils.ToLong(new HashSet() { ChampionsEnum.ELISE }), +// 3, +// new List() +// { +// ChampionUtils.ToLong( +// new HashSet() +// { +// ChampionsEnum.ASHE, +// ChampionsEnum.BLITZCRANK, +// ChampionsEnum.ELISE, +// } +// ), +// } +// ); - yield return new TestCaseData( - ChampionUtils.ToLong( - new HashSet() - { - ChampionsEnum.ASHE, - ChampionsEnum.BLITZCRANK, - } - ), - ChampionUtils.ToLong( - new HashSet() - { - ChampionsEnum.ELISE, - ChampionsEnum.AHRI, - ChampionsEnum.CASSIOPEIA, - ChampionsEnum.EZREAL, - } - ), - 5, - new List() - { - ChampionUtils.ToLong( - new HashSet() - { - ChampionsEnum.ASHE, - ChampionsEnum.BLITZCRANK, - ChampionsEnum.ELISE, - ChampionsEnum.AHRI, - ChampionsEnum.CASSIOPEIA, - } - ), - ChampionUtils.ToLong( - new HashSet() - { - ChampionsEnum.ASHE, - ChampionsEnum.BLITZCRANK, - ChampionsEnum.ELISE, - ChampionsEnum.AHRI, - ChampionsEnum.EZREAL, - } - ), - ChampionUtils.ToLong( - new HashSet() - { - ChampionsEnum.ASHE, - ChampionsEnum.BLITZCRANK, - ChampionsEnum.ELISE, - ChampionsEnum.CASSIOPEIA, - ChampionsEnum.EZREAL, - } - ), - ChampionUtils.ToLong( - new HashSet() - { - ChampionsEnum.ASHE, - ChampionsEnum.BLITZCRANK, - ChampionsEnum.AHRI, - ChampionsEnum.CASSIOPEIA, - ChampionsEnum.EZREAL, - } - ), - } - ); +// yield return new TestCaseData( +// ChampionUtils.ToLong( +// new HashSet() +// { +// ChampionsEnum.ASHE, +// ChampionsEnum.BLITZCRANK, +// } +// ), +// ChampionUtils.ToLong( +// new HashSet() +// { +// ChampionsEnum.ELISE, +// ChampionsEnum.AHRI, +// ChampionsEnum.CASSIOPEIA, +// ChampionsEnum.EZREAL, +// } +// ), +// 5, +// new List() +// { +// ChampionUtils.ToLong( +// new HashSet() +// { +// ChampionsEnum.ASHE, +// ChampionsEnum.BLITZCRANK, +// ChampionsEnum.ELISE, +// ChampionsEnum.AHRI, +// ChampionsEnum.CASSIOPEIA, +// } +// ), +// ChampionUtils.ToLong( +// new HashSet() +// { +// ChampionsEnum.ASHE, +// ChampionsEnum.BLITZCRANK, +// ChampionsEnum.ELISE, +// ChampionsEnum.AHRI, +// ChampionsEnum.EZREAL, +// } +// ), +// ChampionUtils.ToLong( +// new HashSet() +// { +// ChampionsEnum.ASHE, +// ChampionsEnum.BLITZCRANK, +// ChampionsEnum.ELISE, +// ChampionsEnum.CASSIOPEIA, +// ChampionsEnum.EZREAL, +// } +// ), +// ChampionUtils.ToLong( +// new HashSet() +// { +// ChampionsEnum.ASHE, +// ChampionsEnum.BLITZCRANK, +// ChampionsEnum.AHRI, +// ChampionsEnum.CASSIOPEIA, +// ChampionsEnum.EZREAL, +// } +// ), +// } +// ); - yield return new TestCaseData( - ChampionUtils.ToLong( - new HashSet() { ChampionsEnum.AHRI, ChampionsEnum.AKALI } - ), - ChampionUtils.ToLong(new HashSet() { ChampionsEnum.ELISE }), - 3, - new List() - { - ChampionUtils.ToLong( - new HashSet() - { - ChampionsEnum.AHRI, - ChampionsEnum.AKALI, - ChampionsEnum.ELISE, - } - ), - } - ); +// yield return new TestCaseData( +// ChampionUtils.ToLong( +// new HashSet() { ChampionsEnum.AHRI, ChampionsEnum.AKALI } +// ), +// ChampionUtils.ToLong(new HashSet() { ChampionsEnum.ELISE }), +// 3, +// new List() +// { +// ChampionUtils.ToLong( +// new HashSet() +// { +// ChampionsEnum.AHRI, +// ChampionsEnum.AKALI, +// ChampionsEnum.ELISE, +// } +// ), +// } +// ); - yield return new TestCaseData( - ChampionUtils.ToLong( - new HashSet() - { - ChampionsEnum.AHRI, - ChampionsEnum.POPPY, - ChampionsEnum.SORAKA, - ChampionsEnum.XERATH, - } - ), - ChampionUtils.ToLong( - new HashSet() - { - ChampionsEnum.SMOLDER, - ChampionsEnum.MORDEKAISER, - } - ), - 4, - new List() - { - ChampionUtils.ToLong( - new HashSet() - { - ChampionsEnum.AHRI, - ChampionsEnum.POPPY, - ChampionsEnum.SORAKA, - ChampionsEnum.XERATH, - } - ), - } - ); +// yield return new TestCaseData( +// ChampionUtils.ToLong( +// new HashSet() +// { +// ChampionsEnum.AHRI, +// ChampionsEnum.POPPY, +// ChampionsEnum.SORAKA, +// ChampionsEnum.XERATH, +// } +// ), +// ChampionUtils.ToLong( +// new HashSet() +// { +// ChampionsEnum.SMOLDER, +// ChampionsEnum.MORDEKAISER, +// } +// ), +// 4, +// new List() +// { +// ChampionUtils.ToLong( +// new HashSet() +// { +// ChampionsEnum.AHRI, +// ChampionsEnum.POPPY, +// ChampionsEnum.SORAKA, +// ChampionsEnum.XERATH, +// } +// ), +// } +// ); - yield return new TestCaseData( - ChampionUtils.ToLong( - new HashSet() - { - ChampionsEnum.RUMBLE, - ChampionsEnum.GALIO, - ChampionsEnum.AKALI, - ChampionsEnum.BARD, - } - ), - ChampionUtils.ToLong( - new HashSet() - { - ChampionsEnum.MORGANA, - ChampionsEnum.FIORA, - ChampionsEnum.VARUS, - } - ), - 7, - new List() - { - ChampionUtils.ToLong( - new HashSet() - { - ChampionsEnum.RUMBLE, - ChampionsEnum.GALIO, - ChampionsEnum.AKALI, - ChampionsEnum.BARD, - ChampionsEnum.MORGANA, - ChampionsEnum.FIORA, - ChampionsEnum.VARUS - } - ), - } - ); +// yield return new TestCaseData( +// ChampionUtils.ToLong( +// new HashSet() +// { +// ChampionsEnum.RUMBLE, +// ChampionsEnum.GALIO, +// ChampionsEnum.AKALI, +// ChampionsEnum.BARD, +// } +// ), +// ChampionUtils.ToLong( +// new HashSet() +// { +// ChampionsEnum.MORGANA, +// ChampionsEnum.FIORA, +// ChampionsEnum.VARUS, +// } +// ), +// 7, +// new List() +// { +// ChampionUtils.ToLong( +// new HashSet() +// { +// ChampionsEnum.RUMBLE, +// ChampionsEnum.GALIO, +// ChampionsEnum.AKALI, +// ChampionsEnum.BARD, +// ChampionsEnum.MORGANA, +// ChampionsEnum.FIORA, +// ChampionsEnum.VARUS +// } +// ), +// } +// ); - yield return new TestCaseData( - ChampionUtils.ToLong( - new HashSet() - { - ChampionsEnum.RUMBLE, - ChampionsEnum.GALIO, - ChampionsEnum.AKALI, - ChampionsEnum.BARD, - ChampionsEnum.MORGANA, - ChampionsEnum.FIORA, - ChampionsEnum.VARUS - } - ), - ChampionUtils.ToLong( - new HashSet() - { - ChampionsEnum.XERATH - } - ), - 7, - new List() - { - ChampionUtils.ToLong( - new HashSet() - { - ChampionsEnum.RUMBLE, - ChampionsEnum.GALIO, - ChampionsEnum.AKALI, - ChampionsEnum.BARD, - ChampionsEnum.MORGANA, - ChampionsEnum.FIORA, - ChampionsEnum.VARUS - } - ), - } - ); - } - } +// yield return new TestCaseData( +// ChampionUtils.ToLong( +// new HashSet() +// { +// ChampionsEnum.RUMBLE, +// ChampionsEnum.GALIO, +// ChampionsEnum.AKALI, +// ChampionsEnum.BARD, +// ChampionsEnum.MORGANA, +// ChampionsEnum.FIORA, +// ChampionsEnum.VARUS +// } +// ), +// ChampionUtils.ToLong( +// new HashSet() +// { +// ChampionsEnum.XERATH +// } +// ), +// 7, +// new List() +// { +// ChampionUtils.ToLong( +// new HashSet() +// { +// ChampionsEnum.RUMBLE, +// ChampionsEnum.GALIO, +// ChampionsEnum.AKALI, +// ChampionsEnum.BARD, +// ChampionsEnum.MORGANA, +// ChampionsEnum.FIORA, +// ChampionsEnum.VARUS +// } +// ), +// } +// ); +// } +// } - public static IEnumerable TestFilteringChampCombination - { - get - { - yield return new TestCaseData( - ChampionUtils.ToLong( - new HashSet() - { - ChampionsEnum.ASHE, - ChampionsEnum.BLITZCRANK, - ChampionsEnum.ELISE, - ChampionsEnum.JAX - } - ), - 0b0101, - ChampionUtils.ToLong( - new HashSet() - { - ChampionsEnum.ASHE, - ChampionsEnum.ELISE - } - ) - ); - } - } - } -} +// public static IEnumerable TestFilteringChampCombination +// { +// get +// { +// yield return new TestCaseData( +// ChampionUtils.ToLong( +// new HashSet() +// { +// ChampionsEnum.ASHE, +// ChampionsEnum.BLITZCRANK, +// ChampionsEnum.ELISE, +// ChampionsEnum.JAX +// } +// ), +// 0b0101, +// ChampionUtils.ToLong( +// new HashSet() +// { +// ChampionsEnum.ASHE, +// ChampionsEnum.ELISE +// } +// ) +// ); +// } +// } +// } +// } diff --git a/Assets/Tests/Editor/TestTraitsUtils.cs b/Assets/Tests/Editor/TestTraitsUtils.cs index 46375b6..c9c4695 100644 --- a/Assets/Tests/Editor/TestTraitsUtils.cs +++ b/Assets/Tests/Editor/TestTraitsUtils.cs @@ -1,8 +1,9 @@ using System.Collections; using System.Collections.Generic; using NUnit.Framework; +using Set.Data; -namespace Assets.Data +namespace Tests.Editor { [TestFixture] public class TestTraitsUtils @@ -92,65 +93,46 @@ namespace Assets.Data get { yield return new TestCaseData( - new Dictionary { { (int)TraitsEnum.ARCANA, 1 } }, - new Dictionary { { (int)TraitsEnum.ARCANA, 1 } }, - new Dictionary { { (int)TraitsEnum.ARCANA, 2 } } + new Dictionary { { (int)TraitsEnum.BATTLEACADEMIA, 1 } }, + new Dictionary { { (int)TraitsEnum.BATTLEACADEMIA, 1 } }, + new Dictionary { { (int)TraitsEnum.BATTLEACADEMIA, 2 } } ); yield return new TestCaseData( new Dictionary { - { (int)TraitsEnum.ARCANA, 1 }, - { (int)TraitsEnum.DRAGON, 2 }, - { (int)TraitsEnum.FROST, 3 }, - { (int)TraitsEnum.HONEYMANCY, 4 }, - { (int)TraitsEnum.PYRO, 5 }, - { (int)TraitsEnum.WARRIOR, 6 }, + { (int)TraitsEnum.BATTLEACADEMIA, 1 }, + { (int)TraitsEnum.CRYSTALGAMBIT, 2 }, + { (int)TraitsEnum.LUCHADOR, 3 }, + { (int)TraitsEnum.MIGHTYMECH, 4 }, + { (int)TraitsEnum.SOULFIGHTER, 5 }, + { (int)TraitsEnum.BASTION, 6 }, }, new Dictionary { - { (int)TraitsEnum.ARCANA, 1 }, - { (int)TraitsEnum.DRAGON, 2 }, - { (int)TraitsEnum.FROST, 3 }, - { (int)TraitsEnum.HONEYMANCY, 4 }, - { (int)TraitsEnum.PYRO, 5 }, - { (int)TraitsEnum.WARRIOR, 6 }, + { (int)TraitsEnum.BATTLEACADEMIA, 1 }, + { (int)TraitsEnum.CRYSTALGAMBIT, 2 }, + { (int)TraitsEnum.LUCHADOR, 3 }, + { (int)TraitsEnum.MIGHTYMECH, 4 }, + { (int)TraitsEnum.SOULFIGHTER, 5 }, + { (int)TraitsEnum.BASTION, 6 }, }, new Dictionary { - { (int)TraitsEnum.ARCANA, 2 }, - { (int)TraitsEnum.DRAGON, 4 }, - { (int)TraitsEnum.FROST, 6 }, - { (int)TraitsEnum.HONEYMANCY, 8 }, - { (int)TraitsEnum.PYRO, 10 }, - { (int)TraitsEnum.WARRIOR, 12 }, + { (int)TraitsEnum.BATTLEACADEMIA, 2 }, + { (int)TraitsEnum.CRYSTALGAMBIT, 4 }, + { (int)TraitsEnum.LUCHADOR, 6 }, + { (int)TraitsEnum.MIGHTYMECH, 8 }, + { (int)TraitsEnum.SOULFIGHTER, 10 }, + { (int)TraitsEnum.BASTION, 12 }, } ); /* - here is the list of traits : - ARCANA, - CHRONO, - DRAGON, - DRUID, - ELDRICHT, - FAERIE, - FROST, - HONEYMANCY, - PORTAL, - PYRO, - SUGARCRAFT, - WITCHCRAFT, - BASTION, - BLASTER, - HUNTER, - INCANTATOR, - MAGE, - MULTISTRIKER, - PRESERVER, - SCHOLAR, - SHAPESHIFTER, - VANGUARD, - WARRIOR - + Set 15 traits list: + Origins: BATTLEACADEMIA, CRYSTALGAMBIT, LUCHADOR, MIGHTYMECH, MONSTERTRAINER, + SOULFIGHTER, STARGUARDIAN, SUPREMECELLS, THECREW, WRAITH, MENTOR, + PRODIGY, THECHAMP, STANCEMASTER, ROGUECAPTAIN + Classes: BASTION, DUELIST, EDGELORD, EXECUTIONER, HEAVYWEIGHT, JUGGERNAUT, + PROTECTOR, SNIPER, SORCERER, STRATEGIST */ } } @@ -162,19 +144,19 @@ namespace Assets.Data yield return new TestCaseData( new Dictionary { - { (int)TraitsEnum.ARCANA, 1 }, - { (int)TraitsEnum.DRAGON, 2 }, - { (int)TraitsEnum.FROST, 3 }, - { (int)TraitsEnum.HONEYMANCY, 4 }, - { (int)TraitsEnum.PYRO, 1 }, - { (int)TraitsEnum.WARRIOR, 1 }, + { (int)TraitsEnum.BATTLEACADEMIA, 1 }, + { (int)TraitsEnum.CRYSTALGAMBIT, 2 }, + { (int)TraitsEnum.LUCHADOR, 3 }, + { (int)TraitsEnum.MIGHTYMECH, 4 }, + { (int)TraitsEnum.SOULFIGHTER, 1 }, + { (int)TraitsEnum.BASTION, 1 }, }, TraitUtils.ToInt( new HashSet { - TraitsEnum.DRAGON, - TraitsEnum.FROST, - TraitsEnum.HONEYMANCY + TraitsEnum.CRYSTALGAMBIT, + TraitsEnum.LUCHADOR, + TraitsEnum.MIGHTYMECH } ) ); @@ -182,19 +164,19 @@ namespace Assets.Data yield return new TestCaseData( new Dictionary { - { (int)TraitsEnum.ARCANA, 5 }, - { (int)TraitsEnum.FROST, 2 }, - { (int)TraitsEnum.HONEYMANCY, 7 }, - { (int)TraitsEnum.PYRO, 4 }, - { (int)TraitsEnum.WARRIOR, 3 }, + { (int)TraitsEnum.BATTLEACADEMIA, 5 }, + { (int)TraitsEnum.LUCHADOR, 2 }, + { (int)TraitsEnum.STARGUARDIAN, 7 }, + { (int)TraitsEnum.SOULFIGHTER, 4 }, + { (int)TraitsEnum.BASTION, 3 }, }, TraitUtils.ToInt( new HashSet { - TraitsEnum.ARCANA, - TraitsEnum.HONEYMANCY, - TraitsEnum.PYRO, - TraitsEnum.WARRIOR, + TraitsEnum.BATTLEACADEMIA, + TraitsEnum.STARGUARDIAN, + TraitsEnum.SOULFIGHTER, + TraitsEnum.BASTION } ) ); @@ -214,53 +196,55 @@ namespace Assets.Data } } - public static IEnumerable traitsToInt + public static IEnumerable traitsToInt { get { yield return new TestCaseData( new HashSet { - TraitsEnum.ARCANA, - TraitsEnum.DRAGON + TraitsEnum.BATTLEACADEMIA, + TraitsEnum.CRYSTALGAMBIT }, - 1<<0 | 1<<2 + 1 << 0 | 1 << 1 ); yield return new TestCaseData( new HashSet { - TraitsEnum.ARCANA, - TraitsEnum.DRAGON, - TraitsEnum.FROST, - TraitsEnum.HONEYMANCY, - TraitsEnum.PYRO, - TraitsEnum.WARRIOR + TraitsEnum.BATTLEACADEMIA, + TraitsEnum.CRYSTALGAMBIT, + TraitsEnum.LUCHADOR, + TraitsEnum.MIGHTYMECH, + TraitsEnum.SOULFIGHTER, + TraitsEnum.BASTION }, - 1<<0 | 1<<2 | 1<<6 | 1<<7 | 1<<9 | 1<<22 - ); - yield return new TestCaseData(new HashSet{TraitsEnum.ARCANA},1 << 0); - yield return new TestCaseData(new HashSet{TraitsEnum.CHRONO},1 << 1); - yield return new TestCaseData(new HashSet{TraitsEnum.DRAGON},1 << 2); - yield return new TestCaseData(new HashSet{TraitsEnum.DRUID},1 << 3); - yield return new TestCaseData(new HashSet{TraitsEnum.ELDRICHT},1 << 4); - yield return new TestCaseData(new HashSet{TraitsEnum.FAERIE},1 << 5); - yield return new TestCaseData(new HashSet{TraitsEnum.FROST},1 << 6); - yield return new TestCaseData(new HashSet{TraitsEnum.HONEYMANCY},1 << 7); - yield return new TestCaseData(new HashSet{TraitsEnum.PORTAL},1 << 8); - yield return new TestCaseData(new HashSet{TraitsEnum.PYRO},1 << 9); - yield return new TestCaseData(new HashSet{TraitsEnum.SUGARCRAFT},1 << 10); - yield return new TestCaseData(new HashSet{TraitsEnum.WITCHCRAFT},1 << 11); - yield return new TestCaseData(new HashSet{TraitsEnum.BASTION},1 << 12); - yield return new TestCaseData(new HashSet{TraitsEnum.BLASTER},1 << 13); - yield return new TestCaseData(new HashSet{TraitsEnum.HUNTER},1 << 14); - yield return new TestCaseData(new HashSet{TraitsEnum.INCANTATOR},1 << 15); - yield return new TestCaseData(new HashSet{TraitsEnum.MAGE},1 << 16); - yield return new TestCaseData(new HashSet{TraitsEnum.MULTISTRIKER},1 << 17); - yield return new TestCaseData(new HashSet{TraitsEnum.PRESERVER},1 << 18); - yield return new TestCaseData(new HashSet{TraitsEnum.SCHOLAR},1 << 19); - yield return new TestCaseData(new HashSet{TraitsEnum.SHAPESHIFTER},1 << 20); - yield return new TestCaseData(new HashSet{TraitsEnum.VANGUARD},1 << 21); - yield return new TestCaseData(new HashSet{TraitsEnum.WARRIOR},1 << 22); + 1 << 0 | 1 << 1 | 1 << 2 | 1 << 3 | 1 << 5 | 1 << 15 + ); + yield return new TestCaseData(new HashSet { TraitsEnum.BATTLEACADEMIA }, 1 << 0); + yield return new TestCaseData(new HashSet { TraitsEnum.CRYSTALGAMBIT }, 1 << 1); + yield return new TestCaseData(new HashSet { TraitsEnum.LUCHADOR }, 1 << 2); + yield return new TestCaseData(new HashSet { TraitsEnum.MIGHTYMECH }, 1 << 3); + yield return new TestCaseData(new HashSet { TraitsEnum.MONSTERTRAINER }, 1 << 4); + yield return new TestCaseData(new HashSet { TraitsEnum.SOULFIGHTER }, 1 << 5); + yield return new TestCaseData(new HashSet { TraitsEnum.STARGUARDIAN }, 1 << 6); + yield return new TestCaseData(new HashSet { TraitsEnum.SUPREMECELLS }, 1 << 7); + yield return new TestCaseData(new HashSet { TraitsEnum.THECREW }, 1 << 8); + yield return new TestCaseData(new HashSet { TraitsEnum.WRAITH }, 1 << 9); + yield return new TestCaseData(new HashSet { TraitsEnum.MENTOR }, 1 << 10); + yield return new TestCaseData(new HashSet { TraitsEnum.PRODIGY }, 1 << 11); + yield return new TestCaseData(new HashSet { TraitsEnum.THECHAMP }, 1 << 12); + yield return new TestCaseData(new HashSet { TraitsEnum.STANCEMASTER }, 1 << 13); + yield return new TestCaseData(new HashSet { TraitsEnum.ROGUECAPTAIN }, 1 << 14); + yield return new TestCaseData(new HashSet { TraitsEnum.BASTION }, 1 << 15); + yield return new TestCaseData(new HashSet { TraitsEnum.DUELIST }, 1 << 16); + yield return new TestCaseData(new HashSet { TraitsEnum.EDGELORD }, 1 << 17); + yield return new TestCaseData(new HashSet { TraitsEnum.EXECUTIONER }, 1 << 18); + yield return new TestCaseData(new HashSet { TraitsEnum.HEAVYWEIGHT }, 1 << 19); + yield return new TestCaseData(new HashSet { TraitsEnum.JUGGERNAUT }, 1 << 20); + yield return new TestCaseData(new HashSet { TraitsEnum.PROTECTOR }, 1 << 21); + yield return new TestCaseData(new HashSet { TraitsEnum.SNIPER }, 1 << 22); + yield return new TestCaseData(new HashSet { TraitsEnum.SORCERER }, 1 << 23); + yield return new TestCaseData(new HashSet { TraitsEnum.STRATEGIST }, 1 << 24); } } } diff --git a/Assets/UI/ChampionBaseUI.cs b/Assets/UI/ChampionBaseUI.cs new file mode 100644 index 0000000..c2cd3a0 --- /dev/null +++ b/Assets/UI/ChampionBaseUI.cs @@ -0,0 +1,55 @@ +using Set.Data; +using TMPro; +using UnityEngine; +using UnityEngine.UI; + +namespace UI +{ + public class ChampionBaseUI : MonoBehaviour + { + [SerializeField] + private Text _championNameText; + + [SerializeField] + private Toggle _championToggle; + + private ChampionsEnum _championType; + private bool _defaultSelected = false; + + public ChampionsEnum ChampionType => _championType; + public bool IsSelected => _championToggle != null ? _championToggle.isOn : false; + + public void Initialize( + ChampionsEnum championType, + string championDisplayName, + bool defaultSelected = false + ) + { + _championType = championType; + _championNameText.text = championDisplayName; + _defaultSelected = defaultSelected; + + // Set default selection state + if (_championToggle != null) + _championToggle.isOn = defaultSelected; + } + + public void SetSelected(bool selected) + { + if (_championToggle != null) + _championToggle.isOn = selected; + } + + public void ResetToDefault() + { + if (_championToggle != null) + _championToggle.isOn = _defaultSelected; + } + + public void SetInteractable(bool interactable) + { + if (_championToggle != null) + _championToggle.interactable = interactable; + } + } +} diff --git a/Assets/UI/ChampionBaseUI.cs.meta b/Assets/UI/ChampionBaseUI.cs.meta new file mode 100644 index 0000000..1be2f0d --- /dev/null +++ b/Assets/UI/ChampionBaseUI.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 320b859d2593db54f8f302651ac58a69 \ No newline at end of file diff --git a/Assets/UI/ChampionDisplayInfo.cs b/Assets/UI/ChampionDisplayInfo.cs new file mode 100644 index 0000000..0361510 --- /dev/null +++ b/Assets/UI/ChampionDisplayInfo.cs @@ -0,0 +1,16 @@ +using UnityEngine; + +namespace UI +{ + public class ChampionDisplayInfo : MonoBehaviour + { + public string DisplayName { get; } + public int Cost { get; } + + public ChampionDisplayInfo(string displayName, int cost) + { + DisplayName = displayName; + Cost = cost; + } + } +} \ No newline at end of file diff --git a/Assets/UI/ChampionDisplayInfo.cs.meta b/Assets/UI/ChampionDisplayInfo.cs.meta new file mode 100644 index 0000000..c5e731a --- /dev/null +++ b/Assets/UI/ChampionDisplayInfo.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: acd8848a11b96a9458077637bacec1fd \ No newline at end of file diff --git a/Assets/UI/ChampionSelector.cs b/Assets/UI/ChampionSelector.cs index f1ee12b..87be877 100644 --- a/Assets/UI/ChampionSelector.cs +++ b/Assets/UI/ChampionSelector.cs @@ -1,325 +1,246 @@ using System.Collections.Generic; +using System.Linq; +using Set.Data; using UnityEngine; using UnityEngine.UI; -public class ChampionSelector : MonoBehaviour +namespace UI { - [SerializeField] private bool _defaultSelection = false; - [SerializeField] - Toggle _ASHESelector; - - [SerializeField] - Toggle _BLITZCRANKSelector; - - [SerializeField] - Toggle _ELISESelector; - - [SerializeField] - Toggle _JAXSelector; - - [SerializeField] - Toggle _JAYCESelector; - - [SerializeField] - Toggle _LILLIASelector; - - [SerializeField] - Toggle _NOMSYSelector; - - [SerializeField] - Toggle _POPPYSelector; - - [SerializeField] - Toggle _SERAPHINESelector; - - [SerializeField] - Toggle _SORAKASelector; - - [SerializeField] - Toggle _TWITCHSelector; - - [SerializeField] - Toggle _WARWICKSelector; - - [SerializeField] - Toggle _ZIGGSSelector; - - [SerializeField] - Toggle _ZOESelector; - - [SerializeField] - Toggle _AHRISelector; - - [SerializeField] - Toggle _AKALISelector; - - [SerializeField] - Toggle _CASSIOPEIASelector; - - [SerializeField] - Toggle _GALIOSelector; - - [SerializeField] - Toggle _KASSADINSelector; - - [SerializeField] - Toggle _KOGMAWSelector; - - [SerializeField] - Toggle _NILAHSelector; - - [SerializeField] - Toggle _NUNUSelector; - - [SerializeField] - Toggle _RUMBLESelector; - - [SerializeField] - Toggle _SHYVANASelector; - - [SerializeField] - Toggle _SYNDRASelector; - - [SerializeField] - Toggle _TRISTANASelector; - - [SerializeField] - Toggle _ZILEANSelector; - - [SerializeField] - Toggle _BARDSelector; - - [SerializeField] - Toggle _EZREALSelector; - - [SerializeField] - Toggle _HECARIMSelector; - - [SerializeField] - Toggle _HWEISelector; - - [SerializeField] - Toggle _JINXSelector; - - [SerializeField] - Toggle _KATARINASelector; - - [SerializeField] - Toggle _MORDEKAISERSelector; - - [SerializeField] - Toggle _NEEKOSelector; - - [SerializeField] - Toggle _SHENSelector; - - [SerializeField] - Toggle _SWAINSelector; - - [SerializeField] - Toggle _VEIGARSelector; - - [SerializeField] - Toggle _VEXSelector; - - [SerializeField] - Toggle _WUKONGSelector; - - [SerializeField] - Toggle _FIORASelector; - - [SerializeField] - Toggle _GWENSelector; - - [SerializeField] - Toggle _KALISTASelector; - - [SerializeField] - Toggle _KARMASelector; - - [SerializeField] - Toggle _NAMISelector; - - [SerializeField] - Toggle _NASUSSelector; - - [SerializeField] - Toggle _OLAFSelector; - - [SerializeField] - Toggle _RAKANSelector; - - [SerializeField] - Toggle _RYZESelector; - - [SerializeField] - Toggle _TAHMKENCHSelector; - - [SerializeField] - Toggle _TARICSelector; - - [SerializeField] - Toggle _VARUSSelector; - - [SerializeField] - Toggle _BRIARSelector; - - [SerializeField] - Toggle _CAMILLESelector; - - [SerializeField] - Toggle _DIANASelector; - - [SerializeField] - Toggle _MILLIOSelector; - - [SerializeField] - Toggle _MORGANASelector; - - [SerializeField] - Toggle _NORRASelector; - - [SerializeField] - Toggle _SMOLDERSelector; - - [SerializeField] - Toggle _XERATHSelector; - - - public HashSet GetSelectedChampions() + public class ChampionSelector : MonoBehaviour { - var selectedChampions = new HashSet(); + [Header("Configuration")] + [SerializeField] + private bool _defaultSelection = false; - if (_ASHESelector.isOn) selectedChampions.Add(ChampionsEnum.ASHE); - if (_BLITZCRANKSelector.isOn) selectedChampions.Add(ChampionsEnum.BLITZCRANK); - if (_ELISESelector.isOn) selectedChampions.Add(ChampionsEnum.ELISE); - if (_JAXSelector.isOn) selectedChampions.Add(ChampionsEnum.JAX); - if (_JAYCESelector.isOn) selectedChampions.Add(ChampionsEnum.JAYCE); - if (_LILLIASelector.isOn) selectedChampions.Add(ChampionsEnum.LILLIA); - if (_NOMSYSelector.isOn) selectedChampions.Add(ChampionsEnum.NOMSY); - if (_POPPYSelector.isOn) selectedChampions.Add(ChampionsEnum.POPPY); - if (_SERAPHINESelector.isOn) selectedChampions.Add(ChampionsEnum.SERAPHINE); - if (_SORAKASelector.isOn) selectedChampions.Add(ChampionsEnum.SORAKA); - if (_TWITCHSelector.isOn) selectedChampions.Add(ChampionsEnum.TWITCH); - if (_WARWICKSelector.isOn) selectedChampions.Add(ChampionsEnum.WARWICK); - if (_ZIGGSSelector.isOn) selectedChampions.Add(ChampionsEnum.ZIGGS); - if (_ZOESelector.isOn) selectedChampions.Add(ChampionsEnum.ZOE); - if (_AHRISelector.isOn) selectedChampions.Add(ChampionsEnum.AHRI); - if (_AKALISelector.isOn) selectedChampions.Add(ChampionsEnum.AKALI); - if (_CASSIOPEIASelector.isOn) selectedChampions.Add(ChampionsEnum.CASSIOPEIA); - if (_GALIOSelector.isOn) selectedChampions.Add(ChampionsEnum.GALIO); - if (_KASSADINSelector.isOn) selectedChampions.Add(ChampionsEnum.KASSADIN); - if (_KOGMAWSelector.isOn) selectedChampions.Add(ChampionsEnum.KOGMAW); - if (_NILAHSelector.isOn) selectedChampions.Add(ChampionsEnum.NILAH); - if (_NUNUSelector.isOn) selectedChampions.Add(ChampionsEnum.NUNU); - if (_RUMBLESelector.isOn) selectedChampions.Add(ChampionsEnum.RUMBLE); - if (_SHYVANASelector.isOn) selectedChampions.Add(ChampionsEnum.SHYVANA); - if (_SYNDRASelector.isOn) selectedChampions.Add(ChampionsEnum.SYNDRA); - if (_TRISTANASelector.isOn) selectedChampions.Add(ChampionsEnum.TRISTANA); - if (_ZILEANSelector.isOn) selectedChampions.Add(ChampionsEnum.ZILEAN); - if (_BARDSelector.isOn) selectedChampions.Add(ChampionsEnum.BARD); - if (_EZREALSelector.isOn) selectedChampions.Add(ChampionsEnum.EZREAL); - if (_HECARIMSelector.isOn) selectedChampions.Add(ChampionsEnum.HECARIM); - if (_HWEISelector.isOn) selectedChampions.Add(ChampionsEnum.HWEI); - if (_JINXSelector.isOn) selectedChampions.Add(ChampionsEnum.JINX); - if (_KATARINASelector.isOn) selectedChampions.Add(ChampionsEnum.KATARINA); - if (_MORDEKAISERSelector.isOn) selectedChampions.Add(ChampionsEnum.MORDEKAISER); - if (_NEEKOSelector.isOn) selectedChampions.Add(ChampionsEnum.NEEKO); - if (_SHENSelector.isOn) selectedChampions.Add(ChampionsEnum.SHEN); - if (_SWAINSelector.isOn) selectedChampions.Add(ChampionsEnum.SWAIN); - if (_VEIGARSelector.isOn) selectedChampions.Add(ChampionsEnum.VEIGAR); - if (_VEXSelector.isOn) selectedChampions.Add(ChampionsEnum.VEX); - if (_WUKONGSelector.isOn) selectedChampions.Add(ChampionsEnum.WUKONG); - if (_FIORASelector.isOn) selectedChampions.Add(ChampionsEnum.FIORA); - if (_GWENSelector.isOn) selectedChampions.Add(ChampionsEnum.GWEN); - if (_KALISTASelector.isOn) selectedChampions.Add(ChampionsEnum.KALISTA); - if (_KARMASelector.isOn) selectedChampions.Add(ChampionsEnum.KARMA); - if (_NAMISelector.isOn) selectedChampions.Add(ChampionsEnum.NAMI); - if (_NASUSSelector.isOn) selectedChampions.Add(ChampionsEnum.NASUS); - if (_OLAFSelector.isOn) selectedChampions.Add(ChampionsEnum.OLAF); - if (_RAKANSelector.isOn) selectedChampions.Add(ChampionsEnum.RAKAN); - if (_RYZESelector.isOn) selectedChampions.Add(ChampionsEnum.RYZE); - if (_TAHMKENCHSelector.isOn) selectedChampions.Add(ChampionsEnum.TAHMKENCH); - if (_TARICSelector.isOn) selectedChampions.Add(ChampionsEnum.TARIC); - if (_VARUSSelector.isOn) selectedChampions.Add(ChampionsEnum.VARUS); - if (_BRIARSelector.isOn) selectedChampions.Add(ChampionsEnum.BRIAR); - if (_CAMILLESelector.isOn) selectedChampions.Add(ChampionsEnum.CAMILLE); - if (_DIANASelector.isOn) selectedChampions.Add(ChampionsEnum.DIANA); - if (_MILLIOSelector.isOn) selectedChampions.Add(ChampionsEnum.MILLIO); - if (_MORGANASelector.isOn) selectedChampions.Add(ChampionsEnum.MORGANA); - if (_NORRASelector.isOn) selectedChampions.Add(ChampionsEnum.NORRA); - if (_SMOLDERSelector.isOn) selectedChampions.Add(ChampionsEnum.SMOLDER); - if (_XERATHSelector.isOn) selectedChampions.Add(ChampionsEnum.XERATH); + [SerializeField] + private GameObject _championUIPrefab; - return selectedChampions; - } + [Header("Layout")] + [SerializeField] + private Transform _cost1Parent; - public void Reset() - { - SetTo(_defaultSelection); - } + [SerializeField] + private Transform _cost2Parent; - public void SetTo(bool on) - { - _ASHESelector.isOn = on; - _BLITZCRANKSelector.isOn = on; - _ELISESelector.isOn = on; - _JAXSelector.isOn = on; - _JAYCESelector.isOn = on; - _LILLIASelector.isOn = on; - _NOMSYSelector.isOn = on; - _POPPYSelector.isOn = on; - _SERAPHINESelector.isOn = on; - _SORAKASelector.isOn = on; - _TWITCHSelector.isOn = on; - _WARWICKSelector.isOn = on; - _ZIGGSSelector.isOn = on; - _ZOESelector.isOn = on; - _AHRISelector.isOn = on; - _AKALISelector.isOn = on; - _CASSIOPEIASelector.isOn = on; - _GALIOSelector.isOn = on; - _KASSADINSelector.isOn = on; - _KOGMAWSelector.isOn = on; - _NILAHSelector.isOn = on; - _NUNUSelector.isOn = on; - _RUMBLESelector.isOn = on; - _SHYVANASelector.isOn = on; - _SYNDRASelector.isOn = on; - _TRISTANASelector.isOn = on; - _ZILEANSelector.isOn = on; - _BARDSelector.isOn = on; - _EZREALSelector.isOn = on; - _HECARIMSelector.isOn = on; - _HWEISelector.isOn = on; - _JINXSelector.isOn = on; - _KATARINASelector.isOn = on; - _MORDEKAISERSelector.isOn = on; - _NEEKOSelector.isOn = on; - _SHENSelector.isOn = on; - _SWAINSelector.isOn = on; - _VEIGARSelector.isOn = on; - _VEXSelector.isOn = on; - _WUKONGSelector.isOn = on; - _FIORASelector.isOn = on; - _GWENSelector.isOn = on; - _KALISTASelector.isOn = on; - _KARMASelector.isOn = on; - _NAMISelector.isOn = on; - _NASUSSelector.isOn = on; - _OLAFSelector.isOn = on; - _RAKANSelector.isOn = on; - _RYZESelector.isOn = on; - _TAHMKENCHSelector.isOn = on; - _TARICSelector.isOn = on; - _VARUSSelector.isOn = on; - _BRIARSelector.isOn = on; - _CAMILLESelector.isOn = on; - _DIANASelector.isOn = on; - _MILLIOSelector.isOn = on; - _MORGANASelector.isOn = on; - _NORRASelector.isOn = on; - _SMOLDERSelector.isOn = on; - _XERATHSelector.isOn = on; + [SerializeField] + private Transform _cost3Parent; + + [SerializeField] + private Transform _cost4Parent; + + [SerializeField] + private Transform _cost5Parent; + + [Header("Optional: Champion Icons")] + [SerializeField] + + private Dictionary _championUIs = + new Dictionary(); + + + // Champion definitions with display names and costs + private readonly Dictionary _championDisplayInfo = + new Dictionary + { + // Cost 1 Champions + { ChampionsEnum.AATROX, new ChampionDisplayInfo("Aatrox", 1) }, + { ChampionsEnum.EZREAL, new ChampionDisplayInfo("Ezreal", 1) }, + { ChampionsEnum.GAREN, new ChampionDisplayInfo("Garen", 1) }, + { ChampionsEnum.GNAR, new ChampionDisplayInfo("Gnar", 1) }, + { ChampionsEnum.KALISTA, new ChampionDisplayInfo("Kalista", 1) }, + { ChampionsEnum.KAYLE, new ChampionDisplayInfo("Kayle", 1) }, + { ChampionsEnum.KENNEN, new ChampionDisplayInfo("Kennen", 1) }, + { ChampionsEnum.LUCIAN, new ChampionDisplayInfo("Lucian", 1) }, + { ChampionsEnum.MALPHITE, new ChampionDisplayInfo("Malphite", 1) }, + { ChampionsEnum.NAAFIRI, new ChampionDisplayInfo("Naafiri", 1) }, + { ChampionsEnum.RELL, new ChampionDisplayInfo("Rell", 1) }, + { ChampionsEnum.SIVIR, new ChampionDisplayInfo("Sivir", 1) }, + { ChampionsEnum.SYNDRA, new ChampionDisplayInfo("Syndra", 1) }, + { ChampionsEnum.ZAC, new ChampionDisplayInfo("Zac", 1) }, + // Cost 2 Champions + { ChampionsEnum.DRMUNDO, new ChampionDisplayInfo("Dr. Mundo", 2) }, + { ChampionsEnum.GANGPLANK, new ChampionDisplayInfo("Gangplank", 2) }, + { ChampionsEnum.JANNA, new ChampionDisplayInfo("Janna", 2) }, + { ChampionsEnum.JHIN, new ChampionDisplayInfo("Jhin", 2) }, + { ChampionsEnum.KAISA, new ChampionDisplayInfo("Kai'Sa", 2) }, + { ChampionsEnum.KATARINA, new ChampionDisplayInfo("Katarina", 2) }, + { ChampionsEnum.KOBUKO, new ChampionDisplayInfo("Kobuko", 2) }, + { ChampionsEnum.LUX, new ChampionDisplayInfo("Lux", 2) }, + { ChampionsEnum.RAKAN, new ChampionDisplayInfo("Rakan", 2) }, + { ChampionsEnum.SHEN, new ChampionDisplayInfo("Shen", 2) }, + { ChampionsEnum.VI, new ChampionDisplayInfo("Vi", 2) }, + { ChampionsEnum.XAYAH, new ChampionDisplayInfo("Xayah", 2) }, + { ChampionsEnum.XINZHAO, new ChampionDisplayInfo("Xin Zhao", 2) }, + // Cost 3 Champions + { ChampionsEnum.AHRI, new ChampionDisplayInfo("Ahri", 3) }, + { ChampionsEnum.CAITLYN, new ChampionDisplayInfo("Caitlyn", 3) }, + { ChampionsEnum.DARIUS, new ChampionDisplayInfo("Darius", 3) }, + { ChampionsEnum.JAYCE, new ChampionDisplayInfo("Jayce", 3) }, + { ChampionsEnum.KOGMAW, new ChampionDisplayInfo("Kog'Maw", 3) }, + { ChampionsEnum.LULU, new ChampionDisplayInfo("Lulu", 3) }, + { ChampionsEnum.MALZAHAR, new ChampionDisplayInfo("Malzahar", 3) }, + { ChampionsEnum.NEEKO, new ChampionDisplayInfo("Neeko", 3) }, + { ChampionsEnum.RAMMUS, new ChampionDisplayInfo("Rammus", 3) }, + { ChampionsEnum.SENNA, new ChampionDisplayInfo("Senna", 3) }, + { ChampionsEnum.SMOLDER, new ChampionDisplayInfo("Smolder", 3) }, + { ChampionsEnum.SWAIN, new ChampionDisplayInfo("Swain", 3) }, + { ChampionsEnum.UDYR, new ChampionDisplayInfo("Udyr", 3) }, + { ChampionsEnum.VIEGO, new ChampionDisplayInfo("Viego", 3) }, + { ChampionsEnum.YASUO, new ChampionDisplayInfo("Yasuo", 3) }, + { ChampionsEnum.ZIGGS, new ChampionDisplayInfo("Ziggs", 3) }, + // Cost 4 Champions + { ChampionsEnum.AKALI, new ChampionDisplayInfo("Akali", 4) }, + { ChampionsEnum.ASHE, new ChampionDisplayInfo("Ashe", 4) }, + { ChampionsEnum.JARVANIV, new ChampionDisplayInfo("Jarvan IV", 4) }, + { ChampionsEnum.JINX, new ChampionDisplayInfo("Jinx", 4) }, + { ChampionsEnum.KARMA, new ChampionDisplayInfo("Karma", 4) }, + { ChampionsEnum.KSANTE, new ChampionDisplayInfo("K'Sante", 4) }, + { ChampionsEnum.LEONA, new ChampionDisplayInfo("Leona", 4) }, + { ChampionsEnum.POPPY, new ChampionDisplayInfo("Poppy", 4) }, + { ChampionsEnum.RYZE, new ChampionDisplayInfo("Ryze", 4) }, + { ChampionsEnum.SAMIRA, new ChampionDisplayInfo("Samira", 4) }, + { ChampionsEnum.SETT, new ChampionDisplayInfo("Sett", 4) }, + { ChampionsEnum.VOLIBEAR, new ChampionDisplayInfo("Volibear", 4) }, + { ChampionsEnum.YUUMI, new ChampionDisplayInfo("Yuumi", 4) }, + // Cost 5 Champions + { ChampionsEnum.BRAUM, new ChampionDisplayInfo("Braum", 5) }, + { ChampionsEnum.EKKO, new ChampionDisplayInfo("Ekko", 5) }, + { ChampionsEnum.GWEN, new ChampionDisplayInfo("Gwen", 5) }, + { ChampionsEnum.LEESIN, new ChampionDisplayInfo("Lee Sin", 5) }, + { ChampionsEnum.SERAPHINE, new ChampionDisplayInfo("Seraphine", 5) }, + { ChampionsEnum.TWISTEDFATE, new ChampionDisplayInfo("Twisted Fate", 5) }, + { ChampionsEnum.VARUS, new ChampionDisplayInfo("Varus", 5) }, + }; + + [System.Serializable] + public class ChampionIconData + { + public ChampionsEnum champion; + public Sprite icon; + } + + void Start() + { + CreateChampionUIs(); + } + + + + private void CreateChampionUIs() + { + if (_championUIPrefab == null) + { + Debug.LogError("Champion UI Prefab is not assigned!"); + return; + } + + foreach (var kvp in _championDisplayInfo) + { + var champion = kvp.Key; + var displayInfo = kvp.Value; + + Transform parent = GetParentForCost(displayInfo.Cost); + if (parent == null) + continue; + + GameObject championUI = Instantiate(_championUIPrefab, parent); + ChampionBaseUI championBaseUI = championUI.GetComponent(); + + if (championBaseUI != null) + { + championBaseUI.Initialize(champion, displayInfo.DisplayName, _defaultSelection); + _championUIs[champion] = championBaseUI; + } + else + { + Debug.LogError($"ChampionBaseUI component not found on prefab for {champion}"); + } + } + } + + private Transform GetParentForCost(int cost) + { + return cost switch + { + 1 => _cost1Parent, + 2 => _cost2Parent, + 3 => _cost3Parent, + 4 => _cost4Parent, + 5 => _cost5Parent, + _ => null, + }; + } + + public HashSet GetSelectedChampions() + { + var selectedChampions = new HashSet(); + + foreach (var kvp in _championUIs) + { + if (kvp.Value.IsSelected) + { + selectedChampions.Add(kvp.Key); + } + } + + return selectedChampions; + } + + public void Reset() + { + ResetToDefault(); + } + + public void SetTo(bool on) + { + if (on) + SelectAll(); + else + SelectNone(); + } + + public void SetTo(Set.Data.ChampionsEnum championValue) + { + foreach (var kvp in _championUIs) + { + var champion = kvp.Key; + var championUI = kvp.Value; + + bool shouldBeSelected = (championValue & champion) == champion; + championUI.SetSelected(shouldBeSelected); + } + } + + public void ResetToDefault() + { + foreach (var championUI in _championUIs.Values) + { + championUI.ResetToDefault(); + } + } + + public void SelectAll() + { + foreach (var championUI in _championUIs.Values) + { + championUI.SetSelected(true); + } + } + + public void SelectNone() + { + foreach (var championUI in _championUIs.Values) + { + championUI.SetSelected(false); + } + } + + public void SetInteractable(bool interactable) + { + foreach (var championUI in _championUIs.Values) + { + championUI.SetInteractable(interactable); + } + } } } diff --git a/Assets/UI/EmblemSelector.cs b/Assets/UI/EmblemSelector.cs index 50fc28e..7f9d26f 100644 --- a/Assets/UI/EmblemSelector.cs +++ b/Assets/UI/EmblemSelector.cs @@ -1,135 +1,96 @@ -using System.Collections; using System.Collections.Generic; +using System.Linq; +using Set.Data; using TMPro; using UnityEngine; -public class EmblemSelector : MonoBehaviour +namespace UI { - [SerializeField] private int _defaultEmblemCount = 0; - [SerializeField] - private TMP_InputField _arcanaEmblems; - - [SerializeField] - private TMP_InputField _chronoEmblems; - - [SerializeField] - private TMP_InputField _dragonEmblems; - - [SerializeField] - private TMP_InputField _druidEmblems; - - [SerializeField] - private TMP_InputField _eldrichtEmblems; - - [SerializeField] - private TMP_InputField _faerieEmblems; - - [SerializeField] - private TMP_InputField _frostEmblems; - - [SerializeField] - private TMP_InputField _honeymancyEmblems; - - [SerializeField] - private TMP_InputField _portalEmblems; - - [SerializeField] - private TMP_InputField _pyroEmblems; - - [SerializeField] - private TMP_InputField _sugarcraftEmblems; - - [SerializeField] - private TMP_InputField _witchcraftEmblems; - - [SerializeField] - private TMP_InputField _bastionEmblems; - - [SerializeField] - private TMP_InputField _blasterEmblems; - - [SerializeField] - private TMP_InputField _hunterEmblems; - - [SerializeField] - private TMP_InputField _incantatorEmblems; - - [SerializeField] - private TMP_InputField _mageEmblems; - - [SerializeField] - private TMP_InputField _multistrikerEmblems; - - [SerializeField] - private TMP_InputField _preserverEmblems; - - [SerializeField] - private TMP_InputField _scholarEmblems; - - [SerializeField] - private TMP_InputField _shapeshifterEmblems; - - [SerializeField] - private TMP_InputField _vanguardEmblems; - - [SerializeField] - private TMP_InputField _warriorEmblems; - - // Start is called before the first frame update - void Start() { } - - public Dictionary GetEmblems() + public class EmblemSelector : MonoBehaviour { - Dictionary emblems = new Dictionary(); - emblems[(int)TraitsEnum.ARCANA] = int.Parse(_arcanaEmblems.text); - emblems[(int)TraitsEnum.CHRONO] = int.Parse(_chronoEmblems.text); - emblems[(int)TraitsEnum.DRAGON] = int.Parse(_dragonEmblems.text); - emblems[(int)TraitsEnum.DRUID] = int.Parse(_druidEmblems.text); - emblems[(int)TraitsEnum.ELDRICHT] = int.Parse(_eldrichtEmblems.text); - emblems[(int)TraitsEnum.FAERIE] = int.Parse(_faerieEmblems.text); - emblems[(int)TraitsEnum.FROST] = int.Parse(_frostEmblems.text); - emblems[(int)TraitsEnum.HONEYMANCY] = int.Parse(_honeymancyEmblems.text); - emblems[(int)TraitsEnum.PORTAL] = int.Parse(_portalEmblems.text); - emblems[(int)TraitsEnum.PYRO] = int.Parse(_pyroEmblems.text); - emblems[(int)TraitsEnum.SUGARCRAFT] = int.Parse(_sugarcraftEmblems.text); - emblems[(int)TraitsEnum.WITCHCRAFT] = int.Parse(_witchcraftEmblems.text); - emblems[(int)TraitsEnum.BASTION] = int.Parse(_bastionEmblems.text); - emblems[(int)TraitsEnum.BLASTER] = int.Parse(_blasterEmblems.text); - emblems[(int)TraitsEnum.HUNTER] = int.Parse(_hunterEmblems.text); - emblems[(int)TraitsEnum.INCANTATOR] = int.Parse(_incantatorEmblems.text); - emblems[(int)TraitsEnum.MAGE] = int.Parse(_mageEmblems.text); - emblems[(int)TraitsEnum.MULTISTRIKER] = int.Parse(_multistrikerEmblems.text); - emblems[(int)TraitsEnum.PRESERVER] = int.Parse(_preserverEmblems.text); - emblems[(int)TraitsEnum.SCHOLAR] = int.Parse(_scholarEmblems.text); - emblems[(int)TraitsEnum.SHAPESHIFTER] = int.Parse(_shapeshifterEmblems.text); - emblems[(int)TraitsEnum.VANGUARD] = int.Parse(_vanguardEmblems.text); - emblems[(int)TraitsEnum.WARRIOR] = int.Parse(_warriorEmblems.text); - return emblems; - } - public void Reset() - { - _arcanaEmblems.text = _defaultEmblemCount.ToString(); - _chronoEmblems.text = _defaultEmblemCount.ToString(); - _dragonEmblems.text = _defaultEmblemCount.ToString(); - _druidEmblems.text = _defaultEmblemCount.ToString(); - _eldrichtEmblems.text = _defaultEmblemCount.ToString(); - _faerieEmblems.text = _defaultEmblemCount.ToString(); - _frostEmblems.text = _defaultEmblemCount.ToString(); - _honeymancyEmblems.text = _defaultEmblemCount.ToString(); - _portalEmblems.text = _defaultEmblemCount.ToString(); - _pyroEmblems.text = _defaultEmblemCount.ToString(); - _sugarcraftEmblems.text = _defaultEmblemCount.ToString(); - _witchcraftEmblems.text = _defaultEmblemCount.ToString(); - _bastionEmblems.text = _defaultEmblemCount.ToString(); - _blasterEmblems.text = _defaultEmblemCount.ToString(); - _hunterEmblems.text = _defaultEmblemCount.ToString(); - _incantatorEmblems.text = _defaultEmblemCount.ToString(); - _mageEmblems.text = _defaultEmblemCount.ToString(); - _multistrikerEmblems.text = _defaultEmblemCount.ToString(); - _preserverEmblems.text = _defaultEmblemCount.ToString(); - _scholarEmblems.text = _defaultEmblemCount.ToString(); - _shapeshifterEmblems.text = _defaultEmblemCount.ToString(); - _vanguardEmblems.text = _defaultEmblemCount.ToString(); - _warriorEmblems.text = _defaultEmblemCount.ToString(); + [Header("Configuration")] + [SerializeField] + private int _defaultEmblemCount = 0; + + [SerializeField] + private TraitDisplayInfo _emblemUIPrefab; + + [Header("Layout")] + [SerializeField] + private Transform _traitsParent; + + private Dictionary _emblemUIs = + new Dictionary(); + + // Trait definitions with display names + private readonly Dictionary _traitDisplayInfo = new Dictionary< + TraitsEnum, + string + > + { + { TraitsEnum.BATTLEACADEMIA, "Battle Academia" }, + { TraitsEnum.CRYSTALGAMBIT, "Crystal Gambit" }, + { TraitsEnum.LUCHADOR, "Luchador" }, + { TraitsEnum.MIGHTYMECH, "Mighty Mech" }, + { TraitsEnum.MONSTERTRAINER, "Monster Trainer" }, + { TraitsEnum.SOULFIGHTER, "Soul Fighter" }, + { TraitsEnum.STARGUARDIAN, "Star Guardian" }, + { TraitsEnum.SUPREMECELLS, "Supreme Cells" }, + { TraitsEnum.THECREW, "The Crew" }, + { TraitsEnum.WRAITH, "Wraith" }, + { TraitsEnum.MENTOR, "Mentor" }, + { TraitsEnum.PRODIGY, "Prodigy" }, + { TraitsEnum.THECHAMP, "The Champ" }, + { TraitsEnum.STANCEMASTER, "Stance Master" }, + { TraitsEnum.ROGUECAPTAIN, "Rogue Captain" }, + { TraitsEnum.BASTION, "Bastion" }, + { TraitsEnum.DUELIST, "Duelist" }, + { TraitsEnum.EDGELORD, "Edgelord" }, + { TraitsEnum.EXECUTIONER, "Executioner" }, + { TraitsEnum.HEAVYWEIGHT, "Heavyweight" }, + { TraitsEnum.JUGGERNAUT, "Juggernaut" }, + { TraitsEnum.PROTECTOR, "Protector" }, + { TraitsEnum.SNIPER, "Sniper" }, + { TraitsEnum.SORCERER, "Sorcerer" }, + { TraitsEnum.STRATEGIST, "Strategist" }, + }; + + void Start() + { + CreateEmblemUIs(); + } + + private void CreateEmblemUIs() + { + foreach (var kvp in _traitDisplayInfo) + { + var trait = kvp.Key; + var traitName = kvp.Value; + + TraitDisplayInfo emblemUI = Instantiate( + _emblemUIPrefab, + _traitsParent + ); + emblemUI.Initialize(trait, traitName, _defaultEmblemCount); + _emblemUIs.Add(trait, emblemUI); + } + } + + public Dictionary GetEmblems() + { + Dictionary emblems = new Dictionary(); + + foreach (var kvp in _emblemUIs) + { + var trait = kvp.Key; + var emblemUI = kvp.Value; + + int emblemCount = emblemUI.GetEmblemCount(); + emblems[(int)trait] = emblemCount; + + } + return emblems; + } + } } diff --git a/Assets/UI/TraitDisplayInfo.cs b/Assets/UI/TraitDisplayInfo.cs new file mode 100644 index 0000000..1070e9b --- /dev/null +++ b/Assets/UI/TraitDisplayInfo.cs @@ -0,0 +1,35 @@ +using Set.Data; +using TMPro; +using UnityEngine; + +namespace UI +{ + public class TraitDisplayInfo : MonoBehaviour + { + [SerializeField] + private TMP_Text _traitName; + + [SerializeField] + private TMP_Text _traitEmblemCount; + + public string DisplayName { get; } + + public TraitsEnum Trait { get; private set; } + + public void Initialize(TraitsEnum trait, string traitName, int traitCount) + { + _traitName.text = traitName; + _traitEmblemCount.text = traitCount.ToString(); + Trait = trait; + } + + public int GetEmblemCount() + { + int count; + int.TryParse(_traitEmblemCount.text, out count); + if(count != 0) + Debug.Log($"Trait {Trait} has count {count}"); + return count; + } + } +} diff --git a/Assets/UI/TraitDisplayInfo.cs.meta b/Assets/UI/TraitDisplayInfo.cs.meta new file mode 100644 index 0000000..e13a2a7 --- /dev/null +++ b/Assets/UI/TraitDisplayInfo.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 8dd0be74169a51b439320d3c9d6dcf22 \ No newline at end of file diff --git a/Assets/UniversalRenderPipelineGlobalSettings.asset b/Assets/UniversalRenderPipelineGlobalSettings.asset index 8a8fc98..696e1ba 100644 --- a/Assets/UniversalRenderPipelineGlobalSettings.asset +++ b/Assets/UniversalRenderPipelineGlobalSettings.asset @@ -12,34 +12,6 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: 2ec995e51a6e251468d2a3fd8a686257, type: 3} m_Name: UniversalRenderPipelineGlobalSettings m_EditorClassIdentifier: - m_Settings: - m_SettingsList: [] - m_RuntimeSettings: [] - m_AssetVersion: 5 - m_DefaultVolumeProfile: {fileID: 11400000, guid: 3d4c13846a3e9bd4c8ccfbd0657ed847, type: 2} - m_RenderingLayerNames: - - Default - m_ValidRenderingLayers: 0 - lightLayerName0: - lightLayerName1: - lightLayerName2: - lightLayerName3: - lightLayerName4: - lightLayerName5: - lightLayerName6: - lightLayerName7: - apvScenesData: - m_ObsoleteSerializedBakingSets: [] - sceneToBakingSet: - m_Keys: [] - m_Values: [] - bakingSets: [] - sceneBounds: - m_Keys: [] - m_Values: [] - hasProbeVolumes: - m_Keys: [] - m_Values: m_ShaderStrippingSetting: m_Version: 0 m_ExportShaderVariants: 1 @@ -57,6 +29,229 @@ MonoBehaviour: m_StripUnusedVariants: 1 m_StripScreenCoordOverrideVariants: 1 supportRuntimeDebugDisplay: 0 + m_EnableRenderGraph: 0 + m_Settings: + m_SettingsList: + m_List: + - rid: 4268753024003604480 + - rid: 4268753024003604481 + - rid: 4268753024003604482 + - rid: 4268753024003604483 + - rid: 4268753024003604484 + - rid: 4268753024003604485 + - rid: 4268753024003604486 + - rid: 4268753024003604487 + - rid: 4268753024003604488 + - rid: 4268753024003604489 + - rid: 4268753024003604490 + - rid: 4268753024003604491 + - rid: 4268753024003604492 + - rid: 4268753024003604493 + - rid: 4268753024003604494 + - rid: 4268753024003604495 + - rid: 4268753024003604496 + - rid: 4268753024003604497 + - rid: 4268753024003604498 + - rid: 4268753024003604499 + - rid: 4268753024003604500 + - rid: 5561780851219890245 + m_RuntimeSettings: + m_List: [] + m_AssetVersion: 8 + m_ObsoleteDefaultVolumeProfile: {fileID: 0} + m_RenderingLayerNames: + - Default + m_ValidRenderingLayers: 0 + lightLayerName0: + lightLayerName1: + lightLayerName2: + lightLayerName3: + lightLayerName4: + lightLayerName5: + lightLayerName6: + lightLayerName7: + apvScenesData: + obsoleteSceneBounds: + m_Keys: [] + m_Values: [] + obsoleteHasProbeVolumes: + m_Keys: [] + m_Values: references: version: 2 - RefIds: [] + RefIds: + - rid: 4268753024003604480 + type: {class: UniversalRenderPipelineDebugShaders, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime} + data: + m_DebugReplacementPS: {fileID: 4800000, guid: cf852408f2e174538bcd9b7fda1c5ae7, type: 3} + m_HdrDebugViewPS: {fileID: 4800000, guid: 573620ae32aec764abd4d728906d2587, type: 3} + m_ProbeVolumeSamplingDebugComputeShader: {fileID: 7200000, guid: 53626a513ea68ce47b59dc1299fe3959, type: 3} + - rid: 4268753024003604481 + type: {class: Renderer2DResources, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime} + data: + m_Version: 0 + m_LightShader: {fileID: 4800000, guid: 3f6c848ca3d7bca4bbe846546ac701a1, type: 3} + m_ProjectedShadowShader: {fileID: 4800000, guid: ce09d4a80b88c5a4eb9768fab4f1ee00, type: 3} + m_SpriteShadowShader: {fileID: 4800000, guid: 44fc62292b65ab04eabcf310e799ccf6, type: 3} + m_SpriteUnshadowShader: {fileID: 4800000, guid: de02b375720b5c445afe83cd483bedf3, type: 3} + m_GeometryShadowShader: {fileID: 4800000, guid: 19349a0f9a7ed4c48a27445bcf92e5e1, type: 3} + m_GeometryUnshadowShader: {fileID: 4800000, guid: 77774d9009bb81447b048c907d4c6273, type: 3} + m_FallOffLookup: {fileID: 2800000, guid: 5688ab254e4c0634f8d6c8e0792331ca, type: 3} + m_CopyDepthPS: {fileID: 4800000, guid: d6dae50ee9e1bfa4db75f19f99355220, type: 3} + m_DefaultLitMaterial: {fileID: 2100000, guid: a97c105638bdf8b4a8650670310a4cd3, type: 2} + m_DefaultUnlitMaterial: {fileID: 2100000, guid: 9dfc825aed78fcd4ba02077103263b40, type: 2} + m_DefaultMaskMaterial: {fileID: 2100000, guid: 15d0c3709176029428a0da2f8cecf0b5, type: 2} + - rid: 4268753024003604482 + type: {class: URPDefaultVolumeProfileSettings, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime} + data: + m_Version: 0 + m_VolumeProfile: {fileID: 11400000, guid: 3d4c13846a3e9bd4c8ccfbd0657ed847, type: 2} + - rid: 4268753024003604483 + type: {class: RenderGraphSettings, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime} + data: + m_Version: 0 + m_EnableRenderCompatibilityMode: 1 + - rid: 4268753024003604484 + type: {class: URPShaderStrippingSetting, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime} + data: + m_Version: 0 + m_StripUnusedPostProcessingVariants: 0 + m_StripUnusedVariants: 1 + m_StripScreenCoordOverrideVariants: 1 + - rid: 4268753024003604485 + type: {class: UniversalRenderPipelineRuntimeTextures, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime} + data: + m_Version: 1 + m_BlueNoise64LTex: {fileID: 2800000, guid: e3d24661c1e055f45a7560c033dbb837, type: 3} + m_BayerMatrixTex: {fileID: 2800000, guid: f9ee4ed84c1d10c49aabb9b210b0fc44, type: 3} + m_DebugFontTex: {fileID: 2800000, guid: 26a413214480ef144b2915d6ff4d0beb, type: 3} + - rid: 4268753024003604486 + type: {class: UniversalRenderPipelineEditorShaders, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime} + data: + m_AutodeskInteractive: {fileID: 4800000, guid: 0e9d5a909a1f7e84882a534d0d11e49f, type: 3} + m_AutodeskInteractiveTransparent: {fileID: 4800000, guid: 5c81372d981403744adbdda4433c9c11, type: 3} + m_AutodeskInteractiveMasked: {fileID: 4800000, guid: 80aa867ac363ac043847b06ad71604cd, type: 3} + m_TerrainDetailLit: {fileID: 4800000, guid: f6783ab646d374f94b199774402a5144, type: 3} + m_TerrainDetailGrassBillboard: {fileID: 4800000, guid: 29868e73b638e48ca99a19ea58c48d90, type: 3} + m_TerrainDetailGrass: {fileID: 4800000, guid: e507fdfead5ca47e8b9a768b51c291a1, type: 3} + m_DefaultSpeedTree7Shader: {fileID: 4800000, guid: 0f4122b9a743b744abe2fb6a0a88868b, type: 3} + m_DefaultSpeedTree8Shader: {fileID: -6465566751694194690, guid: 9920c1f1781549a46ba081a2a15a16ec, type: 3} + m_DefaultSpeedTree9Shader: {fileID: -6465566751694194690, guid: cbd3e1cc4ae141c42a30e33b4d666a61, type: 3} + - rid: 4268753024003604487 + type: {class: UniversalRenderPipelineRuntimeShaders, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime} + data: + m_Version: 0 + m_FallbackErrorShader: {fileID: 4800000, guid: e6e9a19c3678ded42a3bc431ebef7dbd, type: 3} + m_BlitHDROverlay: {fileID: 4800000, guid: a89bee29cffa951418fc1e2da94d1959, type: 3} + m_CoreBlitPS: {fileID: 4800000, guid: 93446b5c5339d4f00b85c159e1159b7c, type: 3} + m_CoreBlitColorAndDepthPS: {fileID: 4800000, guid: d104b2fc1ca6445babb8e90b0758136b, type: 3} + m_SamplingPS: {fileID: 4800000, guid: 04c410c9937594faa893a11dceb85f7e, type: 3} + m_TerrainDetailLit: {fileID: 4800000, guid: f6783ab646d374f94b199774402a5144, type: 3} + m_TerrainDetailGrassBillboard: {fileID: 4800000, guid: 29868e73b638e48ca99a19ea58c48d90, type: 3} + m_TerrainDetailGrass: {fileID: 4800000, guid: e507fdfead5ca47e8b9a768b51c291a1, type: 3} + - rid: 4268753024003604488 + type: {class: UniversalRenderPipelineEditorMaterials, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime} + data: + m_DefaultMaterial: {fileID: 2100000, guid: 31321ba15b8f8eb4c954353edc038b1d, type: 2} + m_DefaultParticleMaterial: {fileID: 2100000, guid: e823cd5b5d27c0f4b8256e7c12ee3e6d, type: 2} + m_DefaultLineMaterial: {fileID: 2100000, guid: e823cd5b5d27c0f4b8256e7c12ee3e6d, type: 2} + m_DefaultTerrainMaterial: {fileID: 2100000, guid: 594ea882c5a793440b60ff72d896021e, type: 2} + m_DefaultDecalMaterial: {fileID: 2100000, guid: 31d0dcc6f2dd4e4408d18036a2c93862, type: 2} + m_DefaultSpriteMaterial: {fileID: 2100000, guid: 9dfc825aed78fcd4ba02077103263b40, type: 2} + - rid: 4268753024003604489 + type: {class: UniversalRendererResources, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime} + data: + m_Version: 0 + m_CopyDepthPS: {fileID: 4800000, guid: d6dae50ee9e1bfa4db75f19f99355220, type: 3} + m_CameraMotionVector: {fileID: 4800000, guid: c56b7e0d4c7cb484e959caeeedae9bbf, type: 3} + m_StencilDeferredPS: {fileID: 4800000, guid: e9155b26e1bc55942a41e518703fe304, type: 3} + m_DBufferClear: {fileID: 4800000, guid: f056d8bd2a1c7e44e9729144b4c70395, type: 3} + - rid: 4268753024003604490 + type: {class: UniversalRenderPipelineRuntimeXRResources, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime} + data: + m_xrOcclusionMeshPS: {fileID: 4800000, guid: 4431b1f1f743fbf4eb310a967890cbea, type: 3} + m_xrMirrorViewPS: {fileID: 4800000, guid: d5a307c014552314b9f560906d708772, type: 3} + m_xrMotionVector: {fileID: 4800000, guid: f89aac1e4f84468418fe30e611dff395, type: 3} + - rid: 4268753024003604491 + type: {class: GPUResidentDrawerResources, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.GPUDriven.Runtime} + data: + m_Version: 0 + m_InstanceDataBufferCopyKernels: {fileID: 7200000, guid: f984aeb540ded8b4fbb8a2047ab5b2e2, type: 3} + m_InstanceDataBufferUploadKernels: {fileID: 7200000, guid: 53864816eb00f2343b60e1a2c5a262ef, type: 3} + m_TransformUpdaterKernels: {fileID: 7200000, guid: 2a567b9b2733f8d47a700c3c85bed75b, type: 3} + m_WindDataUpdaterKernels: {fileID: 7200000, guid: fde76746e4fd0ed418c224f6b4084114, type: 3} + m_OccluderDepthPyramidKernels: {fileID: 7200000, guid: 08b2b5fb307b0d249860612774a987da, type: 3} + m_InstanceOcclusionCullingKernels: {fileID: 7200000, guid: f6d223acabc2f974795a5a7864b50e6c, type: 3} + m_OcclusionCullingDebugKernels: {fileID: 7200000, guid: b23e766bcf50ca4438ef186b174557df, type: 3} + m_DebugOcclusionTestPS: {fileID: 4800000, guid: d3f0849180c2d0944bc71060693df100, type: 3} + m_DebugOccluderPS: {fileID: 4800000, guid: b3c92426a88625841ab15ca6a7917248, type: 3} + - rid: 4268753024003604492 + type: {class: RenderGraphGlobalSettings, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime} + data: + m_version: 0 + m_EnableCompilationCaching: 1 + m_EnableValidityChecks: 1 + - rid: 4268753024003604493 + type: {class: STP/RuntimeResources, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime} + data: + m_setupCS: {fileID: 7200000, guid: 33be2e9a5506b2843bdb2bdff9cad5e1, type: 3} + m_preTaaCS: {fileID: 7200000, guid: a679dba8ec4d9ce45884a270b0e22dda, type: 3} + m_taaCS: {fileID: 7200000, guid: 3923900e2b41b5e47bc25bfdcbcdc9e6, type: 3} + - rid: 4268753024003604494 + type: {class: ProbeVolumeRuntimeResources, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime} + data: + m_Version: 1 + probeVolumeBlendStatesCS: {fileID: 7200000, guid: a3f7b8c99de28a94684cb1daebeccf5d, type: 3} + probeVolumeUploadDataCS: {fileID: 7200000, guid: 0951de5992461754fa73650732c4954c, type: 3} + probeVolumeUploadDataL2CS: {fileID: 7200000, guid: 6196f34ed825db14b81fb3eb0ea8d931, type: 3} + - rid: 4268753024003604495 + type: {class: IncludeAdditionalRPAssets, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime} + data: + m_version: 0 + m_IncludeReferencedInScenes: 0 + m_IncludeAssetsByLabel: 0 + m_LabelToInclude: + - rid: 4268753024003604496 + type: {class: ProbeVolumeBakingResources, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime} + data: + m_Version: 1 + dilationShader: {fileID: 7200000, guid: 6bb382f7de370af41b775f54182e491d, type: 3} + subdivideSceneCS: {fileID: 7200000, guid: bb86f1f0af829fd45b2ebddda1245c22, type: 3} + voxelizeSceneShader: {fileID: 4800000, guid: c8b6a681c7b4e2e4785ffab093907f9e, type: 3} + traceVirtualOffsetCS: {fileID: -6772857160820960102, guid: ff2cbab5da58bf04d82c5f34037ed123, type: 3} + traceVirtualOffsetRT: {fileID: -5126288278712620388, guid: ff2cbab5da58bf04d82c5f34037ed123, type: 3} + skyOcclusionCS: {fileID: -6772857160820960102, guid: 5a2a534753fbdb44e96c3c78b5a6999d, type: 3} + skyOcclusionRT: {fileID: -5126288278712620388, guid: 5a2a534753fbdb44e96c3c78b5a6999d, type: 3} + renderingLayerCS: {fileID: -6772857160820960102, guid: 94a070d33e408384bafc1dea4a565df9, type: 3} + renderingLayerRT: {fileID: -5126288278712620388, guid: 94a070d33e408384bafc1dea4a565df9, type: 3} + - rid: 4268753024003604497 + type: {class: RenderGraphUtilsResources, ns: UnityEngine.Rendering.RenderGraphModule.Util, asm: Unity.RenderPipelines.Core.Runtime} + data: + m_Version: 0 + m_CoreCopyPS: {fileID: 4800000, guid: 12dc59547ea167a4ab435097dd0f9add, type: 3} + - rid: 4268753024003604498 + type: {class: ProbeVolumeDebugResources, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime} + data: + m_Version: 1 + probeVolumeDebugShader: {fileID: 4800000, guid: 3b21275fd12d65f49babb5286f040f2d, type: 3} + probeVolumeFragmentationDebugShader: {fileID: 4800000, guid: 3a80877c579b9144ebdcc6d923bca303, type: 3} + probeVolumeSamplingDebugShader: {fileID: 4800000, guid: bf54e6528c79a224e96346799064c393, type: 3} + probeVolumeOffsetDebugShader: {fileID: 4800000, guid: db8bd7436dc2c5f4c92655307d198381, type: 3} + probeSamplingDebugMesh: {fileID: -3555484719484374845, guid: 20be25aac4e22ee49a7db76fb3df6de2, type: 3} + numbersDisplayTex: {fileID: 2800000, guid: 73fe53b428c5b3440b7e87ee830b608a, type: 3} + - rid: 4268753024003604499 + type: {class: ProbeVolumeGlobalSettings, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime} + data: + m_Version: 1 + m_ProbeVolumeDisableStreamingAssets: 0 + - rid: 4268753024003604500 + type: {class: ShaderStrippingSetting, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime} + data: + m_Version: 0 + m_ExportShaderVariants: 1 + m_ShaderVariantLogLevel: 0 + m_StripRuntimeDebugShaders: 1 + - rid: 5561780851219890245 + type: {class: UniversalRenderPipelineEditorAssets, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime} + data: + m_DefaultSettingsVolumeProfile: {fileID: 11400000, guid: eda47df5b85f4f249abf7abd73db2cb2, type: 2} diff --git a/Assets/prefabs/Champion.prefab b/Assets/prefabs/Champion.prefab index 81fd7f2..538156a 100644 --- a/Assets/prefabs/Champion.prefab +++ b/Assets/prefabs/Champion.prefab @@ -172,6 +172,7 @@ GameObject: - component: {fileID: 3843129245069958865} - component: {fileID: 5204531747671715090} - component: {fileID: 2537447480496466027} + - component: {fileID: 3487448306523232830} m_Layer: 5 m_Name: Champion m_TagString: Untagged @@ -237,6 +238,20 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 +--- !u!114 &3487448306523232830 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3848171535236877812} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 320b859d2593db54f8f302651ac58a69, type: 3} + m_Name: + m_EditorClassIdentifier: + _championNameText: {fileID: 743061143549021463} + _championToggle: {fileID: 1670405861779857275} --- !u!1 &6606827154433812167 GameObject: m_ObjectHideFlags: 0 @@ -391,4 +406,4 @@ MonoBehaviour: m_HorizontalOverflow: 0 m_VerticalOverflow: 0 m_LineSpacing: 1 - m_Text: Toggle + m_Text: ChampionName diff --git a/Assets/prefabs/Champions.prefab b/Assets/prefabs/Champions.prefab index 226869b..3066a37 100644 --- a/Assets/prefabs/Champions.prefab +++ b/Assets/prefabs/Champions.prefab @@ -30,67 +30,7 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 6198119892991707727} - - {fileID: 4888765920563511102} - - {fileID: 166458163001866753} - - {fileID: 6144338015336187755} - - {fileID: 5134246033026045556} - - {fileID: 3644170477660861029} - - {fileID: 6344118344873482185} - - {fileID: 169096540653243338} - - {fileID: 4059626667434472213} - - {fileID: 2748050840808389113} - - {fileID: 2470876008331191734} - - {fileID: 4581731425359477926} - - {fileID: 5159191779253341102} - - {fileID: 2700907858077224075} - - {fileID: 4850164342909281405} - - {fileID: 1215015617181173359} - - {fileID: 4522531725510730214} - - {fileID: 7508263485426799864} - - {fileID: 5151289581532025111} - - {fileID: 7555185909707965136} - - {fileID: 3943217452158358863} - - {fileID: 75151862136944938} - - {fileID: 8765259575635820717} - - {fileID: 3359822401606366297} - - {fileID: 1613542473101644839} - - {fileID: 2132006546963837697} - - {fileID: 2574771580391282013} - - {fileID: 5870908613957158259} - - {fileID: 8956342530484481529} - - {fileID: 4441620173266449096} - - {fileID: 8620322980485270018} - - {fileID: 3936633047864782128} - - {fileID: 1444243177017848771} - - {fileID: 6950013834180122870} - - {fileID: 3569525601017139190} - - {fileID: 2562727015795339220} - - {fileID: 6420760089096392610} - - {fileID: 3393408341097822203} - - {fileID: 6773214040975235288} - - {fileID: 6357400115755215373} - - {fileID: 5699816849725863961} - - {fileID: 431478258558076063} - - {fileID: 1555112130184801939} - - {fileID: 6729608892057299040} - - {fileID: 2363993229959701098} - - {fileID: 3445314962750262830} - - {fileID: 1291734430866755436} - - {fileID: 8105294732104961979} - - {fileID: 6435283881620843566} - - {fileID: 5551294466763465256} - - {fileID: 4962601939051820088} - - {fileID: 5736507014635225026} - - {fileID: 8371570629468773911} - - {fileID: 7519652362040063703} - - {fileID: 3359449769248939369} - - {fileID: 7176275823744796708} - - {fileID: 2908495620618349931} - - {fileID: 5620808854790671727} - - {fileID: 3051855926802646486} - - {fileID: 2747911657532157597} + m_Children: [] m_Father: {fileID: 0} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} @@ -142,7083 +82,11 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: 409dcb72192389940a0260fe79e0172d, type: 3} m_Name: m_EditorClassIdentifier: - _ASHESelector: {fileID: 8394663371602693093} - _BLITZCRANKSelector: {fileID: 7035627965734469268} - _ELISESelector: {fileID: 2320638282689526699} - _JAXSelector: {fileID: 8592553863852836545} - _JAYCESelector: {fileID: 7294548784815069150} - _LILLIASelector: {fileID: 1218577011092616143} - _NOMSYSelector: {fileID: 8822875946884798051} - _POPPYSelector: {fileID: 2315747961158716000} - _SERAPHINESelector: {fileID: 1886234298436252351} - _SORAKASelector: {fileID: 313274254207088723} - _TWITCHSelector: {fileID: 13968519331619868} - _WARWICKSelector: {fileID: 2156771896502959372} - _ZIGGSSelector: {fileID: 7341660683858332164} - _ZOESelector: {fileID: 504541195218717985} - _AHRISelector: {fileID: 7004450017315300823} - _AKALISelector: {fileID: 3650003310023526341} - _CASSIOPEIASelector: {fileID: 2069600071096295500} - _GALIOSelector: {fileID: 5352885722698716498} - _KASSADINSelector: {fileID: 7279785659881099453} - _KOGMAWSelector: {fileID: 5378029570421097338} - _NILAHSelector: {fileID: 1496021399076345061} - _NUNUSelector: {fileID: 2553838751800408192} - _RUMBLESelector: {fileID: 6620157092664459527} - _SHYVANASelector: {fileID: 926488373725804019} - _SYNDRASelector: {fileID: 3755866559980737933} - _TRISTANASelector: {fileID: 4606505397380395691} - _ZILEANSelector: {fileID: 126274462519612663} - _BARDSelector: {fileID: 8287283774499292377} - _EZREALSelector: {fileID: 6787103842066574419} - _HECARIMSelector: {fileID: 2294653193454383970} - _HWEISelector: {fileID: 6186392261914725288} - _JINXSelector: {fileID: 1502594851506105498} - _KATARINASelector: {fileID: 3922929310230327913} - _MORDEKAISERSelector: {fileID: 4758220313983605084} - _NEEKOSelector: {fileID: 1437334887640796764} - _SHENSelector: {fileID: 138294702764338814} - _SWAINSelector: {fileID: 8890369136963194376} - _VEIGARSelector: {fileID: 967216189911250513} - _VEXSelector: {fileID: 9188674340199422322} - _WUKONGSelector: {fileID: 8809592073730452391} - _FIORASelector: {fileID: 7881899483223767475} - _GWENSelector: {fileID: 2848275906445280565} - _KALISTASelector: {fileID: 4030491688341466937} - _KARMASelector: {fileID: 9160232898655398346} - _NAMISelector: {fileID: 195176204796175296} - _NASUSSelector: {fileID: 985100143311212420} - _OLAFSelector: {fileID: 3717397646619791046} - _RAKANSelector: {fileID: 5908786986548137489} - _RYZESelector: {fileID: 8878081888193850756} - _TAHMKENCHSelector: {fileID: 8030437173798249346} - _TARICSelector: {fileID: 7396393569927837074} - _VARUSSelector: {fileID: 7919538527196380776} - _BRIARSelector: {fileID: 6221225675064696765} - _CAMILLESelector: {fileID: 5341510035690370941} - _DIANASelector: {fileID: 929106206827011267} - _MILLIOSelector: {fileID: 4750365492216678798} - _MORGANASelector: {fileID: 731550936243989697} - _NORRASelector: {fileID: 7816823125785054405} - _SMOLDERSelector: {fileID: 585940896024822908} - _XERATHSelector: {fileID: 313417987934318391} ---- !u!1001 &282766691116141470 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Nilah - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Nilah - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!114 &1496021399076345061 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 282766691116141470} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!224 &3943217452158358863 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 282766691116141470} - m_PrefabAsset: {fileID: 0} ---- !u!1001 &284909067661767649 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Jinx - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Jinx - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!114 &1502594851506105498 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 284909067661767649} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!224 &3936633047864782128 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 284909067661767649} - m_PrefabAsset: {fileID: 0} ---- !u!1001 &350164977069674791 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Neeko - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Neeko - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!114 &1437334887640796764 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 350164977069674791} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!224 &3569525601017139190 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 350164977069674791} - m_PrefabAsset: {fileID: 0} ---- !u!1001 &560478329191247028 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Lillia - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Lillia - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!114 &1218577011092616143 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 560478329191247028} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!224 &3644170477660861029 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 560478329191247028} - m_PrefabAsset: {fileID: 0} ---- !u!1001 &645782400777727001 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Hecarim - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Hecarim - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!114 &2294653193454383970 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 645782400777727001} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!224 &4441620173266449096 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 645782400777727001} - m_PrefabAsset: {fileID: 0} ---- !u!1001 &774651962720576119 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Warwick - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Warwick - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!114 &2156771896502959372 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 774651962720576119} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!224 &4581731425359477926 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 774651962720576119} - m_PrefabAsset: {fileID: 0} ---- !u!1001 &835078030619524919 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Cassiopeia - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Cassiopeia - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!114 &2069600071096295500 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 835078030619524919} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!224 &4522531725510730214 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 835078030619524919} - m_PrefabAsset: {fileID: 0} ---- !u!1001 &937656224377023940 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Seraphine - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Seraphine - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!114 &1886234298436252351 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 937656224377023940} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!224 &4059626667434472213 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 937656224377023940} - m_PrefabAsset: {fileID: 0} ---- !u!1001 &1165874631204033114 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Zoe - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Zoe - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!114 &504541195218717985 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 1165874631204033114} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!224 &2700907858077224075 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 1165874631204033114} - m_PrefabAsset: {fileID: 0} ---- !u!1001 &1402449079133775656 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Soraka - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Soraka - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!114 &313274254207088723 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 1402449079133775656} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!224 &2748050840808389113 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 1402449079133775656} - m_PrefabAsset: {fileID: 0} ---- !u!1001 &1402592798969213004 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Xerath - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Xerath - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!114 &313417987934318391 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 1402592798969213004} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!224 &2747911657532157597 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 1402592798969213004} - m_PrefabAsset: {fileID: 0} ---- !u!1001 &1556872174963424443 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Nami - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Nami - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!114 &195176204796175296 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 1556872174963424443} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!224 &2363993229959701098 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 1556872174963424443} - m_PrefabAsset: {fileID: 0} ---- !u!1001 &1640764967077048581 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Shen - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Shen - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!114 &138294702764338814 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 1640764967077048581} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!224 &2562727015795339220 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 1640764967077048581} - m_PrefabAsset: {fileID: 0} ---- !u!1001 &1652509573236460428 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Zilean - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Zilean - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!114 &126274462519612663 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 1652509573236460428} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!224 &2574771580391282013 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 1652509573236460428} - m_PrefabAsset: {fileID: 0} ---- !u!1001 &1666289035646270311 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Twitch - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Twitch - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!114 &13968519331619868 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 1666289035646270311} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!224 &2470876008331191734 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 1666289035646270311} - m_PrefabAsset: {fileID: 0} ---- !u!1001 &1892153167923439914 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Veigar - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Veigar - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!114 &967216189911250513 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 1892153167923439914} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!224 &3393408341097822203 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 1892153167923439914} - m_PrefabAsset: {fileID: 0} ---- !u!1001 &1911142642618339583 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Nasus - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Nasus - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!114 &985100143311212420 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 1911142642618339583} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!224 &3445314962750262830 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 1911142642618339583} - m_PrefabAsset: {fileID: 0} ---- !u!1001 &2002589369475957688 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Diana - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Diana - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!114 &929106206827011267 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 2002589369475957688} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!224 &3359449769248939369 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 2002589369475957688} - m_PrefabAsset: {fileID: 0} ---- !u!1001 &2014785804008352392 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Shyvana - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Shyvana - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!114 &926488373725804019 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 2014785804008352392} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!224 &3359822401606366297 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 2014785804008352392} - m_PrefabAsset: {fileID: 0} ---- !u!1001 &2092068213372433338 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Morgana - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Morgana - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!114 &731550936243989697 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 2092068213372433338} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!224 &2908495620618349931 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 2092068213372433338} - m_PrefabAsset: {fileID: 0} ---- !u!1001 &2238244364338944775 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Smolder - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Smolder - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!114 &585940896024822908 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 2238244364338944775} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!224 &3051855926802646486 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 2238244364338944775} - m_PrefabAsset: {fileID: 0} ---- !u!1001 &2360263964293574722 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Kalista - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Kalista - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!224 &1555112130184801939 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 2360263964293574722} - m_PrefabAsset: {fileID: 0} ---- !u!114 &4030491688341466937 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 2360263964293574722} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!1001 &2404766258154269970 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Katarina - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Katarina - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!224 &1444243177017848771 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 2404766258154269970} - m_PrefabAsset: {fileID: 0} ---- !u!114 &3922929310230327913 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 2404766258154269970} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!1001 &2536087321098701558 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Syndra - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Syndra - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!224 &1613542473101644839 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 2536087321098701558} - m_PrefabAsset: {fileID: 0} ---- !u!114 &3755866559980737933 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 2536087321098701558} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!1001 &2646040914228351421 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Olaf - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Olaf - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!224 &1291734430866755436 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 2646040914228351421} - m_PrefabAsset: {fileID: 0} ---- !u!114 &3717397646619791046 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 2646040914228351421} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!1001 &2704714955360147646 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Akali - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Akali - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!224 &1215015617181173359 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 2704714955360147646} - m_PrefabAsset: {fileID: 0} ---- !u!114 &3650003310023526341 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 2704714955360147646} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!1001 &2937438803714469328 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Tristana - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Tristana - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!224 &2132006546963837697 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 2937438803714469328} - m_PrefabAsset: {fileID: 0} ---- !u!114 &4606505397380395691 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 2937438803714469328} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!1001 &3506442221801429582 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Gwen - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Gwen - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!224 &431478258558076063 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 3506442221801429582} - m_PrefabAsset: {fileID: 0} ---- !u!114 &2848275906445280565 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 3506442221801429582} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!1001 &3773866506013566971 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Nunu - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Nunu - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!224 &75151862136944938 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 3773866506013566971} - m_PrefabAsset: {fileID: 0} ---- !u!114 &2553838751800408192 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 3773866506013566971} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!1001 &3966907968517903643 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Poppy - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Poppy - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!224 &169096540653243338 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 3966907968517903643} - m_PrefabAsset: {fileID: 0} ---- !u!114 &2315747961158716000 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 3966907968517903643} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!1001 &3970742753117070544 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Elise - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Elise - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!224 &166458163001866753 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 3970742753117070544} - m_PrefabAsset: {fileID: 0} ---- !u!114 &2320638282689526699 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 3970742753117070544} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!1001 &4717593786448543942 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Briar - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Briar - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!114 &6221225675064696765 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 4717593786448543942} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!224 &8371570629468773911 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 4717593786448543942} - m_PrefabAsset: {fileID: 0} ---- !u!1001 &4824485205915555027 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Hwei - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Hwei - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!114 &6186392261914725288 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 4824485205915555027} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!224 &8620322980485270018 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 4824485205915555027} - m_PrefabAsset: {fileID: 0} ---- !u!1001 &4984995722739405162 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Rakan - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Rakan - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!114 &5908786986548137489 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 4984995722739405162} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!224 &8105294732104961979 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 4984995722739405162} - m_PrefabAsset: {fileID: 0} ---- !u!1001 &5268890214269416232 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Ezreal - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Ezreal - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!114 &6787103842066574419 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 5268890214269416232} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!224 &8956342530484481529 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 5268890214269416232} - m_PrefabAsset: {fileID: 0} ---- !u!1001 &5544490290461679228 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Rumble - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Rumble - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!114 &6620157092664459527 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 5544490290461679228} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!224 &8765259575635820717 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 5544490290461679228} - m_PrefabAsset: {fileID: 0} ---- !u!1001 &6135839403493557799 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Mordekaiser - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Mordekaiser - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!114 &4758220313983605084 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 6135839403493557799} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!224 &6950013834180122870 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 6135839403493557799} - m_PrefabAsset: {fileID: 0} ---- !u!1001 &6251780753513191157 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Millio - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Millio - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!114 &4750365492216678798 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 6251780753513191157} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!224 &7176275823744796708 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 6251780753513191157} - m_PrefabAsset: {fileID: 0} ---- !u!1001 &6705475378063632390 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Camille - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Camille - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!114 &5341510035690370941 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 6705475378063632390} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!224 &7519652362040063703 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 6705475378063632390} - m_PrefabAsset: {fileID: 0} ---- !u!1001 &6730414636214635049 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Galio - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Galio - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!114 &5352885722698716498 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 6730414636214635049} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!224 &7508263485426799864 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 6730414636214635049} - m_PrefabAsset: {fileID: 0} ---- !u!1001 &6741009176994077697 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Kogmaw - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Kogmaw - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!114 &5378029570421097338 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 6741009176994077697} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!224 &7555185909707965136 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 6741009176994077697} - m_PrefabAsset: {fileID: 0} ---- !u!1001 &6922203537812593082 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Jax - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Jax - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!224 &6144338015336187755 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 6922203537812593082} - m_PrefabAsset: {fileID: 0} ---- !u!114 &8592553863852836545 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 6922203537812593082} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!1001 &7156691068468253854 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Ashe - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Ashe - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!224 &6198119892991707727 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 7156691068468253854} - m_PrefabAsset: {fileID: 0} ---- !u!114 &8394663371602693093 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 7156691068468253854} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!1001 &7218181586003286946 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Bard - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Bard - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!224 &5870908613957158259 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 7218181586003286946} - m_PrefabAsset: {fileID: 0} ---- !u!114 &8287283774499292377 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 7218181586003286946} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!1001 &7508017410061760177 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Karma - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Karma - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!224 &6729608892057299040 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 7508017410061760177} - m_PrefabAsset: {fileID: 0} ---- !u!114 &9160232898655398346 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 7508017410061760177} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!1001 &7542055922928649737 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Vex - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Vex - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!224 &6773214040975235288 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 7542055922928649737} - m_PrefabAsset: {fileID: 0} ---- !u!114 &9188674340199422322 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 7542055922928649737} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!1001 &7789874095017030399 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Ryze - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Ryze - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!224 &6435283881620843566 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 7789874095017030399} - m_PrefabAsset: {fileID: 0} ---- !u!114 &8878081888193850756 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 7789874095017030399} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!1001 &7804341125524214131 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Swain - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Swain - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!224 &6420760089096392610 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 7804341125524214131} - m_PrefabAsset: {fileID: 0} ---- !u!114 &8890369136963194376 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 7804341125524214131} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!1001 &7881123058305878296 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Nomsy - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Nomsy - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!224 &6344118344873482185 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 7881123058305878296} - m_PrefabAsset: {fileID: 0} ---- !u!114 &8822875946884798051 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 7881123058305878296} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!1001 &7885675503713170652 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Wukong - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Wukong - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!224 &6357400115755215373 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 7885675503713170652} - m_PrefabAsset: {fileID: 0} ---- !u!114 &8809592073730452391 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 7885675503713170652} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!1001 &8181700787015412457 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Taric - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Taric - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!224 &4962601939051820088 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 8181700787015412457} - m_PrefabAsset: {fileID: 0} ---- !u!114 &7396393569927837074 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 8181700787015412457} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!1001 &8220485762814478501 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Jayce - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Jayce - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!224 &5134246033026045556 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 8220485762814478501} - m_PrefabAsset: {fileID: 0} ---- !u!114 &7294548784815069150 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 8220485762814478501} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!1001 &8225973407606132678 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Kassadin - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Kassadin - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!224 &5151289581532025111 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 8225973407606132678} - m_PrefabAsset: {fileID: 0} ---- !u!114 &7279785659881099453 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 8225973407606132678} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!1001 &8272171580298990975 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Ziggs - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Ziggs - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!224 &5159191779253341102 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 8272171580298990975} - m_PrefabAsset: {fileID: 0} ---- !u!114 &7341660683858332164 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 8272171580298990975} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!1001 &8510316112017160876 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Ahri - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Ahri - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!224 &4850164342909281405 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 8510316112017160876} - m_PrefabAsset: {fileID: 0} ---- !u!114 &7004450017315300823 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 8510316112017160876} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!1001 &8542742574546706927 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Blitzcrank - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Blitzcrank - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!224 &4888765920563511102 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 8542742574546706927} - m_PrefabAsset: {fileID: 0} ---- !u!114 &7035627965734469268 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 8542742574546706927} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!1001 &8673828738104327417 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Tahmkench - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Tamhkench - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!224 &5551294466763465256 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 8673828738104327417} - m_PrefabAsset: {fileID: 0} ---- !u!114 &8030437173798249346 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 8673828738104327417} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!1001 &8812515972444153544 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Fiora - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Fiora - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!224 &5699816849725863961 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 8812515972444153544} - m_PrefabAsset: {fileID: 0} ---- !u!114 &7881899483223767475 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 8812515972444153544} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!1001 &8847782246230335763 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: varus - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Varus - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!224 &5736507014635225026 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 8847782246230335763} - m_PrefabAsset: {fileID: 0} ---- !u!114 &7919538527196380776 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 8847782246230335763} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!1001 &8886893373603206078 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 3940269602259411472} - m_Modifications: - - target: {fileID: 743061143549021463, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Text - value: Norra - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - propertyPath: m_Name - value: Norra - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} ---- !u!224 &5620808854790671727 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 3843129245069958865, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 8886893373603206078} - m_PrefabAsset: {fileID: 0} ---- !u!114 &7816823125785054405 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 1670405861779857275, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} - m_PrefabInstance: {fileID: 8886893373603206078} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: + _defaultSelection: 0 + _championUIPrefab: {fileID: 3848171535236877812, guid: 57682a447dbb4004aa9cff44c78b80f5, type: 3} + _cost1Parent: {fileID: 3940269602259411472} + _cost2Parent: {fileID: 3940269602259411472} + _cost3Parent: {fileID: 3940269602259411472} + _cost4Parent: {fileID: 3940269602259411472} + _cost5Parent: {fileID: 3940269602259411472} + _championIcons: [] diff --git a/Assets/prefabs/Emblems.prefab b/Assets/prefabs/Emblems.prefab index b9aee54..ddb3b6d 100644 --- a/Assets/prefabs/Emblems.prefab +++ b/Assets/prefabs/Emblems.prefab @@ -30,30 +30,7 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 2972278291085766129} - - {fileID: 5168036749323802800} - - {fileID: 6162654556941305236} - - {fileID: 6696166214493544543} - - {fileID: 2006563083109100719} - - {fileID: 6362074521230625220} - - {fileID: 6502612269960250831} - - {fileID: 8545569956740839741} - - {fileID: 1968396480284770408} - - {fileID: 8476211361591568336} - - {fileID: 5112399286440729213} - - {fileID: 5168748084000111524} - - {fileID: 6703145520073070241} - - {fileID: 3061435132198985507} - - {fileID: 9144389421896618050} - - {fileID: 7366465803735853350} - - {fileID: 646504669308654164} - - {fileID: 3641990153492020554} - - {fileID: 16425598733411333} - - {fileID: 1505756809452524790} - - {fileID: 7561043388121974505} - - {fileID: 4972776997145690109} - - {fileID: 6276728433571276499} + m_Children: [] m_Father: {fileID: 0} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} @@ -107,2713 +84,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: 9a10ee7ba442d7847a03282c2a055a4e, type: 3} m_Name: m_EditorClassIdentifier: - _arcanaEmblems: {fileID: 9021553863985713175} - _chronoEmblems: {fileID: 1420276697088025942} - _dragonEmblems: {fileID: 111320605898553458} - _druidEmblems: {fileID: 639748207587515833} - _eldrichtEmblems: {fileID: 5752757353477771593} - _faerieEmblems: {fileID: 884949881614873634} - _frostEmblems: {fileID: 1022514217741039657} - _honeymancyEmblems: {fileID: 2493497423832794331} - _portalEmblems: {fileID: 5718584166152322446} - _pyroEmblems: {fileID: 2426549012126882358} - _sugarcraftEmblems: {fileID: 1369019774195787675} - _witchcraftEmblems: {fileID: 1420407205921867330} - _bastionEmblems: {fileID: 651618413883075399} - _blasterEmblems: {fileID: 9111132941185016517} - _hunterEmblems: {fileID: 3092351789854535076} - _incantatorEmblems: {fileID: 3618547423700489408} - _mageEmblems: {fileID: 6698401553090899890} - _multistrikerEmblems: {fileID: 7388061269971091628} - _preserverEmblems: {fileID: 6068322140792560099} - _scholarEmblems: {fileID: 4677232289181427984} - _shapeshifterEmblems: {fileID: 4387456897880292111} - _vanguardEmblems: {fileID: 1229344708341547547} - _warriorEmblems: {fileID: 222421763902036789} ---- !u!1001 &345043926006280203 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 4343812720443847139} - m_Modifications: - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Pivot.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 4029719132024568495, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_text - value: Preserver - objectReference: {fileID: 0} - - target: {fileID: 4176873586016507301, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Name - value: Preserver - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} ---- !u!224 &16425598733411333 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - m_PrefabInstance: {fileID: 345043926006280203} - m_PrefabAsset: {fileID: 0} ---- !u!114 &6068322140792560099 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 5836336683357219304, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - m_PrefabInstance: {fileID: 345043926006280203} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 2da0c512f12947e489f739169773d7ca, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!1001 &867881858048640602 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 4343812720443847139} - m_Modifications: - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Pivot.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 4029719132024568495, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_text - value: Mage - objectReference: {fileID: 0} - - target: {fileID: 4176873586016507301, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Name - value: Mage - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} ---- !u!224 &646504669308654164 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - m_PrefabInstance: {fileID: 867881858048640602} - m_PrefabAsset: {fileID: 0} ---- !u!114 &6698401553090899890 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 5836336683357219304, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - m_PrefabInstance: {fileID: 867881858048640602} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 2da0c512f12947e489f739169773d7ca, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!1001 &1159123536060858616 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 4343812720443847139} - m_Modifications: - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Pivot.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 4029719132024568495, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_text - value: Scholar - objectReference: {fileID: 0} - - target: {fileID: 4176873586016507301, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Name - value: Scholar - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} ---- !u!224 &1505756809452524790 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - m_PrefabInstance: {fileID: 1159123536060858616} - m_PrefabAsset: {fileID: 0} ---- !u!114 &4677232289181427984 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 5836336683357219304, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - m_PrefabInstance: {fileID: 1159123536060858616} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 2da0c512f12947e489f739169773d7ca, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!1001 &2245945051506653345 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 4343812720443847139} - m_Modifications: - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Pivot.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 4029719132024568495, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_text - value: Eldrich - objectReference: {fileID: 0} - - target: {fileID: 4176873586016507301, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Name - value: Eldricht - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} ---- !u!224 &2006563083109100719 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - m_PrefabInstance: {fileID: 2245945051506653345} - m_PrefabAsset: {fileID: 0} ---- !u!114 &5752757353477771593 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 5836336683357219304, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - m_PrefabInstance: {fileID: 2245945051506653345} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 2da0c512f12947e489f739169773d7ca, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!1001 &2279572698415240294 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 4343812720443847139} - m_Modifications: - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Pivot.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 4029719132024568495, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_text - value: Portal - objectReference: {fileID: 0} - - target: {fileID: 4176873586016507301, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Name - value: Portal - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} ---- !u!224 &1968396480284770408 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - m_PrefabInstance: {fileID: 2279572698415240294} - m_PrefabAsset: {fileID: 0} ---- !u!114 &5718584166152322446 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 5836336683357219304, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - m_PrefabInstance: {fileID: 2279572698415240294} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 2da0c512f12947e489f739169773d7ca, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!1001 &3300059057598855679 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 4343812720443847139} - m_Modifications: - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Pivot.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 4176873586016507301, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Name - value: Arcana - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} ---- !u!224 &2972278291085766129 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - m_PrefabInstance: {fileID: 3300059057598855679} - m_PrefabAsset: {fileID: 0} ---- !u!114 &9021553863985713175 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 5836336683357219304, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - m_PrefabInstance: {fileID: 3300059057598855679} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 2da0c512f12947e489f739169773d7ca, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!1001 &3355157986483358509 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 4343812720443847139} - m_Modifications: - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Pivot.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 4029719132024568495, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_text - value: Blaster - objectReference: {fileID: 0} - - target: {fileID: 4176873586016507301, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Name - value: Blaster - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} ---- !u!224 &3061435132198985507 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - m_PrefabInstance: {fileID: 3355157986483358509} - m_PrefabAsset: {fileID: 0} ---- !u!114 &9111132941185016517 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 5836336683357219304, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - m_PrefabInstance: {fileID: 3355157986483358509} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 2da0c512f12947e489f739169773d7ca, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!1001 &3925309142870550852 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 4343812720443847139} - m_Modifications: - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Pivot.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 4029719132024568495, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_text - value: Multistriker - objectReference: {fileID: 0} - - target: {fileID: 4176873586016507301, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Name - value: Multistriker - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} ---- !u!224 &3641990153492020554 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - m_PrefabInstance: {fileID: 3925309142870550852} - m_PrefabAsset: {fileID: 0} ---- !u!114 &7388061269971091628 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 5836336683357219304, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - m_PrefabInstance: {fileID: 3925309142870550852} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 2da0c512f12947e489f739169773d7ca, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!1001 &4751674967637289971 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 4343812720443847139} - m_Modifications: - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Pivot.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 4029719132024568495, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_text - value: Vanguard - objectReference: {fileID: 0} - - target: {fileID: 4176873586016507301, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Name - value: Vanguard - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} ---- !u!114 &1229344708341547547 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 5836336683357219304, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - m_PrefabInstance: {fileID: 4751674967637289971} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 2da0c512f12947e489f739169773d7ca, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!224 &4972776997145690109 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - m_PrefabInstance: {fileID: 4751674967637289971} - m_PrefabAsset: {fileID: 0} ---- !u!1001 &4756198618258099827 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 4343812720443847139} - m_Modifications: - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Pivot.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 4029719132024568495, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_text - value: Sugarcraft - objectReference: {fileID: 0} - - target: {fileID: 4176873586016507301, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Name - value: Sugarcraft - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} ---- !u!114 &1369019774195787675 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 5836336683357219304, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - m_PrefabInstance: {fileID: 4756198618258099827} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 2da0c512f12947e489f739169773d7ca, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!224 &5112399286440729213 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - m_PrefabInstance: {fileID: 4756198618258099827} - m_PrefabAsset: {fileID: 0} ---- !u!1001 &4848293905171902378 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 4343812720443847139} - m_Modifications: - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Pivot.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 4029719132024568495, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_text - value: Witchcraft - objectReference: {fileID: 0} - - target: {fileID: 4176873586016507301, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Name - value: Witchcraft - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} ---- !u!114 &1420407205921867330 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 5836336683357219304, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - m_PrefabInstance: {fileID: 4848293905171902378} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 2da0c512f12947e489f739169773d7ca, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!224 &5168748084000111524 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - m_PrefabInstance: {fileID: 4848293905171902378} - m_PrefabAsset: {fileID: 0} ---- !u!1001 &4848973182388194494 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 4343812720443847139} - m_Modifications: - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Pivot.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 4029719132024568495, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_text - value: Chrono - objectReference: {fileID: 0} - - target: {fileID: 4176873586016507301, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Name - value: Chrono - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} ---- !u!114 &1420276697088025942 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 5836336683357219304, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - m_PrefabInstance: {fileID: 4848973182388194494} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 2da0c512f12947e489f739169773d7ca, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!224 &5168036749323802800 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - m_PrefabInstance: {fileID: 4848973182388194494} - m_PrefabAsset: {fileID: 0} ---- !u!1001 &5869783278169690522 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 4343812720443847139} - m_Modifications: - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Pivot.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 4029719132024568495, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_text - value: Dragon - objectReference: {fileID: 0} - - target: {fileID: 4176873586016507301, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Name - value: Dragon - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} ---- !u!114 &111320605898553458 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 5836336683357219304, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - m_PrefabInstance: {fileID: 5869783278169690522} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 2da0c512f12947e489f739169773d7ca, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!224 &6162654556941305236 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - m_PrefabInstance: {fileID: 5869783278169690522} - m_PrefabAsset: {fileID: 0} ---- !u!1001 &6046335528660693725 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 4343812720443847139} - m_Modifications: - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Pivot.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 4029719132024568495, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_text - value: Warrior - objectReference: {fileID: 0} - - target: {fileID: 4176873586016507301, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Name - value: Warrior - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} ---- !u!114 &222421763902036789 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 5836336683357219304, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - m_PrefabInstance: {fileID: 6046335528660693725} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 2da0c512f12947e489f739169773d7ca, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!224 &6276728433571276499 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - m_PrefabInstance: {fileID: 6046335528660693725} - m_PrefabAsset: {fileID: 0} ---- !u!1001 &6349515618691380305 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 4343812720443847139} - m_Modifications: - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Pivot.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 4029719132024568495, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_text - value: Druid - objectReference: {fileID: 0} - - target: {fileID: 4176873586016507301, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Name - value: Druid - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} ---- !u!114 &639748207587515833 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 5836336683357219304, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - m_PrefabInstance: {fileID: 6349515618691380305} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 2da0c512f12947e489f739169773d7ca, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!224 &6696166214493544543 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - m_PrefabInstance: {fileID: 6349515618691380305} - m_PrefabAsset: {fileID: 0} ---- !u!1001 &6482322758193382063 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 4343812720443847139} - m_Modifications: - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Pivot.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 4029719132024568495, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_text - value: Bastion - objectReference: {fileID: 0} - - target: {fileID: 4176873586016507301, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Name - value: Bastion - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} ---- !u!114 &651618413883075399 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 5836336683357219304, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - m_PrefabInstance: {fileID: 6482322758193382063} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 2da0c512f12947e489f739169773d7ca, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!224 &6703145520073070241 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - m_PrefabInstance: {fileID: 6482322758193382063} - m_PrefabAsset: {fileID: 0} ---- !u!1001 &6681420382143716810 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 4343812720443847139} - m_Modifications: - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Pivot.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 4029719132024568495, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_text - value: Faerie - objectReference: {fileID: 0} - - target: {fileID: 4176873586016507301, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Name - value: Faerie - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} ---- !u!114 &884949881614873634 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 5836336683357219304, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - m_PrefabInstance: {fileID: 6681420382143716810} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 2da0c512f12947e489f739169773d7ca, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!224 &6362074521230625220 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - m_PrefabInstance: {fileID: 6681420382143716810} - m_PrefabAsset: {fileID: 0} ---- !u!1001 &6831509877486719425 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 4343812720443847139} - m_Modifications: - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Pivot.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 4029719132024568495, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_text - value: Frost - objectReference: {fileID: 0} - - target: {fileID: 4176873586016507301, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Name - value: Frost - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} ---- !u!114 &1022514217741039657 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 5836336683357219304, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - m_PrefabInstance: {fileID: 6831509877486719425} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 2da0c512f12947e489f739169773d7ca, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!224 &6502612269960250831 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - m_PrefabInstance: {fileID: 6831509877486719425} - m_PrefabAsset: {fileID: 0} ---- !u!1001 &7118358122061905192 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 4343812720443847139} - m_Modifications: - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Pivot.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 4029719132024568495, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_text - value: Incantator - objectReference: {fileID: 0} - - target: {fileID: 4176873586016507301, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Name - value: Incantator - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} ---- !u!114 &3618547423700489408 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 5836336683357219304, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - m_PrefabInstance: {fileID: 7118358122061905192} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 2da0c512f12947e489f739169773d7ca, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!224 &7366465803735853350 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - m_PrefabInstance: {fileID: 7118358122061905192} - m_PrefabAsset: {fileID: 0} ---- !u!1001 &7790582522255725287 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 4343812720443847139} - m_Modifications: - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Pivot.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 4029719132024568495, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_text - value: Shapeshifter - objectReference: {fileID: 0} - - target: {fileID: 4176873586016507301, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Name - value: Shapeshifter - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} ---- !u!114 &4387456897880292111 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 5836336683357219304, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - m_PrefabInstance: {fileID: 7790582522255725287} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 2da0c512f12947e489f739169773d7ca, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!224 &7561043388121974505 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - m_PrefabInstance: {fileID: 7790582522255725287} - m_PrefabAsset: {fileID: 0} ---- !u!1001 &8165589292495893470 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 4343812720443847139} - m_Modifications: - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Pivot.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 4029719132024568495, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_text - value: Pyro - objectReference: {fileID: 0} - - target: {fileID: 4176873586016507301, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Name - value: Pyro - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} ---- !u!114 &2426549012126882358 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 5836336683357219304, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - m_PrefabInstance: {fileID: 8165589292495893470} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 2da0c512f12947e489f739169773d7ca, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!224 &8476211361591568336 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - m_PrefabInstance: {fileID: 8165589292495893470} - m_PrefabAsset: {fileID: 0} ---- !u!1001 &8242849526079122739 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 4343812720443847139} - m_Modifications: - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Pivot.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 4029719132024568495, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_text - value: Honeymancy - objectReference: {fileID: 0} - - target: {fileID: 4176873586016507301, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Name - value: Honeymancy - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} ---- !u!114 &2493497423832794331 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 5836336683357219304, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - m_PrefabInstance: {fileID: 8242849526079122739} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 2da0c512f12947e489f739169773d7ca, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!224 &8545569956740839741 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - m_PrefabInstance: {fileID: 8242849526079122739} - m_PrefabAsset: {fileID: 0} ---- !u!1001 &8796912000325387340 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 4343812720443847139} - m_Modifications: - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Pivot.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 4029719132024568495, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_text - value: Hunter - objectReference: {fileID: 0} - - target: {fileID: 4176873586016507301, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - propertyPath: m_Name - value: Hunter - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} ---- !u!114 &3092351789854535076 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 5836336683357219304, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - m_PrefabInstance: {fileID: 8796912000325387340} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 2da0c512f12947e489f739169773d7ca, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!224 &9144389421896618050 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 356784246871348238, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} - m_PrefabInstance: {fileID: 8796912000325387340} - m_PrefabAsset: {fileID: 0} + _defaultEmblemCount: 0 + _emblemUIPrefab: {fileID: 6320555872190488032, guid: c3fd93fcae6443f46896cf7f4a4933f5, type: 3} + _traitsParent: {fileID: 4343812720443847139} + _traitIcons: [] diff --git a/Assets/prefabs/emblemsBase.prefab b/Assets/prefabs/emblemsBase.prefab index 69d72aa..0d6ff0b 100644 --- a/Assets/prefabs/emblemsBase.prefab +++ b/Assets/prefabs/emblemsBase.prefab @@ -534,6 +534,7 @@ GameObject: - component: {fileID: 356784246871348238} - component: {fileID: 6353681290361355557} - component: {fileID: 8108922171072356219} + - component: {fileID: 6320555872190488032} m_Layer: 5 m_Name: emblemsBase m_TagString: Untagged @@ -600,6 +601,20 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 +--- !u!114 &6320555872190488032 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4176873586016507301} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 8dd0be74169a51b439320d3c9d6dcf22, type: 3} + m_Name: + m_EditorClassIdentifier: + _traitName: {fileID: 4029719132024568495} + _traitEmblemCount: {fileID: 6579458243723793249} --- !u!1 &6898134698727560530 GameObject: m_ObjectHideFlags: 0 diff --git a/Packages/manifest.json b/Packages/manifest.json index e3e1b14..8da257f 100644 --- a/Packages/manifest.json +++ b/Packages/manifest.json @@ -1,14 +1,16 @@ { "dependencies": { - "com.unity.collab-proxy": "2.5.1", - "com.unity.feature.2d": "2.0.0", - "com.unity.ide.rider": "3.0.26", + "com.unity.collab-proxy": "2.7.1", + "com.unity.feature.2d": "2.0.1", + "com.unity.ide.rider": "3.0.31", "com.unity.ide.visualstudio": "2.0.22", - "com.unity.render-pipelines.universal": "16.0.4", - "com.unity.test-framework": "1.3.9", - "com.unity.timeline": "1.8.6", + "com.unity.multiplayer.center": "1.0.0", + "com.unity.render-pipelines.universal": "17.0.4", + "com.unity.test-framework": "1.4.6", + "com.unity.timeline": "1.8.7", + "com.unity.toolchain.win-x86_64-linux-x86_64": "2.0.10", "com.unity.ugui": "2.0.0", - "com.unity.visualscripting": "1.8.0", + "com.unity.visualscripting": "1.9.5", "com.unity.modules.accessibility": "1.0.0", "com.unity.modules.ai": "1.0.0", "com.unity.modules.androidjni": "1.0.0", diff --git a/Packages/packages-lock.json b/Packages/packages-lock.json index be7ef42..31ce555 100644 --- a/Packages/packages-lock.json +++ b/Packages/packages-lock.json @@ -1,11 +1,11 @@ { "dependencies": { "com.unity.2d.animation": { - "version": "10.0.3", + "version": "10.1.4", "depth": 1, "source": "registry", "dependencies": { - "com.unity.2d.common": "9.0.2", + "com.unity.2d.common": "9.0.7", "com.unity.2d.sprite": "1.0.0", "com.unity.collections": "1.2.4", "com.unity.modules.animation": "1.0.0", @@ -14,7 +14,7 @@ "url": "https://packages.unity.com" }, "com.unity.2d.aseprite": { - "version": "1.0.1", + "version": "1.1.8", "depth": 1, "source": "registry", "dependencies": { @@ -26,7 +26,7 @@ "url": "https://packages.unity.com" }, "com.unity.2d.common": { - "version": "9.0.2", + "version": "9.0.7", "depth": 2, "source": "registry", "dependencies": { @@ -46,11 +46,11 @@ "url": "https://packages.unity.com" }, "com.unity.2d.psdimporter": { - "version": "9.0.1", + "version": "9.0.3", "depth": 1, "source": "registry", "dependencies": { - "com.unity.2d.common": "9.0.2", + "com.unity.2d.common": "9.0.4", "com.unity.2d.sprite": "1.0.0" }, "url": "https://packages.unity.com" @@ -62,11 +62,11 @@ "dependencies": {} }, "com.unity.2d.spriteshape": { - "version": "10.0.2", + "version": "10.0.7", "depth": 1, "source": "registry", "dependencies": { - "com.unity.2d.common": "9.0.2", + "com.unity.2d.common": "9.0.7", "com.unity.mathematics": "1.1.0", "com.unity.modules.physics2d": "1.0.0" }, @@ -82,11 +82,10 @@ } }, "com.unity.2d.tilemap.extras": { - "version": "4.0.2", + "version": "4.1.0", "depth": 1, "source": "registry", "dependencies": { - "com.unity.ugui": "1.0.0", "com.unity.2d.tilemap": "1.0.0", "com.unity.modules.tilemap": "1.0.0", "com.unity.modules.jsonserialize": "1.0.0" @@ -94,29 +93,31 @@ "url": "https://packages.unity.com" }, "com.unity.burst": { - "version": "1.8.11", - "depth": 1, + "version": "1.8.19", + "depth": 2, "source": "registry", "dependencies": { - "com.unity.mathematics": "1.2.1" + "com.unity.mathematics": "1.2.1", + "com.unity.modules.jsonserialize": "1.0.0" }, "url": "https://packages.unity.com" }, "com.unity.collab-proxy": { - "version": "2.5.1", + "version": "2.7.1", "depth": 0, "source": "registry", "dependencies": {}, "url": "https://packages.unity.com" }, "com.unity.collections": { - "version": "1.4.0", - "depth": 3, + "version": "2.5.1", + "depth": 2, "source": "registry", "dependencies": { - "com.unity.burst": "1.6.6", - "com.unity.test-framework": "1.1.31", - "com.unity.nuget.mono-cecil": "1.11.4" + "com.unity.burst": "1.8.17", + "com.unity.test-framework": "1.4.5", + "com.unity.nuget.mono-cecil": "1.11.4", + "com.unity.test-framework.performance": "3.0.3" }, "url": "https://packages.unity.com" }, @@ -128,22 +129,22 @@ "url": "https://packages.unity.com" }, "com.unity.feature.2d": { - "version": "2.0.0", + "version": "2.0.1", "depth": 0, "source": "builtin", "dependencies": { - "com.unity.2d.animation": "10.0.3", + "com.unity.2d.animation": "10.1.4", "com.unity.2d.pixel-perfect": "5.0.3", - "com.unity.2d.psdimporter": "9.0.1", + "com.unity.2d.psdimporter": "9.0.3", "com.unity.2d.sprite": "1.0.0", - "com.unity.2d.spriteshape": "10.0.2", + "com.unity.2d.spriteshape": "10.0.7", "com.unity.2d.tilemap": "1.0.0", - "com.unity.2d.tilemap.extras": "4.0.2", - "com.unity.2d.aseprite": "1.0.1" + "com.unity.2d.tilemap.extras": "4.1.0", + "com.unity.2d.aseprite": "1.1.8" } }, "com.unity.ide.rider": { - "version": "3.0.26", + "version": "3.0.31", "depth": 0, "source": "registry", "dependencies": { @@ -161,71 +162,104 @@ "url": "https://packages.unity.com" }, "com.unity.mathematics": { - "version": "1.2.6", - "depth": 1, + "version": "1.3.2", + "depth": 2, "source": "registry", "dependencies": {}, "url": "https://packages.unity.com" }, + "com.unity.multiplayer.center": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.uielements": "1.0.0" + } + }, "com.unity.nuget.mono-cecil": { "version": "1.11.4", - "depth": 4, + "depth": 3, "source": "registry", "dependencies": {}, "url": "https://packages.unity.com" }, "com.unity.render-pipelines.core": { - "version": "16.0.4", + "version": "17.0.4", "depth": 1, "source": "builtin", "dependencies": { - "com.unity.mathematics": "1.2.4", + "com.unity.burst": "1.8.14", + "com.unity.mathematics": "1.3.2", "com.unity.ugui": "2.0.0", + "com.unity.collections": "2.4.3", "com.unity.modules.physics": "1.0.0", "com.unity.modules.terrain": "1.0.0", "com.unity.modules.jsonserialize": "1.0.0", - "com.unity.rendering.light-transport": "1.0.0" + "com.unity.rendering.light-transport": "1.0.1" } }, "com.unity.render-pipelines.universal": { - "version": "16.0.4", + "version": "17.0.4", "depth": 0, "source": "builtin", "dependencies": { - "com.unity.mathematics": "1.2.1", - "com.unity.burst": "1.8.9", - "com.unity.render-pipelines.core": "16.0.4", - "com.unity.shadergraph": "16.0.4" + "com.unity.render-pipelines.core": "17.0.4", + "com.unity.shadergraph": "17.0.4", + "com.unity.render-pipelines.universal-config": "17.0.3" + } + }, + "com.unity.render-pipelines.universal-config": { + "version": "17.0.3", + "depth": 1, + "source": "builtin", + "dependencies": { + "com.unity.render-pipelines.core": "17.0.3" } }, "com.unity.rendering.light-transport": { - "version": "1.0.0", + "version": "1.0.1", "depth": 2, "source": "builtin", "dependencies": { - "com.unity.collections": "1.4.0", + "com.unity.collections": "2.2.0", "com.unity.mathematics": "1.2.4", - "com.unity.render-pipelines.core": "16.0.1" + "com.unity.modules.terrain": "1.0.0" } }, "com.unity.searcher": { - "version": "4.9.2", + "version": "4.9.3", "depth": 2, "source": "registry", "dependencies": {}, "url": "https://packages.unity.com" }, "com.unity.shadergraph": { - "version": "16.0.4", + "version": "17.0.4", "depth": 1, "source": "builtin", "dependencies": { - "com.unity.render-pipelines.core": "16.0.4", - "com.unity.searcher": "4.9.2" + "com.unity.render-pipelines.core": "17.0.4", + "com.unity.searcher": "4.9.3" } }, + "com.unity.sysroot": { + "version": "2.0.10", + "depth": 1, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.com" + }, + "com.unity.sysroot.linux-x86_64": { + "version": "2.0.9", + "depth": 1, + "source": "registry", + "dependencies": { + "com.unity.sysroot": "2.0.10" + }, + "url": "https://packages.unity.com" + }, "com.unity.test-framework": { - "version": "1.3.9", + "version": "1.4.6", "depth": 0, "source": "registry", "dependencies": { @@ -235,8 +269,18 @@ }, "url": "https://packages.unity.com" }, + "com.unity.test-framework.performance": { + "version": "3.0.3", + "depth": 3, + "source": "registry", + "dependencies": { + "com.unity.test-framework": "1.1.31", + "com.unity.modules.jsonserialize": "1.0.0" + }, + "url": "https://packages.unity.com" + }, "com.unity.timeline": { - "version": "1.8.6", + "version": "1.8.7", "depth": 0, "source": "registry", "dependencies": { @@ -247,6 +291,16 @@ }, "url": "https://packages.unity.com" }, + "com.unity.toolchain.win-x86_64-linux-x86_64": { + "version": "2.0.10", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.sysroot": "2.0.10", + "com.unity.sysroot.linux-x86_64": "2.0.9" + }, + "url": "https://packages.unity.com" + }, "com.unity.ugui": { "version": "2.0.0", "depth": 0, @@ -257,7 +311,7 @@ } }, "com.unity.visualscripting": { - "version": "1.8.0", + "version": "1.9.5", "depth": 0, "source": "registry", "dependencies": { diff --git a/ProjectSettings/GraphicsSettings.asset b/ProjectSettings/GraphicsSettings.asset index 0b097e5..c1d387d 100644 --- a/ProjectSettings/GraphicsSettings.asset +++ b/ProjectSettings/GraphicsSettings.asset @@ -3,7 +3,7 @@ --- !u!30 &1 GraphicsSettings: m_ObjectHideFlags: 0 - serializedVersion: 15 + serializedVersion: 16 m_Deferred: m_Mode: 1 m_Shader: {fileID: 69, guid: 0000000000000000f000000000000000, type: 0} @@ -57,10 +57,11 @@ GraphicsSettings: m_FogKeepExp: 1 m_FogKeepExp2: 1 m_AlbedoSwatchInfos: [] + m_RenderPipelineGlobalSettingsMap: + UnityEngine.Rendering.Universal.UniversalRenderPipeline: {fileID: 11400000, guid: 93b439a37f63240aca3dd4e01d978a9f, type: 2} m_LightsUseLinearIntensity: 1 m_LightsUseColorTemperature: 1 - m_DefaultRenderingLayerMask: 1 m_LogWhenShaderIsCompiled: 0 - m_SRPDefaultSettings: - UnityEngine.Rendering.Universal.UniversalRenderPipeline: {fileID: 11400000, guid: 93b439a37f63240aca3dd4e01d978a9f, type: 2} m_LightProbeOutsideHullStrategy: 0 + m_CameraRelativeLightCulling: 0 + m_CameraRelativeShadowCulling: 0 diff --git a/ProjectSettings/ProjectSettings.asset b/ProjectSettings/ProjectSettings.asset index a27dad9..be1c343 100644 --- a/ProjectSettings/ProjectSettings.asset +++ b/ProjectSettings/ProjectSettings.asset @@ -3,7 +3,7 @@ --- !u!129 &1 PlayerSettings: m_ObjectHideFlags: 0 - serializedVersion: 27 + serializedVersion: 28 productGUID: c53d578c6ad5f344d827a4464f813eb3 AndroidProfiler: 0 AndroidFilterTouchesWhenObscured: 0 @@ -49,6 +49,7 @@ PlayerSettings: m_StereoRenderingPath: 0 m_ActiveColorSpace: 1 unsupportedMSAAFallback: 0 + m_SpriteBatchMaxVertexCount: 65535 m_SpriteBatchVertexThreshold: 300 m_MTRendering: 1 mipStripping: 0 @@ -70,17 +71,18 @@ PlayerSettings: androidRenderOutsideSafeArea: 1 androidUseSwappy: 1 androidBlitType: 0 - androidResizableWindow: 0 + androidResizeableActivity: 0 androidDefaultWindowWidth: 1920 androidDefaultWindowHeight: 1080 androidMinimumWindowWidth: 400 androidMinimumWindowHeight: 300 androidFullscreenMode: 1 + androidAutoRotationBehavior: 1 + androidPredictiveBackSupport: 0 androidApplicationEntry: 2 defaultIsNativeResolution: 1 macRetinaSupport: 1 runInBackground: 0 - captureSingleScreen: 0 muteOtherAudioSources: 0 Prepare IOS For Recording: 0 Force IOS Speakers When Recording: 0 @@ -136,6 +138,8 @@ PlayerSettings: vulkanEnableLateAcquireNextImage: 0 vulkanEnableCommandBufferRecycling: 1 loadStoreDebugModeEnabled: 0 + visionOSBundleVersion: 1.0 + tvOSBundleVersion: 1.0 bundleVersion: 1.0 preloadedAssets: [] metroInputSource: 0 @@ -163,6 +167,7 @@ PlayerSettings: buildNumber: Bratwurst: 0 Standalone: 0 + VisionOS: 0 iPhone: 0 tvOS: 0 overrideDefaultApplicationIdentifier: 0 @@ -183,12 +188,14 @@ PlayerSettings: strictShaderVariantMatching: 0 VertexChannelCompressionMask: 4054 iPhoneSdkVersion: 988 + iOSSimulatorArchitecture: 0 iOSTargetOSVersionString: 13.0 tvOSSdkVersion: 0 + tvOSSimulatorArchitecture: 0 tvOSRequireExtendedGameController: 0 tvOSTargetOSVersionString: 13.0 - bratwurstSdkVersion: 0 - bratwurstTargetOSVersionString: 13.0 + VisionOSSdkVersion: 0 + VisionOSTargetOSVersionString: 1.0 uIPrerenderedIcon: 0 uIRequiresPersistentWiFi: 0 uIRequiresFullScreen: 1 @@ -213,7 +220,6 @@ PlayerSettings: rgba: 0 iOSLaunchScreenFillPct: 100 iOSLaunchScreenSize: 100 - iOSLaunchScreenCustomXibPath: iOSLaunchScreeniPadType: 0 iOSLaunchScreeniPadImage: {fileID: 0} iOSLaunchScreeniPadBackgroundColor: @@ -221,7 +227,6 @@ PlayerSettings: rgba: 0 iOSLaunchScreeniPadFillPct: 100 iOSLaunchScreeniPadSize: 100 - iOSLaunchScreeniPadCustomXibPath: iOSLaunchScreenCustomStoryboardPath: iOSLaunchScreeniPadCustomStoryboardPath: iOSDeviceRequirements: [] @@ -231,15 +236,16 @@ PlayerSettings: iOSMetalForceHardShadows: 0 metalEditorSupport: 1 metalAPIValidation: 1 + metalCompileShaderBinary: 0 iOSRenderExtraFrameOnPause: 0 iosCopyPluginsCodeInsteadOfSymlink: 0 appleDeveloperTeamID: iOSManualSigningProvisioningProfileID: tvOSManualSigningProvisioningProfileID: - bratwurstManualSigningProvisioningProfileID: + VisionOSManualSigningProvisioningProfileID: iOSManualSigningProvisioningProfileType: 0 tvOSManualSigningProvisioningProfileType: 0 - bratwurstManualSigningProvisioningProfileType: 0 + VisionOSManualSigningProvisioningProfileType: 0 appleEnableAutomaticSigning: 0 iOSRequireARKit: 0 iOSAutomaticallyDetectAndAddCapabilities: 1 @@ -257,7 +263,6 @@ PlayerSettings: useCustomGradleSettingsTemplate: 0 useCustomProguardFile: 0 AndroidTargetArchitectures: 2 - AndroidTargetDevices: 0 AndroidSplashScreenScale: 0 androidSplashScreen: {fileID: 0} AndroidKeystoreName: @@ -276,12 +281,12 @@ PlayerSettings: height: 180 banner: {fileID: 0} androidGamepadSupportLevel: 0 - chromeosInputEmulation: 1 AndroidMinifyRelease: 0 AndroidMinifyDebug: 0 AndroidValidateAppBundleSize: 1 AndroidAppBundleSizeToValidate: 150 AndroidReportGooglePlayAppDependencies: 1 + androidSymbolsSizeThreshold: 800 m_BuildTargetIcons: [] m_BuildTargetPlatformIcons: - m_BuildTarget: Android @@ -393,7 +398,6 @@ PlayerSettings: iPhone: 1 tvOS: 1 m_BuildTargetGroupLightmapEncodingQuality: [] - m_BuildTargetGroupHDRCubemapEncodingQuality: [] m_BuildTargetGroupLightmapSettings: [] m_BuildTargetGroupLoadStoreDebugModeSettings: [] m_BuildTargetNormalMapEncoding: [] @@ -401,6 +405,7 @@ PlayerSettings: playModeTestRunnerEnabled: 0 runPlayModeTestAsEditModeTest: 0 actionOnDotNetUnhandledException: 1 + editorGfxJobOverride: 1 enableInternalProfiler: 0 logObjCUncaughtExceptions: 1 enableCrashReportAPI: 0 @@ -408,7 +413,7 @@ PlayerSettings: locationUsageDescription: microphoneUsageDescription: bluetoothUsageDescription: - macOSTargetOSVersion: 10.13.0 + macOSTargetOSVersion: 11.0 switchNMETAOverride: switchNetLibKey: switchSocketMemoryPoolSize: 6144 @@ -553,6 +558,7 @@ PlayerSettings: switchEnableRamDiskSupport: 0 switchMicroSleepForYieldTime: 25 switchRamDiskSpaceSize: 12 + switchUpgradedPlayerSettingsToNMETA: 0 ps4NPAgeRating: 12 ps4NPTitleSecret: ps4NPTrophyPackPath: @@ -660,12 +666,13 @@ PlayerSettings: webGLWebAssemblyTable: 0 webGLWebAssemblyBigInt: 0 webGLCloseOnQuit: 0 + webWasm2023: 0 scriptingDefineSymbols: {} additionalCompilerArguments: {} platformArchitecture: {} scriptingBackend: Android: 1 - Standalone: 0 + Standalone: 1 il2cppCompilerConfiguration: {} il2cppCodeGeneration: {} il2cppStacktraceInformation: {} @@ -717,6 +724,7 @@ PlayerSettings: metroTileBackgroundColor: {r: 0.13333334, g: 0.17254902, b: 0.21568628, a: 0} metroSplashScreenBackgroundColor: {r: 0.12941177, g: 0.17254902, b: 0.21568628, a: 1} metroSplashScreenUseBackgroundColor: 0 + syncCapabilities: 0 platformCapabilities: {} metroTargetDeviceFamilies: {} metroFTAName: @@ -784,3 +792,5 @@ PlayerSettings: platformRequiresReadableAssets: 0 virtualTexturingSupportEnabled: 0 insecureHttpOption: 0 + androidVulkanDenyFilterList: [] + androidVulkanAllowFilterList: [] diff --git a/ProjectSettings/ProjectVersion.txt b/ProjectSettings/ProjectVersion.txt index 50e2701..a1aff48 100644 --- a/ProjectSettings/ProjectVersion.txt +++ b/ProjectSettings/ProjectVersion.txt @@ -1,2 +1,2 @@ -m_EditorVersion: 2023.2.3f1 -m_EditorVersionWithRevision: 2023.2.3f1 (21747dafc6ee) +m_EditorVersion: 6000.0.40f1 +m_EditorVersionWithRevision: 6000.0.40f1 (157d81624ddf) diff --git a/ProjectSettings/SceneTemplateSettings.json b/ProjectSettings/SceneTemplateSettings.json index 5e97f83..1edced2 100644 --- a/ProjectSettings/SceneTemplateSettings.json +++ b/ProjectSettings/SceneTemplateSettings.json @@ -61,6 +61,11 @@ "type": "UnityEngine.PhysicMaterial", "defaultInstantiationMode": 0 }, + { + "userAdded": false, + "type": "UnityEngine.PhysicsMaterial", + "defaultInstantiationMode": 0 + }, { "userAdded": false, "type": "UnityEngine.PhysicsMaterial2D", diff --git a/ProjectSettings/ShaderGraphSettings.asset b/ProjectSettings/ShaderGraphSettings.asset index 9b28428..0beb39a 100644 --- a/ProjectSettings/ShaderGraphSettings.asset +++ b/ProjectSettings/ShaderGraphSettings.asset @@ -12,5 +12,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: de02f9e1d18f588468e474319d09a723, type: 3} m_Name: m_EditorClassIdentifier: + shaderVariantLimit: 2048 customInterpolatorErrorThreshold: 32 customInterpolatorWarningThreshold: 16 + customHeatmapValues: {fileID: 0} diff --git a/UserSettings/EditorUserSettings.asset b/UserSettings/EditorUserSettings.asset index c30ebd0..63e2093 100644 --- a/UserSettings/EditorUserSettings.asset +++ b/UserSettings/EditorUserSettings.asset @@ -8,6 +8,9 @@ EditorUserSettings: RecentlyUsedSceneGuid-0: value: 5b520d0503545b0d0c0c0a2715770748154f4d2c7d7d7e627a7d4a35b4e1646a flags: 0 + RecentlyUsedSceneGuid-1: + value: 5505055f07050f080b0c5c7044705b44174e4d28287d20657f794e6bb7e1373c + flags: 0 vcSharedLogLevel: value: 0d5e400f0650 flags: 0 @@ -25,5 +28,6 @@ EditorUserSettings: m_VCHierarchyOverlayIcons: 1 m_VCOtherOverlayIcons: 1 m_VCAllowAsyncUpdate: 1 + m_VCScanLocalPackagesOnConnect: 1 m_ArtifactGarbageCollection: 1 m_CompressAssetsOnImport: 1 diff --git a/UserSettings/Layouts/default-2023.dwlt b/UserSettings/Layouts/default-2023.dwlt index d04bb87..f92851a 100644 --- a/UserSettings/Layouts/default-2023.dwlt +++ b/UserSettings/Layouts/default-2023.dwlt @@ -1,30 +1,6 @@ %YAML 1.1 %TAG !u! tag:unity3d.com,2011: --- !u!114 &1 -MonoBehaviour: - m_ObjectHideFlags: 52 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 12004, guid: 0000000000000000e000000000000000, type: 0} - m_Name: - m_EditorClassIdentifier: - m_PixelRect: - serializedVersion: 2 - x: 455 - y: -922 - width: 1361 - height: 744 - m_ShowMode: 0 - m_Title: Test Runner - m_RootView: {fileID: 4} - m_MinSize: {x: 50, y: 71} - m_MaxSize: {x: 4000, y: 4021} - m_Maximized: 0 ---- !u!114 &2 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -39,66 +15,16 @@ MonoBehaviour: m_PixelRect: serializedVersion: 2 x: 0 - y: 43 + y: -1037 width: 1920 height: 997 m_ShowMode: 4 m_Title: Console - m_RootView: {fileID: 10} + m_RootView: {fileID: 7} m_MinSize: {x: 875, y: 300} m_MaxSize: {x: 10000, y: 10000} m_Maximized: 1 ---- !u!114 &3 -MonoBehaviour: - m_ObjectHideFlags: 52 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} - m_Name: TestRunnerWindow - m_EditorClassIdentifier: - m_Children: [] - m_Position: - serializedVersion: 2 - x: 0 - y: 0 - width: 1361 - height: 744 - m_MinSize: {x: 50, y: 71} - m_MaxSize: {x: 4000, y: 4021} - m_ActualView: {fileID: 16} - m_Panes: - - {fileID: 16} - m_Selected: 0 - m_LastSelected: 0 ---- !u!114 &4 -MonoBehaviour: - m_ObjectHideFlags: 52 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0} - m_Name: - m_EditorClassIdentifier: - m_Children: - - {fileID: 3} - m_Position: - serializedVersion: 2 - x: 0 - y: 0 - width: 1361 - height: 744 - m_MinSize: {x: 50, y: 71} - m_MaxSize: {x: 4000, y: 4021} - vertical: 0 - controlID: 15 ---- !u!114 &5 +--- !u!114 &2 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -113,18 +39,18 @@ MonoBehaviour: m_Children: [] m_Position: serializedVersion: 2 - x: 1150 + x: 1302 y: 0 - width: 278 - height: 620 - m_MinSize: {x: 202, y: 221} - m_MaxSize: {x: 4002, y: 4021} - m_ActualView: {fileID: 19} + width: 316 + height: 362 + m_MinSize: {x: 200, y: 200} + m_MaxSize: {x: 4000, y: 4000} + m_ActualView: {fileID: 15} m_Panes: - - {fileID: 19} + - {fileID: 15} m_Selected: 0 m_LastSelected: 0 ---- !u!114 &6 +--- !u!114 &3 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -145,12 +71,12 @@ MonoBehaviour: height: 947 m_MinSize: {x: 231, y: 271} m_MaxSize: {x: 10001, y: 10021} - m_ActualView: {fileID: 17} + m_ActualView: {fileID: 13} m_Panes: - - {fileID: 17} + - {fileID: 13} m_Selected: 0 m_LastSelected: 0 ---- !u!114 &7 +--- !u!114 &4 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -163,9 +89,9 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Children: - - {fileID: 6} - - {fileID: 13} - - {fileID: 8} + - {fileID: 3} + - {fileID: 10} + - {fileID: 5} m_Position: serializedVersion: 2 x: 0 @@ -175,8 +101,8 @@ MonoBehaviour: m_MinSize: {x: 400, y: 100} m_MaxSize: {x: 32384, y: 16192} vertical: 0 - controlID: 88 ---- !u!114 &8 + controlID: 51 +--- !u!114 &5 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -191,18 +117,18 @@ MonoBehaviour: m_Children: [] m_Position: serializedVersion: 2 - x: 1630 + x: 1820 y: 0 - width: 290 + width: 100 height: 947 - m_MinSize: {x: 276, y: 71} - m_MaxSize: {x: 4001, y: 4021} - m_ActualView: {fileID: 18} + m_MinSize: {x: 275, y: 50} + m_MaxSize: {x: 4000, y: 4000} + m_ActualView: {fileID: 14} m_Panes: - - {fileID: 18} + - {fileID: 14} m_Selected: 0 m_LastSelected: 0 ---- !u!114 &9 +--- !u!114 &6 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -218,17 +144,17 @@ MonoBehaviour: m_Position: serializedVersion: 2 x: 0 - y: 620 - width: 1428 - height: 327 - m_MinSize: {x: 102, y: 121} - m_MaxSize: {x: 4002, y: 4021} - m_ActualView: {fileID: 22} + y: 362 + width: 1618 + height: 585 + m_MinSize: {x: 100, y: 100} + m_MaxSize: {x: 4000, y: 4000} + m_ActualView: {fileID: 18} m_Panes: - - {fileID: 22} + - {fileID: 18} m_Selected: 0 m_LastSelected: 0 ---- !u!114 &10 +--- !u!114 &7 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -241,9 +167,9 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Children: - - {fileID: 11} - - {fileID: 7} - - {fileID: 12} + - {fileID: 8} + - {fileID: 4} + - {fileID: 9} m_Position: serializedVersion: 2 x: 0 @@ -256,7 +182,7 @@ MonoBehaviour: m_TopViewHeight: 30 m_UseBottomView: 1 m_BottomViewHeight: 20 ---- !u!114 &11 +--- !u!114 &8 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -278,7 +204,7 @@ MonoBehaviour: m_MinSize: {x: 0, y: 0} m_MaxSize: {x: 0, y: 0} m_LastLoadedLayoutName: ---- !u!114 &12 +--- !u!114 &9 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -299,7 +225,7 @@ MonoBehaviour: height: 20 m_MinSize: {x: 0, y: 0} m_MaxSize: {x: 0, y: 0} ---- !u!114 &13 +--- !u!114 &10 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -312,19 +238,19 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Children: - - {fileID: 14} - - {fileID: 9} + - {fileID: 11} + - {fileID: 6} m_Position: serializedVersion: 2 x: 202 y: 0 - width: 1428 + width: 1618 height: 947 m_MinSize: {x: 200, y: 100} m_MaxSize: {x: 16192, y: 16192} vertical: 1 - controlID: 89 ---- !u!114 &14 + controlID: 52 +--- !u!114 &11 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -337,19 +263,19 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Children: - - {fileID: 15} - - {fileID: 5} + - {fileID: 12} + - {fileID: 2} m_Position: serializedVersion: 2 x: 0 y: 0 - width: 1428 - height: 620 + width: 1618 + height: 362 m_MinSize: {x: 200, y: 50} m_MaxSize: {x: 16192, y: 8096} vertical: 0 - controlID: 90 ---- !u!114 &15 + controlID: 53 +--- !u!114 &12 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -366,1443 +292,17 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 0 - width: 1150 - height: 620 + width: 1302 + height: 362 m_MinSize: {x: 202, y: 221} m_MaxSize: {x: 4002, y: 4021} - m_ActualView: {fileID: 20} + m_ActualView: {fileID: 16} m_Panes: - - {fileID: 20} - - {fileID: 21} + - {fileID: 16} + - {fileID: 17} m_Selected: 0 m_LastSelected: 1 ---- !u!114 &16 -MonoBehaviour: - m_ObjectHideFlags: 52 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 13401, guid: 0000000000000000e000000000000000, type: 0} - m_Name: - m_EditorClassIdentifier: - m_MinSize: {x: 50, y: 50} - m_MaxSize: {x: 4000, y: 4000} - m_TitleContent: - m_Text: Test Runner - m_Image: {fileID: 0} - m_Tooltip: - m_TextWithWhitespace: "Test Runner\u200B" - m_Pos: - serializedVersion: 2 - x: 0 - y: 21 - width: 1361 - height: 723 - m_SerializedDataModeController: - m_DataMode: 0 - m_PreferredDataMode: 0 - m_SupportedDataModes: - isAutomatic: 1 - m_ViewDataDictionary: {fileID: 0} - m_OverlayCanvas: - m_LastAppliedPresetName: Default - m_SaveData: [] - m_ContainerData: [] - m_OverlaysVisible: 1 - m_Spl: - ID: 154 - splitterInitialOffset: 0 - currentActiveSplitter: -1 - realSizes: - - 490 - - 163 - relativeSizes: - - 0.75 - - 0.25 - minSizes: - - 32 - - 32 - maxSizes: - - 0 - - 0 - lastTotalSize: 653 - splitSize: 6 - xOffset: 0 - m_Version: 1 - oldRealSizes: - oldMinSizes: - oldMaxSizes: - oldSplitSize: 0 - m_TestTypeToolbarIndex: 1 - m_PlayModeTestListGUI: - m_Window: {fileID: 0} - m_NewResultList: [] - m_ResultText: - m_ResultStacktrace: - m_TestListState: - scrollPos: {x: 0, y: 0} - m_SelectedIDs: - m_LastClickedID: 0 - m_ExpandedIDs: - m_RenameOverlay: - m_UserAcceptedRename: 0 - m_Name: - m_OriginalName: - m_EditFieldRect: - serializedVersion: 2 - x: 0 - y: 0 - width: 0 - height: 0 - m_UserData: 0 - m_IsWaitingForDelay: 0 - m_IsRenaming: 0 - m_OriginalEventType: 11 - m_IsRenamingFilename: 0 - m_TrimLeadingAndTrailingWhitespace: 0 - m_ClientGUIView: {fileID: 0} - m_SearchString: - m_TestRunnerUIFilter: - PassedHidden: 0 - FailedHidden: 0 - NotRunHidden: 0 - m_SearchString: - selectedCategoryMask: 0 - availableCategories: [] - m_SelectedOption: 0 - m_EditModeTestListGUI: - m_Window: {fileID: 16} - m_NewResultList: - - id: 1000 - uniqueId: '[TraitTracker][suite]' - name: TraitTracker - fullName: TraitTracker - resultStatus: 1 - duration: 1.0145975 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 1 - categories: [] - parentId: - parentUniqueId: - - id: 1023 - uniqueId: '[Assembly-CSharp-Editor.dll][suite]' - name: Assembly-CSharp-Editor.dll - fullName: D:/Data/Workspace/TraitTracker/Library/ScriptAssemblies/Assembly-CSharp-Editor.dll - resultStatus: 1 - duration: 0.9160895 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 1 - categories: [] - parentId: 1000 - parentUniqueId: '[TraitTracker][suite]' - - id: 1024 - uniqueId: 'Assembly-CSharp-Editor.dll/[Assets][suite]' - name: Assets - fullName: Assets - resultStatus: 1 - duration: 0.8187809 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 1 - categories: [] - parentId: 1023 - parentUniqueId: '[Assembly-CSharp-Editor.dll][suite]' - - id: 1025 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/[Assembly-CSharp-Editor][Assets.Data][suite]' - name: Data - fullName: Assets.Data - resultStatus: 1 - duration: 0.7194227 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 1 - categories: [] - parentId: 1024 - parentUniqueId: 'Assembly-CSharp-Editor.dll/[Assets][suite]' - - id: 1001 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/[Assembly-CSharp-Editor][Assets.Data.TestBitWise][suite]' - name: TestBitWise - fullName: Assets.Data.TestBitWise - resultStatus: 1 - duration: 0.2189707 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 1 - categories: [] - parentId: 1072 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/[Assembly-CSharp-Editor][Assets.Data][suite]' - - id: 1008 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestBitWise/[Assembly-CSharp-Editor][Assets.Data.TestBitWise.TestBitwiseCombination][suite]' - name: TestBitwiseCombination - fullName: Assets.Data.TestBitWise.TestBitwiseCombination - resultStatus: 1 - duration: 0.1182511 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 1 - categories: [] - parentId: 1001 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/[Assembly-CSharp-Editor][Assets.Data.TestBitWise][suite]' - - id: 1002 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestBitWise/TestBitwiseCombination/[Assembly-CSharp-Editor][Assets.Data.TestBitWise.TestBitwiseCombination(3,5,System.Collections.Generic.HashSet`1[System.Int64])]' - name: TestBitwiseCombination(3,5,System.Collections.Generic.HashSet`1[System.Int64]) - fullName: Assets.Data.TestBitWise.TestBitwiseCombination(3,5,System.Collections.Generic.HashSet`1[System.Int64]) - resultStatus: 1 - duration: 0.0123836 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1008 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestBitWise/[Assembly-CSharp-Editor][Assets.Data.TestBitWise.TestBitwiseCombination][suite]' - - id: 1003 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestBitWise/TestBitwiseCombination/[Assembly-CSharp-Editor][Assets.Data.TestBitWise.TestBitwiseCombination(1,1,System.Collections.Generic.HashSet`1[System.Int64])]' - name: TestBitwiseCombination(1,1,System.Collections.Generic.HashSet`1[System.Int64]) - fullName: Assets.Data.TestBitWise.TestBitwiseCombination(1,1,System.Collections.Generic.HashSet`1[System.Int64]) - resultStatus: 1 - duration: 0.000139 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1008 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestBitWise/[Assembly-CSharp-Editor][Assets.Data.TestBitWise.TestBitwiseCombination][suite]' - - id: 1004 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestBitWise/TestBitwiseCombination/[Assembly-CSharp-Editor][Assets.Data.TestBitWise.TestBitwiseCombination(0,1,System.Collections.Generic.HashSet`1[System.Int64])]' - name: TestBitwiseCombination(0,1,System.Collections.Generic.HashSet`1[System.Int64]) - fullName: Assets.Data.TestBitWise.TestBitwiseCombination(0,1,System.Collections.Generic.HashSet`1[System.Int64]) - resultStatus: 1 - duration: 0.0000914 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1008 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestBitWise/[Assembly-CSharp-Editor][Assets.Data.TestBitWise.TestBitwiseCombination][suite]' - - id: 1005 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestBitWise/TestBitwiseCombination/[Assembly-CSharp-Editor][Assets.Data.TestBitWise.TestBitwiseCombination(3,1,System.Collections.Generic.HashSet`1[System.Int64])]' - name: TestBitwiseCombination(3,1,System.Collections.Generic.HashSet`1[System.Int64]) - fullName: Assets.Data.TestBitWise.TestBitwiseCombination(3,1,System.Collections.Generic.HashSet`1[System.Int64]) - resultStatus: 1 - duration: 0.0000851 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1008 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestBitWise/[Assembly-CSharp-Editor][Assets.Data.TestBitWise.TestBitwiseCombination][suite]' - - id: 1006 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestBitWise/TestBitwiseCombination/[Assembly-CSharp-Editor][Assets.Data.TestBitWise.TestBitwiseCombination(2,3,System.Collections.Generic.HashSet`1[System.Int64])]' - name: TestBitwiseCombination(2,3,System.Collections.Generic.HashSet`1[System.Int64]) - fullName: Assets.Data.TestBitWise.TestBitwiseCombination(2,3,System.Collections.Generic.HashSet`1[System.Int64]) - resultStatus: 1 - duration: 0.0000845 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1008 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestBitWise/[Assembly-CSharp-Editor][Assets.Data.TestBitWise.TestBitwiseCombination][suite]' - - id: 1007 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestBitWise/TestBitwiseCombination/[Assembly-CSharp-Editor][Assets.Data.TestBitWise.TestBitwiseCombination(2,4,System.Collections.Generic.HashSet`1[System.Int64])]' - name: TestBitwiseCombination(2,4,System.Collections.Generic.HashSet`1[System.Int64]) - fullName: Assets.Data.TestBitWise.TestBitwiseCombination(2,4,System.Collections.Generic.HashSet`1[System.Int64]) - resultStatus: 1 - duration: 0.0000881 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1008 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestBitWise/[Assembly-CSharp-Editor][Assets.Data.TestBitWise.TestBitwiseCombination][suite]' - - id: 1001 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/[Assembly-CSharp-Editor][Assets.Data.TestChampionUtils][suite]' - name: TestChampionUtils - fullName: Assets.Data.TestChampionUtils - resultStatus: 1 - duration: 0.1292841 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 1 - categories: [] - parentId: 1025 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/[Assembly-CSharp-Editor][Assets.Data][suite]' - - id: 1017 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestChampionUtils/[Assembly-CSharp-Editor][Assets.Data.TestChampionUtils.TestGetNthChampion][suite]' - name: TestGetNthChampion - fullName: Assets.Data.TestChampionUtils.TestGetNthChampion - resultStatus: 1 - duration: 0.1012925 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 1 - categories: [] - parentId: 1001 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/[Assembly-CSharp-Editor][Assets.Data.TestChampionUtils][suite]' - - id: 1018 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestChampionUtils/TestGetNthChampion/[Assembly-CSharp-Editor][Assets.Data.TestChampionUtils.TestGetNthChampion(1L,0,1L)]' - name: TestGetNthChampion(1L,0,1L) - fullName: Assets.Data.TestChampionUtils.TestGetNthChampion(1L,0,1L) - resultStatus: 1 - duration: 0.000517 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1022 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestChampionUtils/[Assembly-CSharp-Editor][Assets.Data.TestChampionUtils.TestGetNthChampion][suite]' - - id: 1019 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestChampionUtils/TestGetNthChampion/[Assembly-CSharp-Editor][Assets.Data.TestChampionUtils.TestGetNthChampion(288230376151711744L,0,288230376151711744L)]' - name: TestGetNthChampion(288230376151711744L,0,288230376151711744L) - fullName: Assets.Data.TestChampionUtils.TestGetNthChampion(288230376151711744L,0,288230376151711744L) - resultStatus: 1 - duration: 0.0000864 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1022 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestChampionUtils/[Assembly-CSharp-Editor][Assets.Data.TestChampionUtils.TestGetNthChampion][suite]' - - id: 1020 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestChampionUtils/TestGetNthChampion/[Assembly-CSharp-Editor][Assets.Data.TestChampionUtils.TestGetNthChampion(16384L,0,16384L)]' - name: TestGetNthChampion(16384L,0,16384L) - fullName: Assets.Data.TestChampionUtils.TestGetNthChampion(16384L,0,16384L) - resultStatus: 1 - duration: 0.0000837 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1022 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestChampionUtils/[Assembly-CSharp-Editor][Assets.Data.TestChampionUtils.TestGetNthChampion][suite]' - - id: 1021 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestChampionUtils/TestGetNthChampion/[Assembly-CSharp-Editor][Assets.Data.TestChampionUtils.TestGetNthChampion(1073758848L,1,512L)]' - name: TestGetNthChampion(1073758848L,1,512L) - fullName: Assets.Data.TestChampionUtils.TestGetNthChampion(1073758848L,1,512L) - resultStatus: 1 - duration: 0.0000817 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1022 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestChampionUtils/[Assembly-CSharp-Editor][Assets.Data.TestChampionUtils.TestGetNthChampion][suite]' - - id: 1008 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestChampionUtils/[Assembly-CSharp-Editor][Assets.Data.TestChampionUtils.TestIntChampion][suite]' - name: TestIntChampion - fullName: Assets.Data.TestChampionUtils.TestIntChampion - resultStatus: 1 - duration: 0.0079147 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 1 - categories: [] - parentId: 1001 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/[Assembly-CSharp-Editor][Assets.Data.TestChampionUtils][suite]' - - id: 1010 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestChampionUtils/TestIntChampion/[Assembly-CSharp-Editor][Assets.Data.TestChampionUtils.TestIntChampion(1223456L)]' - name: TestIntChampion(1223456L) - fullName: Assets.Data.TestChampionUtils.TestIntChampion(1223456L) - resultStatus: 1 - duration: 0.0006265 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1017 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestChampionUtils/[Assembly-CSharp-Editor][Assets.Data.TestChampionUtils.TestIntChampion][suite]' - - id: 1011 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestChampionUtils/TestIntChampion/[Assembly-CSharp-Editor][Assets.Data.TestChampionUtils.TestIntChampion(3422L)]' - name: TestIntChampion(3422L) - fullName: Assets.Data.TestChampionUtils.TestIntChampion(3422L) - resultStatus: 1 - duration: 0.0001378 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1017 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestChampionUtils/[Assembly-CSharp-Editor][Assets.Data.TestChampionUtils.TestIntChampion][suite]' - - id: 1012 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestChampionUtils/TestIntChampion/[Assembly-CSharp-Editor][Assets.Data.TestChampionUtils.TestIntChampion(97352L)]' - name: TestIntChampion(97352L) - fullName: Assets.Data.TestChampionUtils.TestIntChampion(97352L) - resultStatus: 1 - duration: 0.0001338 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1017 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestChampionUtils/[Assembly-CSharp-Editor][Assets.Data.TestChampionUtils.TestIntChampion][suite]' - - id: 1013 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestChampionUtils/TestIntChampion/[Assembly-CSharp-Editor][Assets.Data.TestChampionUtils.TestIntChampion(67855324254L)]' - name: TestIntChampion(67855324254L) - fullName: Assets.Data.TestChampionUtils.TestIntChampion(67855324254L) - resultStatus: 1 - duration: 0.0001363 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1017 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestChampionUtils/[Assembly-CSharp-Editor][Assets.Data.TestChampionUtils.TestIntChampion][suite]' - - id: 1014 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestChampionUtils/TestIntChampion/[Assembly-CSharp-Editor][Assets.Data.TestChampionUtils.TestIntChampion(432742125L)]' - name: TestIntChampion(432742125L) - fullName: Assets.Data.TestChampionUtils.TestIntChampion(432742125L) - resultStatus: 1 - duration: 0.0001336 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1017 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestChampionUtils/[Assembly-CSharp-Editor][Assets.Data.TestChampionUtils.TestIntChampion][suite]' - - id: 1015 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestChampionUtils/TestIntChampion/[Assembly-CSharp-Editor][Assets.Data.TestChampionUtils.TestIntChampion(76578256785L)]' - name: TestIntChampion(76578256785L) - fullName: Assets.Data.TestChampionUtils.TestIntChampion(76578256785L) - resultStatus: 1 - duration: 0.000141 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1017 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestChampionUtils/[Assembly-CSharp-Editor][Assets.Data.TestChampionUtils.TestIntChampion][suite]' - - id: 1016 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestChampionUtils/TestIntChampion/[Assembly-CSharp-Editor][Assets.Data.TestChampionUtils.TestIntChampion(12345678912345678L)]' - name: TestIntChampion(12345678912345678L) - fullName: Assets.Data.TestChampionUtils.TestIntChampion(12345678912345678L) - resultStatus: 1 - duration: 0.000136 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1017 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestChampionUtils/[Assembly-CSharp-Editor][Assets.Data.TestChampionUtils.TestIntChampion][suite]' - - id: 1015 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/[Assembly-CSharp-Editor][Assets.Data.TestTraitsMapping][suite]' - name: TestTraitsMapping - fullName: Assets.Data.TestTraitsMapping - resultStatus: 1 - duration: 0.1229989 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 1 - categories: [] - parentId: 1061 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/[Assembly-CSharp-Editor][Assets.Data][suite]' - - id: 1017 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsMapping/[Assembly-CSharp-Editor][Assets.Data.TestTraitsMapping.TestChampCombination][suite]' - name: TestChampCombination - fullName: Assets.Data.TestTraitsMapping.TestChampCombination - resultStatus: 1 - duration: 0.1064609 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 1 - categories: [] - parentId: 1015 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/[Assembly-CSharp-Editor][Assets.Data.TestTraitsMapping][suite]' - - id: 1024 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsMapping/TestChampCombination/[Assembly-CSharp-Editor][Assets.Data.TestTraitsMapping.TestChampCombination(3L,4L,3,System.Collections.Generic.List`1[System.Int64])]' - name: TestChampCombination(3L,4L,3,System.Collections.Generic.List`1[System.Int64]) - fullName: Assets.Data.TestTraitsMapping.TestChampCombination(3L,4L,3,System.Collections.Generic.List`1[System.Int64]) - resultStatus: 1 - duration: 0.0030955 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1028 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsMapping/[Assembly-CSharp-Editor][Assets.Data.TestTraitsMapping.TestChampCombination][suite]' - - id: 1025 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsMapping/TestChampCombination/[Assembly-CSharp-Editor][Assets.Data.TestTraitsMapping.TestChampCombination(3L,268517380L,5,System.Collections.Generic.List`1[System.Int64])]' - name: TestChampCombination(3L,268517380L,5,System.Collections.Generic.List`1[System.Int64]) - fullName: Assets.Data.TestTraitsMapping.TestChampCombination(3L,268517380L,5,System.Collections.Generic.List`1[System.Int64]) - resultStatus: 1 - duration: 0.0003709 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1028 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsMapping/[Assembly-CSharp-Editor][Assets.Data.TestTraitsMapping.TestChampCombination][suite]' - - id: 1026 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsMapping/TestChampCombination/[Assembly-CSharp-Editor][Assets.Data.TestTraitsMapping.TestChampCombination(49152L,4L,3,System.Collections.Generic.List`1[System.Int64])]' - name: TestChampCombination(49152L,4L,3,System.Collections.Generic.List`1[System.Int64]) - fullName: Assets.Data.TestTraitsMapping.TestChampCombination(49152L,4L,3,System.Collections.Generic.List`1[System.Int64]) - resultStatus: 1 - duration: 0.0001742 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1028 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsMapping/[Assembly-CSharp-Editor][Assets.Data.TestTraitsMapping.TestChampCombination][suite]' - - id: 1027 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsMapping/TestChampCombination/[Assembly-CSharp-Editor][Assets.Data.TestTraitsMapping.TestChampCombination(576460752303440512L,288230384741646336L,4,System.Collections.Generic.List`1[System.Int64])]' - name: TestChampCombination(576460752303440512L,288230384741646336L,4,System.Collections.Generic.List`1[System.Int64]) - fullName: Assets.Data.TestTraitsMapping.TestChampCombination(576460752303440512L,288230384741646336L,4,System.Collections.Generic.List`1[System.Int64]) - resultStatus: 1 - duration: 0.0001739 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1028 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsMapping/[Assembly-CSharp-Editor][Assets.Data.TestTraitsMapping.TestChampCombination][suite]' - - id: 1028 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsMapping/TestChampCombination/[Assembly-CSharp-Editor][Assets.Data.TestTraitsMapping.TestChampCombination(138575872L,74310493363240960L,7,System.Collections.Generic.List`1[System.Int64])]' - name: TestChampCombination(138575872L,74310493363240960L,7,System.Collections.Generic.List`1[System.Int64]) - fullName: Assets.Data.TestTraitsMapping.TestChampCombination(138575872L,74310493363240960L,7,System.Collections.Generic.List`1[System.Int64]) - resultStatus: 1 - duration: 0.000179 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1029 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsMapping/[Assembly-CSharp-Editor][Assets.Data.TestTraitsMapping.TestChampCombination][suite]' - - id: 1029 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsMapping/TestChampCombination/[Assembly-CSharp-Editor][Assets.Data.TestTraitsMapping.TestChampCombination(74310493501816832L,576460752303423488L,7,System.Collections.Generic.List`1[System.Int64])]' - name: TestChampCombination(74310493501816832L,576460752303423488L,7,System.Collections.Generic.List`1[System.Int64]) - fullName: Assets.Data.TestTraitsMapping.TestChampCombination(74310493501816832L,576460752303423488L,7,System.Collections.Generic.List`1[System.Int64]) - resultStatus: 1 - duration: 0.0001751 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1030 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsMapping/[Assembly-CSharp-Editor][Assets.Data.TestTraitsMapping.TestChampCombination][suite]' - - id: 1032 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsMapping/[Assembly-CSharp-Editor][Assets.Data.TestTraitsMapping.TestFilteringChampCombination][suite]' - name: TestFilteringChampCombination - fullName: Assets.Data.TestTraitsMapping.TestFilteringChampCombination - resultStatus: 1 - duration: 0.011215 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 1 - categories: [] - parentId: 1023 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/[Assembly-CSharp-Editor][Assets.Data.TestTraitsMapping][suite]' - - id: 1031 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsMapping/TestFilteringChampCombination/[Assembly-CSharp-Editor][Assets.Data.TestTraitsMapping.TestFilteringChampCombination(15L,5,5L)]' - name: TestFilteringChampCombination(15L,5,5L) - fullName: Assets.Data.TestTraitsMapping.TestFilteringChampCombination(15L,5,5L) - resultStatus: 1 - duration: 0.0047628 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1032 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsMapping/[Assembly-CSharp-Editor][Assets.Data.TestTraitsMapping.TestFilteringChampCombination][suite]' - - id: 1009 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils][suite]' - name: TestTraitsUtils - fullName: Assets.Data.TestTraitsUtils - resultStatus: 1 - duration: 0.1472235 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 1 - categories: [] - parentId: 1025 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/[Assembly-CSharp-Editor][Assets.Data][suite]' - - id: 1015 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestActiveSynergyFilter][suite]' - name: TestActiveSynergyFilter - fullName: Assets.Data.TestTraitsUtils.TestActiveSynergyFilter - resultStatus: 1 - duration: 0.1009383 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 1 - categories: [] - parentId: 1009 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils][suite]' - - id: 1014 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/TestActiveSynergyFilter/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestActiveSynergyFilter(System.Collections.Generic.Dictionary`2[System.Int32,System.Int32],196)]' - name: TestActiveSynergyFilter(System.Collections.Generic.Dictionary`2[System.Int32,System.Int32],196) - fullName: Assets.Data.TestTraitsUtils.TestActiveSynergyFilter(System.Collections.Generic.Dictionary`2[System.Int32,System.Int32],196) - resultStatus: 1 - duration: 0.0013772 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1016 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestActiveSynergyFilter][suite]' - - id: 1015 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/TestActiveSynergyFilter/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestActiveSynergyFilter(System.Collections.Generic.Dictionary`2[System.Int32,System.Int32],4194945)]' - name: TestActiveSynergyFilter(System.Collections.Generic.Dictionary`2[System.Int32,System.Int32],4194945) - fullName: Assets.Data.TestTraitsUtils.TestActiveSynergyFilter(System.Collections.Generic.Dictionary`2[System.Int32,System.Int32],4194945) - resultStatus: 1 - duration: 0.0000946 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1016 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestActiveSynergyFilter][suite]' - - id: 1022 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestIntTrait][suite]' - name: TestIntTrait - fullName: Assets.Data.TestTraitsUtils.TestIntTrait - resultStatus: 1 - duration: 0.0072801 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 1 - categories: [] - parentId: 1009 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils][suite]' - - id: 1017 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/TestIntTrait/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestIntTrait(156)]' - name: TestIntTrait(156) - fullName: Assets.Data.TestTraitsUtils.TestIntTrait(156) - resultStatus: 1 - duration: 0.0005246 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1022 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestIntTrait][suite]' - - id: 1018 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/TestIntTrait/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestIntTrait(621)]' - name: TestIntTrait(621) - fullName: Assets.Data.TestTraitsUtils.TestIntTrait(621) - resultStatus: 1 - duration: 0.0001116 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1022 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestIntTrait][suite]' - - id: 1019 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/TestIntTrait/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestIntTrait(123456)]' - name: TestIntTrait(123456) - fullName: Assets.Data.TestTraitsUtils.TestIntTrait(123456) - resultStatus: 1 - duration: 0.0001101 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1022 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestIntTrait][suite]' - - id: 1020 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/TestIntTrait/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestIntTrait(5)]' - name: TestIntTrait(5) - fullName: Assets.Data.TestTraitsUtils.TestIntTrait(5) - resultStatus: 1 - duration: 0.0001026 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1022 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestIntTrait][suite]' - - id: 1021 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/TestIntTrait/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestIntTrait(4194303)]' - name: TestIntTrait(4194303) - fullName: Assets.Data.TestTraitsUtils.TestIntTrait(4194303) - resultStatus: 1 - duration: 0.0001169 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1025 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestIntTrait][suite]' - - id: 1022 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/TestIntTrait/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestIntTrait(4194302)]' - name: TestIntTrait(4194302) - fullName: Assets.Data.TestTraitsUtils.TestIntTrait(4194302) - resultStatus: 1 - duration: 0.0001077 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1025 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestIntTrait][suite]' - - id: 1016 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestMapping]' - name: TestMapping - fullName: Assets.Data.TestTraitsUtils.TestMapping - resultStatus: 1 - duration: 0.0096112 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1009 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils][suite]' - - id: 1012 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestMergeEmblems][suite]' - name: TestMergeEmblems - fullName: Assets.Data.TestTraitsUtils.TestMergeEmblems - resultStatus: 1 - duration: 0.0091352 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 1 - categories: [] - parentId: 1009 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils][suite]' - - id: 1010 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/TestMergeEmblems/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestMergeEmblems(System.Collections.Generic.Dictionary`2[System.Int32,System.Int32],System.Collections.Generic.Dictionary`2[System.Int32,System.Int32],System.Collections.Generic.Dictionary`2[System.Int32,System.Int32])]' - name: TestMergeEmblems(System.Collections.Generic.Dictionary`2[System.Int32,System.Int32],System.Collections.Generic.Dictionary`2[System.Int32,System.Int32],System.Collections.Generic.Dictionary`2[System.Int32,System.Int32]) - fullName: Assets.Data.TestTraitsUtils.TestMergeEmblems(System.Collections.Generic.Dictionary`2[System.Int32,System.Int32],System.Collections.Generic.Dictionary`2[System.Int32,System.Int32],System.Collections.Generic.Dictionary`2[System.Int32,System.Int32]) - resultStatus: 1 - duration: 0.0036827 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1012 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestMergeEmblems][suite]' - - id: 1011 - uniqueId: Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/TestMergeEmblems/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestMergeEmblems(System.Collections.Generic.Dictionary`2[System.Int32,System.Int32],System.Collections.Generic.Dictionary`2[System.Int32,System.Int32],System.Collections.Generic.Dictionary`2[System.Int32,System.Int32])]2 - name: TestMergeEmblems(System.Collections.Generic.Dictionary`2[System.Int32,System.Int32],System.Collections.Generic.Dictionary`2[System.Int32,System.Int32],System.Collections.Generic.Dictionary`2[System.Int32,System.Int32]) - fullName: Assets.Data.TestTraitsUtils.TestMergeEmblems(System.Collections.Generic.Dictionary`2[System.Int32,System.Int32],System.Collections.Generic.Dictionary`2[System.Int32,System.Int32],System.Collections.Generic.Dictionary`2[System.Int32,System.Int32] - GeneratedTestCase2) - resultStatus: 1 - duration: 0.0001002 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1012 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestMergeEmblems][suite]' - - id: 1027 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestTraitToInt][suite]' - name: TestTraitToInt - fullName: Assets.Data.TestTraitsUtils.TestTraitToInt - resultStatus: 1 - duration: 0.0131165 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 1 - categories: [] - parentId: 1010 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils][suite]' - - id: 1025 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/TestTraitToInt/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],5)]' - name: TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],5) - fullName: Assets.Data.TestTraitsUtils.TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],5) - resultStatus: 1 - duration: 0.0002321 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1050 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestTraitToInt][suite]' - - id: 1026 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/TestTraitToInt/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],4195013)]' - name: TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],4195013) - fullName: Assets.Data.TestTraitsUtils.TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],4195013) - resultStatus: 1 - duration: 0.0000905 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1027 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestTraitToInt][suite]' - - id: 1027 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/TestTraitToInt/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],1)]' - name: TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],1) - fullName: Assets.Data.TestTraitsUtils.TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],1) - resultStatus: 1 - duration: 0.0000822 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1050 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestTraitToInt][suite]' - - id: 1028 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/TestTraitToInt/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],2)]' - name: TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],2) - fullName: Assets.Data.TestTraitsUtils.TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],2) - resultStatus: 1 - duration: 0.0000851 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1050 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestTraitToInt][suite]' - - id: 1029 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/TestTraitToInt/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],4)]' - name: TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],4) - fullName: Assets.Data.TestTraitsUtils.TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],4) - resultStatus: 1 - duration: 0.0000833 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1050 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestTraitToInt][suite]' - - id: 1030 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/TestTraitToInt/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],8)]' - name: TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],8) - fullName: Assets.Data.TestTraitsUtils.TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],8) - resultStatus: 1 - duration: 0.0000811 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1050 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestTraitToInt][suite]' - - id: 1031 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/TestTraitToInt/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],16)]' - name: TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],16) - fullName: Assets.Data.TestTraitsUtils.TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],16) - resultStatus: 1 - duration: 0.0000828 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1050 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestTraitToInt][suite]' - - id: 1032 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/TestTraitToInt/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],32)]' - name: TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],32) - fullName: Assets.Data.TestTraitsUtils.TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],32) - resultStatus: 1 - duration: 0.0000877 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1050 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestTraitToInt][suite]' - - id: 1033 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/TestTraitToInt/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],64)]' - name: TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],64) - fullName: Assets.Data.TestTraitsUtils.TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],64) - resultStatus: 1 - duration: 0.0000848 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1050 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestTraitToInt][suite]' - - id: 1034 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/TestTraitToInt/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],128)]' - name: TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],128) - fullName: Assets.Data.TestTraitsUtils.TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],128) - resultStatus: 1 - duration: 0.0000828 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1050 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestTraitToInt][suite]' - - id: 1035 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/TestTraitToInt/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],256)]' - name: TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],256) - fullName: Assets.Data.TestTraitsUtils.TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],256) - resultStatus: 1 - duration: 0.0000804 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1050 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestTraitToInt][suite]' - - id: 1036 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/TestTraitToInt/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],512)]' - name: TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],512) - fullName: Assets.Data.TestTraitsUtils.TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],512) - resultStatus: 1 - duration: 0.0000914 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1050 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestTraitToInt][suite]' - - id: 1037 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/TestTraitToInt/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],1024)]' - name: TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],1024) - fullName: Assets.Data.TestTraitsUtils.TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],1024) - resultStatus: 1 - duration: 0.0000822 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1050 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestTraitToInt][suite]' - - id: 1038 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/TestTraitToInt/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],2048)]' - name: TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],2048) - fullName: Assets.Data.TestTraitsUtils.TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],2048) - resultStatus: 1 - duration: 0.0000808 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1050 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestTraitToInt][suite]' - - id: 1039 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/TestTraitToInt/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],4096)]' - name: TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],4096) - fullName: Assets.Data.TestTraitsUtils.TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],4096) - resultStatus: 1 - duration: 0.0000795 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1050 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestTraitToInt][suite]' - - id: 1040 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/TestTraitToInt/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],8192)]' - name: TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],8192) - fullName: Assets.Data.TestTraitsUtils.TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],8192) - resultStatus: 1 - duration: 0.0000819 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1050 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestTraitToInt][suite]' - - id: 1041 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/TestTraitToInt/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],16384)]' - name: TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],16384) - fullName: Assets.Data.TestTraitsUtils.TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],16384) - resultStatus: 1 - duration: 0.000082 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1050 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestTraitToInt][suite]' - - id: 1042 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/TestTraitToInt/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],32768)]' - name: TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],32768) - fullName: Assets.Data.TestTraitsUtils.TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],32768) - resultStatus: 1 - duration: 0.0000818 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1050 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestTraitToInt][suite]' - - id: 1043 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/TestTraitToInt/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],65536)]' - name: TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],65536) - fullName: Assets.Data.TestTraitsUtils.TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],65536) - resultStatus: 1 - duration: 0.0000836 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1050 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestTraitToInt][suite]' - - id: 1044 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/TestTraitToInt/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],131072)]' - name: TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],131072) - fullName: Assets.Data.TestTraitsUtils.TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],131072) - resultStatus: 1 - duration: 0.0000815 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1050 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestTraitToInt][suite]' - - id: 1045 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/TestTraitToInt/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],262144)]' - name: TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],262144) - fullName: Assets.Data.TestTraitsUtils.TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],262144) - resultStatus: 1 - duration: 0.0000838 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1050 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestTraitToInt][suite]' - - id: 1046 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/TestTraitToInt/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],524288)]' - name: TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],524288) - fullName: Assets.Data.TestTraitsUtils.TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],524288) - resultStatus: 1 - duration: 0.0000809 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1050 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestTraitToInt][suite]' - - id: 1047 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/TestTraitToInt/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],1048576)]' - name: TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],1048576) - fullName: Assets.Data.TestTraitsUtils.TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],1048576) - resultStatus: 1 - duration: 0.0000839 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1050 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestTraitToInt][suite]' - - id: 1048 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/TestTraitToInt/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],2097152)]' - name: TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],2097152) - fullName: Assets.Data.TestTraitsUtils.TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],2097152) - resultStatus: 1 - duration: 0.000083 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1050 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestTraitToInt][suite]' - - id: 1049 - uniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/TestTraitToInt/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],4194304)]' - name: TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],4194304) - fullName: Assets.Data.TestTraitsUtils.TestTraitToInt(System.Collections.Generic.HashSet`1[TraitsEnum],4194304) - resultStatus: 1 - duration: 0.0001273 - messages: - output: - stacktrace: - notRunnable: 0 - ignoredOrSkipped: 0 - description: - isSuite: 0 - categories: - - Uncategorized - parentId: 1050 - parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestTraitToInt][suite]' - m_ResultText: Assets (0,819s) - m_ResultStacktrace: - m_TestListState: - scrollPos: {x: 0, y: 250} - m_SelectedIDs: fe0556d4 - m_LastClickedID: -732559874 - m_ExpandedIDs: f4e19c8358cb7885df53309fcf98c5a5fe0556d484b0fde420bceced225b48f740b280048163d81f8cf0ac21dc0e4c41e3ab7d4bb5930b65c88f5d6bffffff7f - m_RenameOverlay: - m_UserAcceptedRename: 0 - m_Name: - m_OriginalName: - m_EditFieldRect: - serializedVersion: 2 - x: 0 - y: 0 - width: 0 - height: 0 - m_UserData: 0 - m_IsWaitingForDelay: 0 - m_IsRenaming: 0 - m_OriginalEventType: 11 - m_IsRenamingFilename: 0 - m_TrimLeadingAndTrailingWhitespace: 0 - m_ClientGUIView: {fileID: 0} - m_SearchString: - m_TestRunnerUIFilter: - PassedHidden: 0 - FailedHidden: 0 - NotRunHidden: 0 - m_SearchString: - selectedCategoryMask: 0 - availableCategories: - - Uncategorized ---- !u!114 &17 +--- !u!114 &13 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -1824,7 +324,7 @@ MonoBehaviour: m_Pos: serializedVersion: 2 x: 0 - y: 19 + y: -1007 width: 201 height: 926 m_SerializedDataModeController: @@ -1866,7 +366,7 @@ MonoBehaviour: scrollPos: {x: 0, y: 0} m_SelectedIDs: 6a820100 m_LastClickedID: 98922 - m_ExpandedIDs: 0000000004b3000006b3000008b300000ab300000cb30000 + m_ExpandedIDs: 00000000fcb20000feb2000000b3000002b3000004b30000 m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -1895,7 +395,7 @@ MonoBehaviour: scrollPos: {x: 0, y: 0} m_SelectedIDs: m_LastClickedID: 0 - m_ExpandedIDs: 0000000004b3000006b3000008b300000ab300000cb30000 + m_ExpandedIDs: ffffffff00000000fcb20000feb2000000b3000002b3000004b30000 m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -1912,7 +412,7 @@ MonoBehaviour: m_OriginalEventType: 11 m_IsRenamingFilename: 1 m_TrimLeadingAndTrailingWhitespace: 0 - m_ClientGUIView: {fileID: 6} + m_ClientGUIView: {fileID: 3} m_SearchString: m_CreateAssetUtility: m_EndAction: {fileID: 0} @@ -1953,7 +453,7 @@ MonoBehaviour: m_GridSize: 64 m_SkipHiddenPackages: 0 m_DirectoriesAreaWidth: 207 ---- !u!114 &18 +--- !u!114 &14 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -1974,9 +474,9 @@ MonoBehaviour: m_TextWithWhitespace: "Inspector\u200B" m_Pos: serializedVersion: 2 - x: 1631 - y: 19 - width: 289 + x: 1820 + y: -1007 + width: 99 height: 926 m_SerializedDataModeController: m_DataMode: 0 @@ -2002,7 +502,7 @@ MonoBehaviour: m_LockTracker: m_IsLocked: 0 m_PreviewWindow: {fileID: 0} ---- !u!114 &19 +--- !u!114 &15 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -2023,10 +523,10 @@ MonoBehaviour: m_TextWithWhitespace: "Hierarchy\u200B" m_Pos: serializedVersion: 2 - x: 1151 - y: 19 - width: 276 - height: 599 + x: 1504 + y: -1007 + width: 314 + height: 341 m_SerializedDataModeController: m_DataMode: 0 m_PreferredDataMode: 0 @@ -2043,7 +543,7 @@ MonoBehaviour: scrollPos: {x: 0, y: 0} m_SelectedIDs: m_LastClickedID: 0 - m_ExpandedIDs: 7e6affff648dffffaa91ffffded0fffff2d0fffff4faffffa8b30000dab300001cb400002ab40000 + m_ExpandedIDs: f4faffff m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -2060,7 +560,7 @@ MonoBehaviour: m_OriginalEventType: 11 m_IsRenamingFilename: 0 m_TrimLeadingAndTrailingWhitespace: 0 - m_ClientGUIView: {fileID: 5} + m_ClientGUIView: {fileID: 2} m_SearchString: m_ExpandedScenes: [] m_CurrenRootInstanceID: 0 @@ -2068,7 +568,7 @@ MonoBehaviour: m_IsLocked: 0 m_CurrentSortingName: TransformSorting m_WindowGUID: 4c969a2b90040154d917609493e03593 ---- !u!114 &20 +--- !u!114 &16 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -2089,10 +589,10 @@ MonoBehaviour: m_TextWithWhitespace: "Scene\u200B" m_Pos: serializedVersion: 2 - x: 1 - y: 19 - width: 1148 - height: 599 + x: 202 + y: -1007 + width: 1300 + height: 341 m_SerializedDataModeController: m_DataMode: 0 m_PreferredDataMode: 0 @@ -2577,9 +1077,9 @@ MonoBehaviour: m_AudioPlay: 0 m_DebugDrawModesUseInteractiveLightBakingData: 0 m_Position: - m_Target: {x: 825.5659, y: 552.3718, z: 16.46469} + m_Target: {x: 813.5632, y: 504.4957, z: 17.75427} speed: 2 - m_Value: {x: 825.5659, y: 552.3718, z: 16.46469} + m_Value: {x: 813.5632, y: 504.4957, z: 17.75427} m_RenderMode: 0 m_CameraMode: drawMode: 0 @@ -2629,9 +1129,9 @@ MonoBehaviour: speed: 2 m_Value: {x: 0, y: 0, z: 0, w: 1} m_Size: - m_Target: 676.41693 + m_Target: 561.4972 speed: 2 - m_Value: 676.41693 + m_Value: 561.4972 m_Ortho: m_Target: 1 speed: 2 @@ -2652,7 +1152,7 @@ MonoBehaviour: m_LastSceneViewRotation: {x: -0.08717229, y: 0.89959055, z: -0.21045254, w: -0.3726226} m_LastSceneViewOrtho: 0 m_Viewpoint: - m_SceneView: {fileID: 20} + m_SceneView: {fileID: 16} m_CameraOverscanSettings: m_Opacity: 50 m_Scale: 1 @@ -2662,7 +1162,7 @@ MonoBehaviour: m_LastLockedObject: {fileID: 0} m_LastDebugDrawMode: 35 m_ViewIsLockedToObject: 0 ---- !u!114 &21 +--- !u!114 &17 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -2684,9 +1184,9 @@ MonoBehaviour: m_Pos: serializedVersion: 2 x: 202 - y: 73 - width: 1148 - height: 599 + y: -1007 + width: 1300 + height: 341 m_SerializedDataModeController: m_DataMode: 0 m_PreferredDataMode: 0 @@ -2740,29 +1240,29 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 21 - width: 1148 - height: 578 - m_Scale: {x: 0.53518516, y: 0.53518516} - m_Translation: {x: 574, y: 289} + width: 1300 + height: 320 + m_Scale: {x: 0.2962963, y: 0.2962963} + m_Translation: {x: 650, y: 160} m_MarginLeft: 0 m_MarginRight: 0 m_MarginTop: 0 m_MarginBottom: 0 m_LastShownAreaInsideMargins: serializedVersion: 2 - x: -1072.526 + x: -2193.75 y: -540 - width: 2145.052 + width: 4387.5 height: 1080 m_MinimalGUI: 1 - m_defaultScale: 0.53518516 - m_LastWindowPixelSize: {x: 1148, y: 599} + m_defaultScale: 0.2962963 + m_LastWindowPixelSize: {x: 1300, y: 341} m_ClearInEditMode: 1 m_NoCameraWarning: 1 m_LowResolutionForAspectRatios: 01000000000000000000 m_XRRenderMode: 0 m_RenderTexture: {fileID: 0} ---- !u!114 &22 +--- !u!114 &18 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -2783,10 +1283,10 @@ MonoBehaviour: m_TextWithWhitespace: "Console\u200B" m_Pos: serializedVersion: 2 - x: 1 - y: 639 - width: 1426 - height: 306 + x: 202 + y: -645 + width: 1616 + height: 564 m_SerializedDataModeController: m_DataMode: 0 m_PreferredDataMode: 0 diff --git a/UserSettings/Layouts/default-6000.dwlt b/UserSettings/Layouts/default-6000.dwlt new file mode 100644 index 0000000..f70e206 --- /dev/null +++ b/UserSettings/Layouts/default-6000.dwlt @@ -0,0 +1,1322 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &1 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 12004, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_PixelRect: + serializedVersion: 2 + x: 8 + y: 51 + width: 1904 + height: 981 + m_ShowMode: 4 + m_Title: Game + m_RootView: {fileID: 7} + m_MinSize: {x: 875, y: 300} + m_MaxSize: {x: 10000, y: 10000} + m_Maximized: 0 +--- !u!114 &2 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} + m_Name: SceneHierarchyWindow + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 1087 + y: 0 + width: 222 + height: 593 + m_MinSize: {x: 202, y: 226} + m_MaxSize: {x: 4002, y: 4026} + m_ActualView: {fileID: 15} + m_Panes: + - {fileID: 15} + m_Selected: 0 + m_LastSelected: 0 +--- !u!114 &3 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} + m_Name: ProjectBrowser + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 0 + y: 0 + width: 302 + height: 925 + m_MinSize: {x: 231, y: 276} + m_MaxSize: {x: 10001, y: 10026} + m_ActualView: {fileID: 13} + m_Panes: + - {fileID: 13} + m_Selected: 0 + m_LastSelected: 0 +--- !u!114 &4 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: + - {fileID: 3} + - {fileID: 10} + - {fileID: 5} + m_Position: + serializedVersion: 2 + x: 0 + y: 36 + width: 1904 + height: 925 + m_MinSize: {x: 400, y: 100} + m_MaxSize: {x: 32384, y: 16192} + vertical: 0 + controlID: 119 + draggingID: 0 +--- !u!114 &5 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 1611 + y: 0 + width: 293 + height: 925 + m_MinSize: {x: 276, y: 76} + m_MaxSize: {x: 4001, y: 4026} + m_ActualView: {fileID: 14} + m_Panes: + - {fileID: 14} + m_Selected: 0 + m_LastSelected: 0 +--- !u!114 &6 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} + m_Name: ConsoleWindow + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 0 + y: 593 + width: 1309 + height: 332 + m_MinSize: {x: 102, y: 126} + m_MaxSize: {x: 4002, y: 4026} + m_ActualView: {fileID: 18} + m_Panes: + - {fileID: 18} + m_Selected: 0 + m_LastSelected: 0 +--- !u!114 &7 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12008, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: + - {fileID: 8} + - {fileID: 4} + - {fileID: 9} + m_Position: + serializedVersion: 2 + x: 0 + y: 0 + width: 1904 + height: 981 + m_MinSize: {x: 875, y: 300} + m_MaxSize: {x: 10000, y: 10000} + m_UseTopView: 1 + m_TopViewHeight: 36 + m_UseBottomView: 1 + m_BottomViewHeight: 20 +--- !u!114 &8 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12011, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 0 + y: 0 + width: 1904 + height: 36 + m_MinSize: {x: 0, y: 0} + m_MaxSize: {x: 0, y: 0} + m_LastLoadedLayoutName: +--- !u!114 &9 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12042, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 0 + y: 961 + width: 1904 + height: 20 + m_MinSize: {x: 0, y: 0} + m_MaxSize: {x: 0, y: 0} +--- !u!114 &10 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: + - {fileID: 11} + - {fileID: 6} + m_Position: + serializedVersion: 2 + x: 302 + y: 0 + width: 1309 + height: 925 + m_MinSize: {x: 200, y: 100} + m_MaxSize: {x: 16192, y: 16192} + vertical: 1 + controlID: 83 + draggingID: 0 +--- !u!114 &11 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: + - {fileID: 12} + - {fileID: 2} + m_Position: + serializedVersion: 2 + x: 0 + y: 0 + width: 1309 + height: 593 + m_MinSize: {x: 200, y: 50} + m_MaxSize: {x: 16192, y: 8096} + vertical: 0 + controlID: 63 + draggingID: 0 +--- !u!114 &12 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} + m_Name: SceneView + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 0 + y: 0 + width: 1087 + height: 593 + m_MinSize: {x: 202, y: 226} + m_MaxSize: {x: 4002, y: 4026} + m_ActualView: {fileID: 16} + m_Panes: + - {fileID: 16} + - {fileID: 17} + m_Selected: 0 + m_LastSelected: 1 +--- !u!114 &13 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12014, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_MinSize: {x: 230, y: 250} + m_MaxSize: {x: 10000, y: 10000} + m_TitleContent: + m_Text: Project + m_Image: {fileID: -5467254957812901981, guid: 0000000000000000d000000000000000, type: 0} + m_Tooltip: + m_TextWithWhitespace: "Project\u200B" + m_Pos: + serializedVersion: 2 + x: 0 + y: 24 + width: 301 + height: 899 + m_SerializedDataModeController: + m_DataMode: 0 + m_PreferredDataMode: 0 + m_SupportedDataModes: + isAutomatic: 1 + m_ViewDataDictionary: {fileID: 0} + m_OverlayCanvas: + m_LastAppliedPresetName: Default + m_SaveData: [] + m_ContainerData: [] + m_OverlaysVisible: 1 + m_SearchFilter: + m_NameFilter: + m_ClassNames: [] + m_AssetLabels: [] + m_AssetBundleNames: [] + m_ReferencingInstanceIDs: + m_SceneHandles: + m_ShowAllHits: 0 + m_SkipHidden: 0 + m_SearchArea: 1 + m_Folders: + - Assets/prefabs + m_Globs: [] + m_ProductIds: + m_AnyWithAssetOrigin: 0 + m_OriginalText: + m_ImportLogFlags: 0 + m_FilterByTypeIntersection: 0 + m_ViewMode: 0 + m_StartGridSize: 64 + m_LastFolders: [] + m_LastFoldersGridSize: -1 + m_LastProjectPath: D:\Data\Workspace\TraitTracker + m_LockTracker: + m_IsLocked: 0 + m_FolderTreeState: + scrollPos: {x: 0, y: 0} + m_SelectedIDs: 6a820100 + m_LastClickedID: 98922 + m_ExpandedIDs: 00000000ccab0000ceab0000d0ab0000d2ab0000d4ab0000d6ab0000d8ab0000daab0000dcab0000 + m_RenameOverlay: + m_UserAcceptedRename: 0 + m_Name: + m_OriginalName: + m_EditFieldRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + m_UserData: 0 + m_IsWaitingForDelay: 0 + m_IsRenaming: 0 + m_OriginalEventType: 11 + m_IsRenamingFilename: 1 + m_TrimLeadingAndTrailingWhitespace: 0 + m_ClientGUIView: {fileID: 0} + m_SearchString: + m_CreateAssetUtility: + m_EndAction: {fileID: 0} + m_InstanceID: 0 + m_Path: + m_Icon: {fileID: 0} + m_ResourceFile: + m_AssetTreeState: + scrollPos: {x: 0, y: 0} + m_SelectedIDs: + m_LastClickedID: 0 + m_ExpandedIDs: 00000000ccab0000ceab0000d0ab0000d2ab0000d4ab0000d6ab0000d8ab0000daab0000dcab0000 + m_RenameOverlay: + m_UserAcceptedRename: 0 + m_Name: + m_OriginalName: + m_EditFieldRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + m_UserData: 0 + m_IsWaitingForDelay: 0 + m_IsRenaming: 0 + m_OriginalEventType: 11 + m_IsRenamingFilename: 1 + m_TrimLeadingAndTrailingWhitespace: 0 + m_ClientGUIView: {fileID: 3} + m_SearchString: + m_CreateAssetUtility: + m_EndAction: {fileID: 0} + m_InstanceID: 0 + m_Path: + m_Icon: {fileID: 0} + m_ResourceFile: + m_ListAreaState: + m_SelectedInstanceIDs: + m_LastClickedInstanceID: 0 + m_HadKeyboardFocusLastEvent: 0 + m_ExpandedInstanceIDs: c6230000 + m_RenameOverlay: + m_UserAcceptedRename: 0 + m_Name: + m_OriginalName: + m_EditFieldRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + m_UserData: 0 + m_IsWaitingForDelay: 0 + m_IsRenaming: 0 + m_OriginalEventType: 11 + m_IsRenamingFilename: 1 + m_TrimLeadingAndTrailingWhitespace: 0 + m_ClientGUIView: {fileID: 0} + m_CreateAssetUtility: + m_EndAction: {fileID: 0} + m_InstanceID: 0 + m_Path: + m_Icon: {fileID: 0} + m_ResourceFile: + m_NewAssetIndexInList: -1 + m_ScrollPosition: {x: 0, y: 0} + m_GridSize: 64 + m_SkipHiddenPackages: 0 + m_DirectoriesAreaWidth: 207 +--- !u!114 &14 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12019, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_MinSize: {x: 275, y: 50} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: Inspector + m_Image: {fileID: -2667387946076563598, guid: 0000000000000000d000000000000000, type: 0} + m_Tooltip: + m_TextWithWhitespace: "Inspector\u200B" + m_Pos: + serializedVersion: 2 + x: 1612 + y: 24 + width: 292 + height: 899 + m_SerializedDataModeController: + m_DataMode: 0 + m_PreferredDataMode: 0 + m_SupportedDataModes: + isAutomatic: 1 + m_ViewDataDictionary: {fileID: 0} + m_OverlayCanvas: + m_LastAppliedPresetName: Default + m_SaveData: [] + m_ContainerData: [] + m_OverlaysVisible: 1 + m_ObjectsLockedBeforeSerialization: [] + m_InstanceIDsLockedBeforeSerialization: + m_PreviewResizer: + m_CachedPref: 160 + m_ControlHash: -371814159 + m_PrefName: Preview_InspectorPreview + m_LastInspectedObjectInstanceID: -1 + m_LastVerticalScrollValue: 0 + m_GlobalObjectId: + m_InspectorMode: 0 + m_LockTracker: + m_IsLocked: 0 + m_PreviewWindow: {fileID: 0} +--- !u!114 &15 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12061, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_MinSize: {x: 200, y: 200} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: Hierarchy + m_Image: {fileID: 7966133145522015247, guid: 0000000000000000d000000000000000, type: 0} + m_Tooltip: + m_TextWithWhitespace: "Hierarchy\u200B" + m_Pos: + serializedVersion: 2 + x: 1088 + y: 24 + width: 220 + height: 567 + m_SerializedDataModeController: + m_DataMode: 0 + m_PreferredDataMode: 0 + m_SupportedDataModes: + isAutomatic: 1 + m_ViewDataDictionary: {fileID: 0} + m_OverlayCanvas: + m_LastAppliedPresetName: Default + m_SaveData: [] + m_ContainerData: [] + m_OverlaysVisible: 1 + m_SceneHierarchy: + m_TreeViewState: + scrollPos: {x: 0, y: 0} + m_SelectedIDs: + m_LastClickedID: 0 + m_ExpandedIDs: 0cfbffff1ca80000a0a80000e2a80000 + m_RenameOverlay: + m_UserAcceptedRename: 0 + m_Name: + m_OriginalName: + m_EditFieldRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + m_UserData: 0 + m_IsWaitingForDelay: 0 + m_IsRenaming: 0 + m_OriginalEventType: 11 + m_IsRenamingFilename: 0 + m_TrimLeadingAndTrailingWhitespace: 0 + m_ClientGUIView: {fileID: 2} + m_SearchString: + m_ExpandedScenes: [] + m_CurrenRootInstanceID: 0 + m_LockTracker: + m_IsLocked: 0 + m_CurrentSortingName: TransformSorting + m_WindowGUID: 4c969a2b90040154d917609493e03593 +--- !u!114 &16 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12013, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_MinSize: {x: 200, y: 200} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: Scene + m_Image: {fileID: 2593428753322112591, guid: 0000000000000000d000000000000000, type: 0} + m_Tooltip: + m_TextWithWhitespace: "Scene\u200B" + m_Pos: + serializedVersion: 2 + x: 1 + y: 24 + width: 1085 + height: 567 + m_SerializedDataModeController: + m_DataMode: 0 + m_PreferredDataMode: 0 + m_SupportedDataModes: + isAutomatic: 1 + m_ViewDataDictionary: {fileID: 0} + m_OverlayCanvas: + m_LastAppliedPresetName: Default + m_SaveData: + - dockPosition: 0 + containerId: overlay-toolbar__top + displayed: 1 + id: Tool Settings + index: 0 + contents: '{"m_Layout":1,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":-24.0,"y":-24.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":3,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: -24, y: -24} + snapOffsetDelta: {x: 0, y: 0} + snapCorner: 3 + layout: 1 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 0 + containerId: overlay-toolbar__top + displayed: 1 + id: unity-grid-and-snap-toolbar + index: 1 + contents: '{"m_Layout":1,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":-141.0,"y":149.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":1,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: -141, y: 149} + snapOffsetDelta: {x: 0, y: 0} + snapCorner: 1 + layout: 1 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 1 + containerId: overlay-toolbar__top + displayed: 1 + id: unity-scene-view-toolbar + index: 0 + contents: '{"m_Layout":1,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":25.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: 24, y: 25} + snapOffsetDelta: {x: 0, y: 0} + snapCorner: 0 + layout: 1 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 1 + containerId: overlay-toolbar__top + displayed: 0 + id: unity-search-toolbar + index: 3 + contents: '{"m_Layout":1,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":-24.0,"y":0.0},"m_FloatingSnapCorner":1,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: 0, y: 0} + snapOffsetDelta: {x: -24, y: 0} + snapCorner: 1 + layout: 1 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 1 + containerId: overlay-toolbar__top + displayed: 0 + id: Scene View/Open Tile Palette + index: 2 + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: 0, y: 0} + snapOffsetDelta: {x: 24, y: 0} + snapCorner: 0 + layout: 4 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 1 + containerId: overlay-toolbar__top + displayed: 0 + id: Scene View/Tilemap Focus + index: 4 + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: 0, y: 0} + snapOffsetDelta: {x: 24, y: 0} + snapCorner: 0 + layout: 4 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 0 + containerId: overlay-container--left + displayed: 1 + id: unity-transform-toolbar + index: 0 + contents: '{"m_Layout":2,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":25.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: 24, y: 25} + snapOffsetDelta: {x: 0, y: 0} + snapCorner: 0 + layout: 2 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 0 + containerId: overlay-container--right + displayed: 1 + id: Orientation + index: 0 + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":67.5,"y":86.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: 67.5, y: 86} + snapOffsetDelta: {x: 0, y: 0} + snapCorner: 0 + layout: 4 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 1 + containerId: overlay-container--right + displayed: 0 + id: Scene View/Light Settings + index: 1 + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: 0, y: 0} + snapOffsetDelta: {x: 24, y: 0} + snapCorner: 0 + layout: 4 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 1 + containerId: overlay-container--right + displayed: 0 + id: Scene View/Camera + index: 1 + contents: + floating: 0 + collapsed: 0 + snapOffset: {x: 0, y: 0} + snapOffsetDelta: {x: 0, y: 25} + snapCorner: 0 + layout: 4 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 1 + containerId: overlay-container--right + displayed: 0 + id: Scene View/Cloth Constraints + index: 3 + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: 0, y: 0} + snapOffsetDelta: {x: 24, y: 0} + snapCorner: 0 + layout: 4 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 1 + containerId: overlay-container--right + displayed: 0 + id: Scene View/Cloth Collisions + index: 4 + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: 0, y: 0} + snapOffsetDelta: {x: 24, y: 0} + snapCorner: 0 + layout: 4 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 1 + containerId: overlay-container--right + displayed: 0 + id: Scene View/Navmesh Display + index: 4 + contents: + floating: 0 + collapsed: 0 + snapOffset: {x: 0, y: 0} + snapOffsetDelta: {x: 0, y: 25} + snapCorner: 0 + layout: 4 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 1 + containerId: overlay-container--right + displayed: 0 + id: Scene View/Agent Display + index: 5 + contents: + floating: 0 + collapsed: 0 + snapOffset: {x: 0, y: 0} + snapOffsetDelta: {x: 0, y: 25} + snapCorner: 0 + layout: 4 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 1 + containerId: overlay-container--right + displayed: 0 + id: Scene View/Obstacle Display + index: 6 + contents: + floating: 0 + collapsed: 0 + snapOffset: {x: 0, y: 0} + snapOffsetDelta: {x: 0, y: 25} + snapCorner: 0 + layout: 4 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 1 + containerId: overlay-container--right + displayed: 0 + id: Scene View/Occlusion Culling + index: 5 + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: 0, y: 0} + snapOffsetDelta: {x: 24, y: 0} + snapCorner: 0 + layout: 4 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 1 + containerId: overlay-container--right + displayed: 0 + id: Scene View/Physics Debugger + index: 6 + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: 0, y: 0} + snapOffsetDelta: {x: 24, y: 0} + snapCorner: 0 + layout: 4 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 1 + containerId: overlay-container--right + displayed: 0 + id: Scene View/Scene Visibility + index: 7 + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: 0, y: 0} + snapOffsetDelta: {x: 24, y: 0} + snapCorner: 0 + layout: 4 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 1 + containerId: overlay-container--right + displayed: 0 + id: Scene View/Particles + index: 8 + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: 0, y: 0} + snapOffsetDelta: {x: 24, y: 0} + snapCorner: 0 + layout: 4 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 0 + containerId: overlay-toolbar__top + displayed: 0 + id: Brush Attributes + index: 2 + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: 0, y: 0} + snapOffsetDelta: {x: 24, y: 0} + snapCorner: 0 + layout: 4 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 1 + containerId: overlay-toolbar__top + displayed: 1 + id: unity-scene-view-camera-mode-toolbar + index: 1 + contents: '{"m_Layout":1,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":25.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: 24, y: 25} + snapOffsetDelta: {x: 0, y: 0} + snapCorner: 0 + layout: 1 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 0 + containerId: overlay-toolbar__left + displayed: 0 + id: Terrain Tools + index: 0 + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: 0, y: 0} + snapOffsetDelta: {x: 24, y: 0} + snapCorner: 0 + layout: 4 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 0 + containerId: overlay-toolbar__left + displayed: 0 + id: Brush Masks + index: 1 + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: 0, y: 0} + snapOffsetDelta: {x: 24, y: 0} + snapCorner: 0 + layout: 4 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 1 + containerId: overlay-container--left + displayed: 0 + id: Scene View/Lighting Visualization Colors + index: 0 + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: 0, y: 0} + snapOffsetDelta: {x: 24, y: 0} + snapCorner: 0 + layout: 4 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 1 + containerId: overlay-container--right + displayed: 0 + id: SceneView/CamerasOverlay + index: 9 + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: 0, y: 0} + snapOffsetDelta: {x: 24, y: 0} + snapCorner: 0 + layout: 4 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 1 + containerId: overlay-container--right + displayed: 0 + id: Scene View/PBR Validation Settings + index: 10 + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: 0, y: 0} + snapOffsetDelta: {x: 24, y: 0} + snapCorner: 0 + layout: 4 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 1 + containerId: overlay-container--right + displayed: 0 + id: Scene View/TrailRenderer + index: 11 + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: 0, y: 0} + snapOffsetDelta: {x: 24, y: 0} + snapCorner: 0 + layout: 4 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 1 + containerId: overlay-container--right + displayed: 0 + id: Scene View/Tile Palette Clipboard + index: 0 + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: 0, y: 0} + snapOffsetDelta: {x: 24, y: 0} + snapCorner: 0 + layout: 4 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 1 + containerId: overlay-container--right + displayed: 0 + id: Scene View/Tile Palette Brush Pick + index: 2 + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: 0, y: 0} + snapOffsetDelta: {x: 24, y: 0} + snapCorner: 0 + layout: 4 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 1 + containerId: overlay-container--right + displayed: 0 + id: APV Overlay + index: 12 + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: 0, y: 0} + snapOffsetDelta: {x: 24, y: 0} + snapCorner: 0 + layout: 4 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 1 + containerId: overlay-container--right + displayed: 0 + id: Scene View/Path + index: 13 + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: 0, y: 0} + snapOffsetDelta: {x: 24, y: 0} + snapCorner: 0 + layout: 4 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 1 + containerId: overlay-container--right + displayed: 0 + id: Scene View/Sprite Swap + index: 14 + contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":24.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: 0, y: 0} + snapOffsetDelta: {x: 24, y: 0} + snapCorner: 0 + layout: 4 + size: {x: 0, y: 0} + sizeOverridden: 0 + - dockPosition: 1 + containerId: overlay-container--left + displayed: 1 + id: Overlays/OverlayMenu + index: 1 + contents: '{"m_Layout":1,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":25.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' + floating: 0 + collapsed: 0 + snapOffset: {x: 24, y: 25} + snapOffsetDelta: {x: 0, y: 0} + snapCorner: 0 + layout: 1 + size: {x: 0, y: 0} + sizeOverridden: 0 + m_ContainerData: + - containerId: overlay-toolbar__top + scrollOffset: 0 + - containerId: overlay-toolbar__left + scrollOffset: 0 + - containerId: overlay-container--left + scrollOffset: 0 + - containerId: overlay-container--right + scrollOffset: 0 + - containerId: overlay-toolbar__right + scrollOffset: 0 + - containerId: overlay-toolbar__bottom + scrollOffset: 0 + - containerId: Floating + scrollOffset: 0 + m_OverlaysVisible: 1 + m_WindowGUID: cc27987af1a868c49b0894db9c0f5429 + m_Gizmos: 1 + m_OverrideSceneCullingMask: 6917529027641081856 + m_SceneIsLit: 1 + m_SceneLighting: 1 + m_2DMode: 1 + m_isRotationLocked: 0 + m_PlayAudio: 0 + m_AudioPlay: 0 + m_DebugDrawModesUseInteractiveLightBakingData: 0 + m_Position: + m_Target: {x: 352.90176, y: 749.8801, z: -5.349518} + speed: 2 + m_Value: {x: 352.90176, y: 749.8801, z: -5.349518} + m_RenderMode: 0 + m_CameraMode: + drawMode: 0 + name: Shaded + section: Shading Mode + m_ValidateTrueMetals: 0 + m_DoValidateTrueMetals: 0 + m_SceneViewState: + m_AlwaysRefresh: 0 + showFog: 1 + showSkybox: 1 + showFlares: 1 + showImageEffects: 1 + showParticleSystems: 1 + showVisualEffectGraphs: 1 + m_FxEnabled: 1 + m_Grid: + xGrid: + m_Fade: + m_Target: 0 + speed: 2 + m_Value: 0 + m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 0.4} + m_Pivot: {x: 0, y: 0, z: 0} + m_Size: {x: 0, y: 0} + yGrid: + m_Fade: + m_Target: 0 + speed: 2 + m_Value: 0 + m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 0.4} + m_Pivot: {x: 0, y: 0, z: 0} + m_Size: {x: 1, y: 1} + zGrid: + m_Fade: + m_Target: 1 + speed: 2 + m_Value: 1 + m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 0.4} + m_Pivot: {x: 0, y: 0, z: 0} + m_Size: {x: 1, y: 1} + m_ShowGrid: 1 + m_GridAxis: 1 + m_gridOpacity: 0.5 + m_Rotation: + m_Target: {x: 0, y: 0, z: 0, w: 1} + speed: 2 + m_Value: {x: 0, y: 0, z: 0, w: 1} + m_Size: + m_Target: 544.9516 + speed: 2 + m_Value: 544.9516 + m_Ortho: + m_Target: 1 + speed: 2 + m_Value: 1 + m_CameraSettings: + m_Speed: 1 + m_SpeedNormalized: 0.5 + m_SpeedMin: 0.001 + m_SpeedMax: 2 + m_EasingEnabled: 1 + m_EasingDuration: 0.4 + m_AccelerationEnabled: 1 + m_FieldOfViewHorizontalOrVertical: 60 + m_NearClip: 0.03 + m_FarClip: 10000 + m_DynamicClip: 1 + m_OcclusionCulling: 0 + m_LastSceneViewRotation: {x: -0.08717229, y: 0.89959055, z: -0.21045254, w: -0.3726226} + m_LastSceneViewOrtho: 0 + m_Viewpoint: + m_SceneView: {fileID: 16} + m_CameraOverscanSettings: + m_Opacity: 50 + m_Scale: 1 + m_ReplacementShader: {fileID: 0} + m_ReplacementString: + m_SceneVisActive: 1 + m_LastLockedObject: {fileID: 0} + m_LastDebugDrawMode: + drawMode: 35 + name: + section: + m_ViewIsLockedToObject: 0 +--- !u!114 &17 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12015, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_MinSize: {x: 200, y: 200} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: Game + m_Image: {fileID: -6423792434712278376, guid: 0000000000000000d000000000000000, type: 0} + m_Tooltip: + m_TextWithWhitespace: "Game\u200B" + m_Pos: + serializedVersion: 2 + x: 310 + y: 87 + width: 1085 + height: 567 + m_SerializedDataModeController: + m_DataMode: 0 + m_PreferredDataMode: 0 + m_SupportedDataModes: + isAutomatic: 1 + m_ViewDataDictionary: {fileID: 0} + m_OverlayCanvas: + m_LastAppliedPresetName: Default + m_SaveData: [] + m_ContainerData: [] + m_OverlaysVisible: 1 + m_SerializedViewNames: [] + m_SerializedViewValues: [] + m_PlayModeViewName: GameView + m_ShowGizmos: 0 + m_TargetDisplay: 0 + m_ClearColor: {r: 0, g: 0, b: 0, a: 0} + m_TargetSize: {x: 1920, y: 1080} + m_TextureFilterMode: 0 + m_TextureHideFlags: 61 + m_RenderIMGUI: 1 + m_EnterPlayModeBehavior: 0 + m_UseMipMap: 0 + m_VSyncEnabled: 0 + m_Gizmos: 0 + m_Stats: 0 + m_SelectedSizes: 03000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_ZoomArea: + m_HRangeLocked: 0 + m_VRangeLocked: 0 + hZoomLockedByDefault: 0 + vZoomLockedByDefault: 0 + m_HBaseRangeMin: -960 + m_HBaseRangeMax: 960 + m_VBaseRangeMin: -540 + m_VBaseRangeMax: 540 + m_HAllowExceedBaseRangeMin: 1 + m_HAllowExceedBaseRangeMax: 1 + m_VAllowExceedBaseRangeMin: 1 + m_VAllowExceedBaseRangeMax: 1 + m_ScaleWithWindow: 0 + m_HSlider: 0 + m_VSlider: 0 + m_IgnoreScrollWheelUntilClicked: 0 + m_EnableMouseInput: 0 + m_EnableSliderZoomHorizontal: 0 + m_EnableSliderZoomVertical: 0 + m_UniformScale: 1 + m_UpDirection: 1 + m_DrawArea: + serializedVersion: 2 + x: 0 + y: 21 + width: 1085 + height: 546 + m_Scale: {x: 0.50555557, y: 0.50555557} + m_Translation: {x: 542.5, y: 273} + m_MarginLeft: 0 + m_MarginRight: 0 + m_MarginTop: 0 + m_MarginBottom: 0 + m_LastShownAreaInsideMargins: + serializedVersion: 2 + x: -1073.0769 + y: -540 + width: 2146.1538 + height: 1080 + m_MinimalGUI: 1 + m_defaultScale: 0.50555557 + m_LastWindowPixelSize: {x: 1085, y: 567} + m_ClearInEditMode: 1 + m_NoCameraWarning: 1 + m_LowResolutionForAspectRatios: 01000000000000000000 + m_XRRenderMode: 0 + m_RenderTexture: {fileID: 0} + m_showToolbar: 1 +--- !u!114 &18 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12003, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_MinSize: {x: 100, y: 100} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: Console + m_Image: {fileID: -4327648978806127646, guid: 0000000000000000d000000000000000, type: 0} + m_Tooltip: + m_TextWithWhitespace: "Console\u200B" + m_Pos: + serializedVersion: 2 + x: 1 + y: 617 + width: 1307 + height: 306 + m_SerializedDataModeController: + m_DataMode: 0 + m_PreferredDataMode: 0 + m_SupportedDataModes: + isAutomatic: 1 + m_ViewDataDictionary: {fileID: 0} + m_OverlayCanvas: + m_LastAppliedPresetName: Default + m_SaveData: [] + m_ContainerData: [] + m_OverlaysVisible: 1