final push
This commit is contained in:
@@ -21,7 +21,7 @@ public class TraitSelectorManager : MonoBehaviour
|
||||
[SerializeField]
|
||||
private int _traitThreshold = 7;
|
||||
|
||||
|
||||
[SerializeField] public int _compositionPerFrame = 100;
|
||||
public void ListAllActivableCompo()
|
||||
{
|
||||
var emblemList = _emblemSelector.GetEmblems();
|
||||
@@ -37,16 +37,33 @@ public class TraitSelectorManager : MonoBehaviour
|
||||
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)
|
||||
{
|
||||
HandleCombination(composition, emblemList);
|
||||
yield return 0f;
|
||||
int activeSynergies = GetActiveSynergy(composition, emblemList);
|
||||
compHandled++;
|
||||
totalCompHandled++;
|
||||
if(TraitUtils.TraitCountFromInt(activeSynergies) >= _traitThreshold)
|
||||
{
|
||||
totalSucessfulCompFound++;
|
||||
HashSet<ChampionsEnum> 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 void HandleCombination(long combination, Dictionary<int, int> emblemList)
|
||||
private int GetActiveSynergy(long combination, Dictionary<int, int> emblemList)
|
||||
{
|
||||
var synergies = TraitsMapping.TraitCountInCompo(combination);
|
||||
|
||||
@@ -55,16 +72,12 @@ public class TraitSelectorManager : MonoBehaviour
|
||||
emblemList
|
||||
);
|
||||
var activeSynergies = TraitsMapping.FilterActiveTraits(synergiesWithEmblem);
|
||||
return activeSynergies;
|
||||
|
||||
}
|
||||
|
||||
if (TraitUtils.TraitCountFromInt(activeSynergies) >= _traitThreshold)
|
||||
{
|
||||
HashSet<ChampionsEnum> champions = ChampionUtils.FromLong(combination);
|
||||
var s = TraitsMapping.CompositionToString(champions);
|
||||
Debug.Log(s);
|
||||
}
|
||||
// else
|
||||
// {
|
||||
// //Debug.LogWarning("Combination not valid");
|
||||
// }
|
||||
public void StopAll()
|
||||
{
|
||||
StopAllCoroutines();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -10,6 +10,8 @@ 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<long, int> ChampsTraits = new Dictionary<long, int>
|
||||
{
|
||||
{
|
||||
@@ -844,14 +846,14 @@ namespace Assets.Data
|
||||
public static Dictionary<int, int> TraitCountInCompo(long compo)
|
||||
{
|
||||
Dictionary<int, int> synergies = new Dictionary<int, int>();
|
||||
for (int i = 0; i < 60; i++)
|
||||
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 < 22; trait++)
|
||||
for (int trait = 0; trait < TotalTraitCount; trait++)
|
||||
{
|
||||
if ((traits & (1 << trait)) != 0)
|
||||
{
|
||||
@@ -970,6 +972,8 @@ namespace Assets.Data
|
||||
long possibleChamps,
|
||||
int compositionSize
|
||||
) {
|
||||
possibleChamps = possibleChamps & ~mandatoryChamps;
|
||||
|
||||
Assert.IsTrue((mandatoryChamps & possibleChamps) == 0);
|
||||
|
||||
List<long> compositions = new List<long>();
|
||||
|
||||
@@ -154,7 +154,7 @@ RectTransform:
|
||||
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_SizeDelta: {x: -200, y: 119.96}
|
||||
m_Pivot: {x: 0.5, y: 1}
|
||||
--- !u!114 &110884226
|
||||
MonoBehaviour:
|
||||
@@ -241,7 +241,7 @@ MonoBehaviour:
|
||||
m_VertexBufferAutoSizeReduction: 0
|
||||
m_useMaxVisibleDescender: 1
|
||||
m_pageToDisplay: 1
|
||||
m_margin: {x: 0, y: 0, z: 0, w: 0}
|
||||
m_margin: {x: -0.000061035156, y: 0, z: 0.00024414062, w: 0}
|
||||
m_isUsingLegacyAnimationComponent: 0
|
||||
m_isVolumetricText: 0
|
||||
m_hasFontAssetChanged: 0
|
||||
@@ -255,6 +255,139 @@ CanvasRenderer:
|
||||
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
|
||||
@@ -1128,6 +1261,7 @@ RectTransform:
|
||||
m_Children:
|
||||
- {fileID: 2080429968}
|
||||
- {fileID: 600350129}
|
||||
- {fileID: 174394552}
|
||||
- {fileID: 1222435012}
|
||||
m_Father: {fileID: 374169518}
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
@@ -1537,6 +1671,282 @@ MonoBehaviour:
|
||||
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
|
||||
@@ -3273,7 +3683,8 @@ MonoBehaviour:
|
||||
_mandatorychampionSelector: {fileID: 479329100}
|
||||
_acceptablechampionSelector: {fileID: 1418508558}
|
||||
_emblemSelector: {fileID: 1032725645}
|
||||
_traitThreshold: 5
|
||||
_traitThreshold: 7
|
||||
_compositionPerFrame: 100
|
||||
--- !u!114 &1418508558 stripped
|
||||
MonoBehaviour:
|
||||
m_CorrespondingSourceObject: {fileID: 8148431447111668956, guid: c027171600fc2d34e89847fce2ced78b, type: 3}
|
||||
@@ -3536,6 +3947,139 @@ CanvasRenderer:
|
||||
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
|
||||
@@ -3568,6 +4112,8 @@ RectTransform:
|
||||
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}
|
||||
@@ -3665,6 +4211,142 @@ MonoBehaviour:
|
||||
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
|
||||
@@ -3822,6 +4504,139 @@ CanvasRenderer:
|
||||
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
|
||||
|
||||
@@ -256,65 +256,70 @@ public class ChampionSelector : MonoBehaviour
|
||||
|
||||
public void Reset()
|
||||
{
|
||||
_ASHESelector.isOn = _defaultSelection;
|
||||
_BLITZCRANKSelector.isOn = _defaultSelection;
|
||||
_ELISESelector.isOn = _defaultSelection;
|
||||
_JAXSelector.isOn = _defaultSelection;
|
||||
_JAYCESelector.isOn = _defaultSelection;
|
||||
_LILLIASelector.isOn = _defaultSelection;
|
||||
_NOMSYSelector.isOn = _defaultSelection;
|
||||
_POPPYSelector.isOn = _defaultSelection;
|
||||
_SERAPHINESelector.isOn = _defaultSelection;
|
||||
_SORAKASelector.isOn = _defaultSelection;
|
||||
_TWITCHSelector.isOn = _defaultSelection;
|
||||
_WARWICKSelector.isOn = _defaultSelection;
|
||||
_ZIGGSSelector.isOn = _defaultSelection;
|
||||
_ZOESelector.isOn = _defaultSelection;
|
||||
_AHRISelector.isOn = _defaultSelection;
|
||||
_AKALISelector.isOn = _defaultSelection;
|
||||
_CASSIOPEIASelector.isOn = _defaultSelection;
|
||||
_GALIOSelector.isOn = _defaultSelection;
|
||||
_KASSADINSelector.isOn = _defaultSelection;
|
||||
_KOGMAWSelector.isOn = _defaultSelection;
|
||||
_NILAHSelector.isOn = _defaultSelection;
|
||||
_NUNUSelector.isOn = _defaultSelection;
|
||||
_RUMBLESelector.isOn = _defaultSelection;
|
||||
_SHYVANASelector.isOn = _defaultSelection;
|
||||
_SYNDRASelector.isOn = _defaultSelection;
|
||||
_TRISTANASelector.isOn = _defaultSelection;
|
||||
_ZILEANSelector.isOn = _defaultSelection;
|
||||
_BARDSelector.isOn = _defaultSelection;
|
||||
_EZREALSelector.isOn = _defaultSelection;
|
||||
_HECARIMSelector.isOn = _defaultSelection;
|
||||
_HWEISelector.isOn = _defaultSelection;
|
||||
_JINXSelector.isOn = _defaultSelection;
|
||||
_KATARINASelector.isOn = _defaultSelection;
|
||||
_MORDEKAISERSelector.isOn = _defaultSelection;
|
||||
_NEEKOSelector.isOn = _defaultSelection;
|
||||
_SHENSelector.isOn = _defaultSelection;
|
||||
_SWAINSelector.isOn = _defaultSelection;
|
||||
_VEIGARSelector.isOn = _defaultSelection;
|
||||
_VEXSelector.isOn = _defaultSelection;
|
||||
_WUKONGSelector.isOn = _defaultSelection;
|
||||
_FIORASelector.isOn = _defaultSelection;
|
||||
_GWENSelector.isOn = _defaultSelection;
|
||||
_KALISTASelector.isOn = _defaultSelection;
|
||||
_KARMASelector.isOn = _defaultSelection;
|
||||
_NAMISelector.isOn = _defaultSelection;
|
||||
_NASUSSelector.isOn = _defaultSelection;
|
||||
_OLAFSelector.isOn = _defaultSelection;
|
||||
_RAKANSelector.isOn = _defaultSelection;
|
||||
_RYZESelector.isOn = _defaultSelection;
|
||||
_TAHMKENCHSelector.isOn = _defaultSelection;
|
||||
_TARICSelector.isOn = _defaultSelection;
|
||||
_VARUSSelector.isOn = _defaultSelection;
|
||||
_BRIARSelector.isOn = _defaultSelection;
|
||||
_CAMILLESelector.isOn = _defaultSelection;
|
||||
_DIANASelector.isOn = _defaultSelection;
|
||||
_MILLIOSelector.isOn = _defaultSelection;
|
||||
_MORGANASelector.isOn = _defaultSelection;
|
||||
_NORRASelector.isOn = _defaultSelection;
|
||||
_SMOLDERSelector.isOn = _defaultSelection;
|
||||
_XERATHSelector.isOn = _defaultSelection;
|
||||
SetTo(_defaultSelection);
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -14,8 +14,8 @@ MonoBehaviour:
|
||||
m_EditorClassIdentifier:
|
||||
m_PixelRect:
|
||||
serializedVersion: 2
|
||||
x: 314
|
||||
y: -893
|
||||
x: 455
|
||||
y: -922
|
||||
width: 1361
|
||||
height: 744
|
||||
m_ShowMode: 0
|
||||
@@ -113,12 +113,12 @@ MonoBehaviour:
|
||||
m_Children: []
|
||||
m_Position:
|
||||
serializedVersion: 2
|
||||
x: 857
|
||||
x: 1150
|
||||
y: 0
|
||||
width: 406
|
||||
height: 498
|
||||
m_MinSize: {x: 200, y: 200}
|
||||
m_MaxSize: {x: 4000, y: 4000}
|
||||
width: 278
|
||||
height: 620
|
||||
m_MinSize: {x: 202, y: 221}
|
||||
m_MaxSize: {x: 4002, y: 4021}
|
||||
m_ActualView: {fileID: 19}
|
||||
m_Panes:
|
||||
- {fileID: 19}
|
||||
@@ -141,7 +141,7 @@ MonoBehaviour:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 0
|
||||
width: 242
|
||||
width: 202
|
||||
height: 947
|
||||
m_MinSize: {x: 231, y: 271}
|
||||
m_MaxSize: {x: 10001, y: 10021}
|
||||
@@ -191,12 +191,12 @@ MonoBehaviour:
|
||||
m_Children: []
|
||||
m_Position:
|
||||
serializedVersion: 2
|
||||
x: 1505
|
||||
x: 1630
|
||||
y: 0
|
||||
width: 415
|
||||
width: 290
|
||||
height: 947
|
||||
m_MinSize: {x: 275, y: 50}
|
||||
m_MaxSize: {x: 4000, y: 4000}
|
||||
m_MinSize: {x: 276, y: 71}
|
||||
m_MaxSize: {x: 4001, y: 4021}
|
||||
m_ActualView: {fileID: 18}
|
||||
m_Panes:
|
||||
- {fileID: 18}
|
||||
@@ -218,9 +218,9 @@ MonoBehaviour:
|
||||
m_Position:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 498
|
||||
width: 1263
|
||||
height: 449
|
||||
y: 620
|
||||
width: 1428
|
||||
height: 327
|
||||
m_MinSize: {x: 102, y: 121}
|
||||
m_MaxSize: {x: 4002, y: 4021}
|
||||
m_ActualView: {fileID: 22}
|
||||
@@ -316,9 +316,9 @@ MonoBehaviour:
|
||||
- {fileID: 9}
|
||||
m_Position:
|
||||
serializedVersion: 2
|
||||
x: 242
|
||||
x: 202
|
||||
y: 0
|
||||
width: 1263
|
||||
width: 1428
|
||||
height: 947
|
||||
m_MinSize: {x: 200, y: 100}
|
||||
m_MaxSize: {x: 16192, y: 16192}
|
||||
@@ -343,8 +343,8 @@ MonoBehaviour:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 0
|
||||
width: 1263
|
||||
height: 498
|
||||
width: 1428
|
||||
height: 620
|
||||
m_MinSize: {x: 200, y: 50}
|
||||
m_MaxSize: {x: 16192, y: 8096}
|
||||
vertical: 0
|
||||
@@ -366,8 +366,8 @@ MonoBehaviour:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 0
|
||||
width: 857
|
||||
height: 498
|
||||
width: 1150
|
||||
height: 620
|
||||
m_MinSize: {x: 202, y: 221}
|
||||
m_MaxSize: {x: 4002, y: 4021}
|
||||
m_ActualView: {fileID: 20}
|
||||
@@ -397,8 +397,8 @@ MonoBehaviour:
|
||||
m_TextWithWhitespace: "Test Runner\u200B"
|
||||
m_Pos:
|
||||
serializedVersion: 2
|
||||
x: 314
|
||||
y: -893
|
||||
x: 0
|
||||
y: 21
|
||||
width: 1361
|
||||
height: 723
|
||||
m_SerializedDataModeController:
|
||||
@@ -413,7 +413,7 @@ MonoBehaviour:
|
||||
m_ContainerData: []
|
||||
m_OverlaysVisible: 1
|
||||
m_Spl:
|
||||
ID: 155
|
||||
ID: 154
|
||||
splitterInitialOffset: 0
|
||||
currentActiveSplitter: -1
|
||||
realSizes:
|
||||
@@ -481,7 +481,7 @@ MonoBehaviour:
|
||||
name: TraitTracker
|
||||
fullName: TraitTracker
|
||||
resultStatus: 1
|
||||
duration: 0.213096
|
||||
duration: 1.0145975
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -497,7 +497,7 @@ MonoBehaviour:
|
||||
name: Assembly-CSharp-Editor.dll
|
||||
fullName: D:/Data/Workspace/TraitTracker/Library/ScriptAssemblies/Assembly-CSharp-Editor.dll
|
||||
resultStatus: 1
|
||||
duration: 0.1974456
|
||||
duration: 0.9160895
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -513,7 +513,7 @@ MonoBehaviour:
|
||||
name: Assets
|
||||
fullName: Assets
|
||||
resultStatus: 1
|
||||
duration: 0.1905519
|
||||
duration: 0.8187809
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -529,7 +529,7 @@ MonoBehaviour:
|
||||
name: Data
|
||||
fullName: Assets.Data
|
||||
resultStatus: 1
|
||||
duration: 0.1849778
|
||||
duration: 0.7194227
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -545,7 +545,7 @@ MonoBehaviour:
|
||||
name: TestBitWise
|
||||
fullName: Assets.Data.TestBitWise
|
||||
resultStatus: 1
|
||||
duration: 0.037623
|
||||
duration: 0.2189707
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -561,7 +561,7 @@ MonoBehaviour:
|
||||
name: TestBitwiseCombination
|
||||
fullName: Assets.Data.TestBitWise.TestBitwiseCombination
|
||||
resultStatus: 1
|
||||
duration: 0.0296928
|
||||
duration: 0.1182511
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -577,7 +577,7 @@ MonoBehaviour:
|
||||
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.0111627
|
||||
duration: 0.0123836
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -594,7 +594,7 @@ MonoBehaviour:
|
||||
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.0001048
|
||||
duration: 0.000139
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -611,7 +611,7 @@ MonoBehaviour:
|
||||
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.0000763
|
||||
duration: 0.0000914
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -628,7 +628,7 @@ MonoBehaviour:
|
||||
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.0000707
|
||||
duration: 0.0000851
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -645,7 +645,7 @@ MonoBehaviour:
|
||||
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.0000722
|
||||
duration: 0.0000845
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -662,7 +662,7 @@ MonoBehaviour:
|
||||
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.0000719
|
||||
duration: 0.0000881
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -679,7 +679,7 @@ MonoBehaviour:
|
||||
name: TestChampionUtils
|
||||
fullName: Assets.Data.TestChampionUtils
|
||||
resultStatus: 1
|
||||
duration: 0.0295112
|
||||
duration: 0.1292841
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -695,7 +695,7 @@ MonoBehaviour:
|
||||
name: TestGetNthChampion
|
||||
fullName: Assets.Data.TestChampionUtils.TestGetNthChampion
|
||||
resultStatus: 1
|
||||
duration: 0.0059292
|
||||
duration: 0.1012925
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -711,7 +711,7 @@ MonoBehaviour:
|
||||
name: TestGetNthChampion(1L,0,1L)
|
||||
fullName: Assets.Data.TestChampionUtils.TestGetNthChampion(1L,0,1L)
|
||||
resultStatus: 1
|
||||
duration: 0.0005877
|
||||
duration: 0.000517
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -728,7 +728,7 @@ MonoBehaviour:
|
||||
name: TestGetNthChampion(288230376151711744L,0,288230376151711744L)
|
||||
fullName: Assets.Data.TestChampionUtils.TestGetNthChampion(288230376151711744L,0,288230376151711744L)
|
||||
resultStatus: 1
|
||||
duration: 0.0000775
|
||||
duration: 0.0000864
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -745,7 +745,7 @@ MonoBehaviour:
|
||||
name: TestGetNthChampion(16384L,0,16384L)
|
||||
fullName: Assets.Data.TestChampionUtils.TestGetNthChampion(16384L,0,16384L)
|
||||
resultStatus: 1
|
||||
duration: 0.0000683
|
||||
duration: 0.0000837
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -762,7 +762,7 @@ MonoBehaviour:
|
||||
name: TestGetNthChampion(1073758848L,1,512L)
|
||||
fullName: Assets.Data.TestChampionUtils.TestGetNthChampion(1073758848L,1,512L)
|
||||
resultStatus: 1
|
||||
duration: 0.0000703
|
||||
duration: 0.0000817
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -779,7 +779,7 @@ MonoBehaviour:
|
||||
name: TestIntChampion
|
||||
fullName: Assets.Data.TestChampionUtils.TestIntChampion
|
||||
resultStatus: 1
|
||||
duration: 0.013023
|
||||
duration: 0.0079147
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -795,7 +795,7 @@ MonoBehaviour:
|
||||
name: TestIntChampion(1223456L)
|
||||
fullName: Assets.Data.TestChampionUtils.TestIntChampion(1223456L)
|
||||
resultStatus: 1
|
||||
duration: 0.0004766
|
||||
duration: 0.0006265
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -812,7 +812,7 @@ MonoBehaviour:
|
||||
name: TestIntChampion(3422L)
|
||||
fullName: Assets.Data.TestChampionUtils.TestIntChampion(3422L)
|
||||
resultStatus: 1
|
||||
duration: 0.0001233
|
||||
duration: 0.0001378
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -829,7 +829,7 @@ MonoBehaviour:
|
||||
name: TestIntChampion(97352L)
|
||||
fullName: Assets.Data.TestChampionUtils.TestIntChampion(97352L)
|
||||
resultStatus: 1
|
||||
duration: 0.0001219
|
||||
duration: 0.0001338
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -846,7 +846,7 @@ MonoBehaviour:
|
||||
name: TestIntChampion(67855324254L)
|
||||
fullName: Assets.Data.TestChampionUtils.TestIntChampion(67855324254L)
|
||||
resultStatus: 1
|
||||
duration: 0.0001232
|
||||
duration: 0.0001363
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -863,7 +863,7 @@ MonoBehaviour:
|
||||
name: TestIntChampion(432742125L)
|
||||
fullName: Assets.Data.TestChampionUtils.TestIntChampion(432742125L)
|
||||
resultStatus: 1
|
||||
duration: 0.0001223
|
||||
duration: 0.0001336
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -880,7 +880,7 @@ MonoBehaviour:
|
||||
name: TestIntChampion(76578256785L)
|
||||
fullName: Assets.Data.TestChampionUtils.TestIntChampion(76578256785L)
|
||||
resultStatus: 1
|
||||
duration: 0.0001215
|
||||
duration: 0.000141
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -897,7 +897,7 @@ MonoBehaviour:
|
||||
name: TestIntChampion(12345678912345678L)
|
||||
fullName: Assets.Data.TestChampionUtils.TestIntChampion(12345678912345678L)
|
||||
resultStatus: 1
|
||||
duration: 0.000123
|
||||
duration: 0.000136
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -914,7 +914,7 @@ MonoBehaviour:
|
||||
name: TestTraitsMapping
|
||||
fullName: Assets.Data.TestTraitsMapping
|
||||
resultStatus: 1
|
||||
duration: 0.033523
|
||||
duration: 0.1229989
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -930,7 +930,7 @@ MonoBehaviour:
|
||||
name: TestChampCombination
|
||||
fullName: Assets.Data.TestTraitsMapping.TestChampCombination
|
||||
resultStatus: 1
|
||||
duration: 0.0087966
|
||||
duration: 0.1064609
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -946,7 +946,7 @@ MonoBehaviour:
|
||||
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.0013006
|
||||
duration: 0.0030955
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -963,7 +963,7 @@ MonoBehaviour:
|
||||
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.0002806
|
||||
duration: 0.0003709
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -980,7 +980,7 @@ MonoBehaviour:
|
||||
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.0001299
|
||||
duration: 0.0001742
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -997,7 +997,7 @@ MonoBehaviour:
|
||||
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.0001259
|
||||
duration: 0.0001739
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -1014,7 +1014,7 @@ MonoBehaviour:
|
||||
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.0001265
|
||||
duration: 0.000179
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -1031,7 +1031,7 @@ MonoBehaviour:
|
||||
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.000131
|
||||
duration: 0.0001751
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -1048,7 +1048,7 @@ MonoBehaviour:
|
||||
name: TestFilteringChampCombination
|
||||
fullName: Assets.Data.TestTraitsMapping.TestFilteringChampCombination
|
||||
resultStatus: 1
|
||||
duration: 0.0148494
|
||||
duration: 0.011215
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -1064,7 +1064,7 @@ MonoBehaviour:
|
||||
name: TestFilteringChampCombination(15L,5,5L)
|
||||
fullName: Assets.Data.TestTraitsMapping.TestFilteringChampCombination(15L,5,5L)
|
||||
resultStatus: 1
|
||||
duration: 0.0051629
|
||||
duration: 0.0047628
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -1081,7 +1081,7 @@ MonoBehaviour:
|
||||
name: TestTraitsUtils
|
||||
fullName: Assets.Data.TestTraitsUtils
|
||||
resultStatus: 1
|
||||
duration: 0.0784389
|
||||
duration: 0.1472235
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -1097,7 +1097,7 @@ MonoBehaviour:
|
||||
name: TestActiveSynergyFilter
|
||||
fullName: Assets.Data.TestTraitsUtils.TestActiveSynergyFilter
|
||||
resultStatus: 1
|
||||
duration: 0.0072456
|
||||
duration: 0.1009383
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -1113,7 +1113,7 @@ MonoBehaviour:
|
||||
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.0013267
|
||||
duration: 0.0013772
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -1130,7 +1130,7 @@ MonoBehaviour:
|
||||
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.0000758
|
||||
duration: 0.0000946
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -1147,7 +1147,7 @@ MonoBehaviour:
|
||||
name: TestIntTrait
|
||||
fullName: Assets.Data.TestTraitsUtils.TestIntTrait
|
||||
resultStatus: 1
|
||||
duration: 0.0138361
|
||||
duration: 0.0072801
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -1163,7 +1163,7 @@ MonoBehaviour:
|
||||
name: TestIntTrait(156)
|
||||
fullName: Assets.Data.TestTraitsUtils.TestIntTrait(156)
|
||||
resultStatus: 1
|
||||
duration: 0.0007499
|
||||
duration: 0.0005246
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -1180,7 +1180,7 @@ MonoBehaviour:
|
||||
name: TestIntTrait(621)
|
||||
fullName: Assets.Data.TestTraitsUtils.TestIntTrait(621)
|
||||
resultStatus: 1
|
||||
duration: 0.0001013
|
||||
duration: 0.0001116
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -1197,7 +1197,7 @@ MonoBehaviour:
|
||||
name: TestIntTrait(123456)
|
||||
fullName: Assets.Data.TestTraitsUtils.TestIntTrait(123456)
|
||||
resultStatus: 1
|
||||
duration: 0.0000956
|
||||
duration: 0.0001101
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -1214,7 +1214,7 @@ MonoBehaviour:
|
||||
name: TestIntTrait(5)
|
||||
fullName: Assets.Data.TestTraitsUtils.TestIntTrait(5)
|
||||
resultStatus: 1
|
||||
duration: 0.0000929
|
||||
duration: 0.0001026
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -1231,7 +1231,7 @@ MonoBehaviour:
|
||||
name: TestIntTrait(4194303)
|
||||
fullName: Assets.Data.TestTraitsUtils.TestIntTrait(4194303)
|
||||
resultStatus: 1
|
||||
duration: 0.0000958
|
||||
duration: 0.0001169
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -1248,7 +1248,7 @@ MonoBehaviour:
|
||||
name: TestIntTrait(4194302)
|
||||
fullName: Assets.Data.TestTraitsUtils.TestIntTrait(4194302)
|
||||
resultStatus: 1
|
||||
duration: 0.0000996
|
||||
duration: 0.0001077
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -1265,7 +1265,7 @@ MonoBehaviour:
|
||||
name: TestMapping
|
||||
fullName: Assets.Data.TestTraitsUtils.TestMapping
|
||||
resultStatus: 1
|
||||
duration: 0.0099309
|
||||
duration: 0.0096112
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -1282,7 +1282,7 @@ MonoBehaviour:
|
||||
name: TestMergeEmblems
|
||||
fullName: Assets.Data.TestTraitsUtils.TestMergeEmblems
|
||||
resultStatus: 1
|
||||
duration: 0.0148065
|
||||
duration: 0.0091352
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -1298,7 +1298,7 @@ MonoBehaviour:
|
||||
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.003745
|
||||
duration: 0.0036827
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -1316,7 +1316,7 @@ MonoBehaviour:
|
||||
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.0001054
|
||||
duration: 0.0001002
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -1333,7 +1333,7 @@ MonoBehaviour:
|
||||
name: TestTraitToInt
|
||||
fullName: Assets.Data.TestTraitsUtils.TestTraitToInt
|
||||
resultStatus: 1
|
||||
duration: 0.0200486
|
||||
duration: 0.0131165
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -1349,7 +1349,7 @@ MonoBehaviour:
|
||||
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.0002955
|
||||
duration: 0.0002321
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -1366,7 +1366,7 @@ MonoBehaviour:
|
||||
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.0000752
|
||||
duration: 0.0000905
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -1383,7 +1383,7 @@ MonoBehaviour:
|
||||
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.0000717
|
||||
duration: 0.0000822
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -1400,7 +1400,7 @@ MonoBehaviour:
|
||||
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.0000716
|
||||
duration: 0.0000851
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -1417,7 +1417,7 @@ MonoBehaviour:
|
||||
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.0000736
|
||||
duration: 0.0000833
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -1434,7 +1434,7 @@ MonoBehaviour:
|
||||
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.000069
|
||||
duration: 0.0000811
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -1451,7 +1451,7 @@ MonoBehaviour:
|
||||
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.0000722
|
||||
duration: 0.0000828
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -1468,7 +1468,7 @@ MonoBehaviour:
|
||||
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.0000709
|
||||
duration: 0.0000877
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -1485,7 +1485,7 @@ MonoBehaviour:
|
||||
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.0000694
|
||||
duration: 0.0000848
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -1502,7 +1502,7 @@ MonoBehaviour:
|
||||
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.0000729
|
||||
duration: 0.0000828
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -1519,7 +1519,7 @@ MonoBehaviour:
|
||||
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.0000678
|
||||
duration: 0.0000804
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -1536,7 +1536,7 @@ MonoBehaviour:
|
||||
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.0000705
|
||||
duration: 0.0000914
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -1553,7 +1553,7 @@ MonoBehaviour:
|
||||
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.0000721
|
||||
duration: 0.0000822
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -1570,7 +1570,7 @@ MonoBehaviour:
|
||||
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.0000695
|
||||
duration: 0.0000808
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -1587,7 +1587,7 @@ MonoBehaviour:
|
||||
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.0000796
|
||||
duration: 0.0000795
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -1604,7 +1604,7 @@ MonoBehaviour:
|
||||
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.0000685
|
||||
duration: 0.0000819
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -1621,7 +1621,7 @@ MonoBehaviour:
|
||||
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.0000694
|
||||
duration: 0.000082
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -1638,7 +1638,7 @@ MonoBehaviour:
|
||||
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.000071
|
||||
duration: 0.0000818
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -1655,7 +1655,7 @@ MonoBehaviour:
|
||||
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.0000703
|
||||
duration: 0.0000836
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -1672,7 +1672,7 @@ MonoBehaviour:
|
||||
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.0000693
|
||||
duration: 0.0000815
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -1689,7 +1689,7 @@ MonoBehaviour:
|
||||
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.0000697
|
||||
duration: 0.0000838
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -1706,7 +1706,7 @@ MonoBehaviour:
|
||||
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.0001488
|
||||
duration: 0.0000809
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -1723,7 +1723,7 @@ MonoBehaviour:
|
||||
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.0000733
|
||||
duration: 0.0000839
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -1740,7 +1740,7 @@ MonoBehaviour:
|
||||
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.0000723
|
||||
duration: 0.000083
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -1757,7 +1757,7 @@ MonoBehaviour:
|
||||
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.0000802
|
||||
duration: 0.0001273
|
||||
messages:
|
||||
output:
|
||||
stacktrace:
|
||||
@@ -1769,12 +1769,12 @@ MonoBehaviour:
|
||||
- Uncategorized
|
||||
parentId: 1050
|
||||
parentUniqueId: 'Assembly-CSharp-Editor.dll/Assets/Data/TestTraitsUtils/[Assembly-CSharp-Editor][Assets.Data.TestTraitsUtils.TestTraitToInt][suite]'
|
||||
m_ResultText: Data (0,185s)
|
||||
m_ResultText: Assets (0,819s)
|
||||
m_ResultStacktrace:
|
||||
m_TestListState:
|
||||
scrollPos: {x: 0, y: 0}
|
||||
m_SelectedIDs: 58cb7885
|
||||
m_LastClickedID: -2055681192
|
||||
scrollPos: {x: 0, y: 250}
|
||||
m_SelectedIDs: fe0556d4
|
||||
m_LastClickedID: -732559874
|
||||
m_ExpandedIDs: f4e19c8358cb7885df53309fcf98c5a5fe0556d484b0fde420bceced225b48f740b280048163d81f8cf0ac21dc0e4c41e3ab7d4bb5930b65c88f5d6bffffff7f
|
||||
m_RenameOverlay:
|
||||
m_UserAcceptedRename: 0
|
||||
@@ -1824,8 +1824,8 @@ MonoBehaviour:
|
||||
m_Pos:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 73
|
||||
width: 241
|
||||
y: 19
|
||||
width: 201
|
||||
height: 926
|
||||
m_SerializedDataModeController:
|
||||
m_DataMode: 0
|
||||
@@ -1866,7 +1866,7 @@ MonoBehaviour:
|
||||
scrollPos: {x: 0, y: 0}
|
||||
m_SelectedIDs: 6a820100
|
||||
m_LastClickedID: 98922
|
||||
m_ExpandedIDs: 00000000ceb20000d0b20000d2b20000d4b20000d6b20000
|
||||
m_ExpandedIDs: 0000000004b3000006b3000008b300000ab300000cb30000
|
||||
m_RenameOverlay:
|
||||
m_UserAcceptedRename: 0
|
||||
m_Name:
|
||||
@@ -1895,7 +1895,7 @@ MonoBehaviour:
|
||||
scrollPos: {x: 0, y: 0}
|
||||
m_SelectedIDs:
|
||||
m_LastClickedID: 0
|
||||
m_ExpandedIDs: ffffffff00000000ceb20000d0b20000d2b20000d4b20000d6b20000
|
||||
m_ExpandedIDs: 0000000004b3000006b3000008b300000ab300000cb30000
|
||||
m_RenameOverlay:
|
||||
m_UserAcceptedRename: 0
|
||||
m_Name:
|
||||
@@ -1974,9 +1974,9 @@ MonoBehaviour:
|
||||
m_TextWithWhitespace: "Inspector\u200B"
|
||||
m_Pos:
|
||||
serializedVersion: 2
|
||||
x: 1505
|
||||
y: 73
|
||||
width: 414
|
||||
x: 1631
|
||||
y: 19
|
||||
width: 289
|
||||
height: 926
|
||||
m_SerializedDataModeController:
|
||||
m_DataMode: 0
|
||||
@@ -2023,10 +2023,10 @@ MonoBehaviour:
|
||||
m_TextWithWhitespace: "Hierarchy\u200B"
|
||||
m_Pos:
|
||||
serializedVersion: 2
|
||||
x: 1099
|
||||
y: 73
|
||||
width: 404
|
||||
height: 477
|
||||
x: 1151
|
||||
y: 19
|
||||
width: 276
|
||||
height: 599
|
||||
m_SerializedDataModeController:
|
||||
m_DataMode: 0
|
||||
m_PreferredDataMode: 0
|
||||
@@ -2041,23 +2041,23 @@ MonoBehaviour:
|
||||
m_SceneHierarchy:
|
||||
m_TreeViewState:
|
||||
scrollPos: {x: 0, y: 0}
|
||||
m_SelectedIDs: a4100100
|
||||
m_LastClickedID: 69796
|
||||
m_ExpandedIDs: 48fefcff56fefcff5630fdff6830fdff8049fdff5661fdff2c79fdff4c92fdff68abfdff88c4fdff9eddfdff70f5fdffa40efeffc827feffec40feff045afeffd671feffea8afeffbca2feff8ebafeff60d2feff80ebfeff5203ffff281bffff5034ffff424cffff1864ffff347dffff4896ffff22aeffff84c8ffffb0e1fffff4fafffff4ffffff
|
||||
m_SelectedIDs:
|
||||
m_LastClickedID: 0
|
||||
m_ExpandedIDs: 7e6affff648dffffaa91ffffded0fffff2d0fffff4faffffa8b30000dab300001cb400002ab40000
|
||||
m_RenameOverlay:
|
||||
m_UserAcceptedRename: 0
|
||||
m_Name: Global Light 2D
|
||||
m_OriginalName: Global Light 2D
|
||||
m_Name:
|
||||
m_OriginalName:
|
||||
m_EditFieldRect:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 0
|
||||
width: 0
|
||||
height: 0
|
||||
m_UserData: 69764
|
||||
m_UserData: 0
|
||||
m_IsWaitingForDelay: 0
|
||||
m_IsRenaming: 0
|
||||
m_OriginalEventType: 0
|
||||
m_OriginalEventType: 11
|
||||
m_IsRenamingFilename: 0
|
||||
m_TrimLeadingAndTrailingWhitespace: 0
|
||||
m_ClientGUIView: {fileID: 5}
|
||||
@@ -2089,10 +2089,10 @@ MonoBehaviour:
|
||||
m_TextWithWhitespace: "Scene\u200B"
|
||||
m_Pos:
|
||||
serializedVersion: 2
|
||||
x: 242
|
||||
y: 73
|
||||
width: 855
|
||||
height: 477
|
||||
x: 1
|
||||
y: 19
|
||||
width: 1148
|
||||
height: 599
|
||||
m_SerializedDataModeController:
|
||||
m_DataMode: 0
|
||||
m_PreferredDataMode: 0
|
||||
@@ -2577,9 +2577,9 @@ MonoBehaviour:
|
||||
m_AudioPlay: 0
|
||||
m_DebugDrawModesUseInteractiveLightBakingData: 0
|
||||
m_Position:
|
||||
m_Target: {x: 972.8931, y: 626.9652, z: 5.8108497}
|
||||
m_Target: {x: 825.5659, y: 552.3718, z: 16.46469}
|
||||
speed: 2
|
||||
m_Value: {x: 972.8931, y: 626.9652, z: 5.8108497}
|
||||
m_Value: {x: 825.5659, y: 552.3718, z: 16.46469}
|
||||
m_RenderMode: 0
|
||||
m_CameraMode:
|
||||
drawMode: 0
|
||||
@@ -2629,9 +2629,9 @@ MonoBehaviour:
|
||||
speed: 2
|
||||
m_Value: {x: 0, y: 0, z: 0, w: 1}
|
||||
m_Size:
|
||||
m_Target: 722.7939
|
||||
m_Target: 676.41693
|
||||
speed: 2
|
||||
m_Value: 722.7939
|
||||
m_Value: 676.41693
|
||||
m_Ortho:
|
||||
m_Target: 1
|
||||
speed: 2
|
||||
@@ -2683,10 +2683,10 @@ MonoBehaviour:
|
||||
m_TextWithWhitespace: "Game\u200B"
|
||||
m_Pos:
|
||||
serializedVersion: 2
|
||||
x: 242
|
||||
x: 202
|
||||
y: 73
|
||||
width: 855
|
||||
height: 477
|
||||
width: 1148
|
||||
height: 599
|
||||
m_SerializedDataModeController:
|
||||
m_DataMode: 0
|
||||
m_PreferredDataMode: 0
|
||||
@@ -2740,23 +2740,23 @@ MonoBehaviour:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 21
|
||||
width: 855
|
||||
height: 456
|
||||
m_Scale: {x: 0.42222223, y: 0.42222223}
|
||||
m_Translation: {x: 427.5, y: 228}
|
||||
width: 1148
|
||||
height: 578
|
||||
m_Scale: {x: 0.53518516, y: 0.53518516}
|
||||
m_Translation: {x: 574, y: 289}
|
||||
m_MarginLeft: 0
|
||||
m_MarginRight: 0
|
||||
m_MarginTop: 0
|
||||
m_MarginBottom: 0
|
||||
m_LastShownAreaInsideMargins:
|
||||
serializedVersion: 2
|
||||
x: -1012.5
|
||||
x: -1072.526
|
||||
y: -540
|
||||
width: 2025
|
||||
width: 2145.052
|
||||
height: 1080
|
||||
m_MinimalGUI: 1
|
||||
m_defaultScale: 0.42222223
|
||||
m_LastWindowPixelSize: {x: 855, y: 477}
|
||||
m_defaultScale: 0.53518516
|
||||
m_LastWindowPixelSize: {x: 1148, y: 599}
|
||||
m_ClearInEditMode: 1
|
||||
m_NoCameraWarning: 1
|
||||
m_LowResolutionForAspectRatios: 01000000000000000000
|
||||
@@ -2783,10 +2783,10 @@ MonoBehaviour:
|
||||
m_TextWithWhitespace: "Console\u200B"
|
||||
m_Pos:
|
||||
serializedVersion: 2
|
||||
x: 242
|
||||
y: 571
|
||||
width: 1261
|
||||
height: 428
|
||||
x: 1
|
||||
y: 639
|
||||
width: 1426
|
||||
height: 306
|
||||
m_SerializedDataModeController:
|
||||
m_DataMode: 0
|
||||
m_PreferredDataMode: 0
|
||||
|
||||
Reference in New Issue
Block a user