Skip to content
Snippets Groups Projects
Commit c59727cd authored by benxidosz's avatar benxidosz
Browse files

LeaderBord working

parent 80062f59
Branches
No related tags found
No related merge requests found
......@@ -1105,7 +1105,19 @@ MonoBehaviour:
m_TargetGraphic: {fileID: 634255504}
m_OnClick:
m_PersistentCalls:
m_Calls: []
m_Calls:
- m_Target: {fileID: 1891644864}
m_TargetAssemblyTypeName: MenuController, Assembly-CSharp
m_MethodName: PersonalButton
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 &634255504
MonoBehaviour:
m_ObjectHideFlags: 0
......@@ -2050,6 +2062,7 @@ MonoBehaviour:
refreshTime: 5
scoreData: {fileID: 11400000, guid: c3384fdbcb43df94dbaba334a4851414, type: 2}
rowPrefab: {fileID: 4663329718610754681, guid: 99aa5892cf577c140afcb85f68306d01, type: 3}
loggedIn: 0
--- !u!1 &1145573626
GameObject:
m_ObjectHideFlags: 0
......@@ -2887,6 +2900,26 @@ PrefabInstance:
propertyPath: m_Name
value: menuPersonalData
objectReference: {fileID: 0}
- target: {fileID: 34227667218523574, guid: 96ec04a59bb390b4598832d7acdd090c, type: 3}
propertyPath: m_Options.m_Options.Array.data[0].m_Text
value: red
objectReference: {fileID: 0}
- target: {fileID: 34227667218523574, guid: 96ec04a59bb390b4598832d7acdd090c, type: 3}
propertyPath: m_Options.m_Options.Array.data[1].m_Text
value: black
objectReference: {fileID: 0}
- target: {fileID: 34227667218523574, guid: 96ec04a59bb390b4598832d7acdd090c, type: 3}
propertyPath: m_Options.m_Options.Array.data[2].m_Text
value: blue
objectReference: {fileID: 0}
- target: {fileID: 34227667218523574, guid: 96ec04a59bb390b4598832d7acdd090c, type: 3}
propertyPath: m_Options.m_Options.Array.data[3].m_Text
value: yellow
objectReference: {fileID: 0}
- target: {fileID: 34227667218523574, guid: 96ec04a59bb390b4598832d7acdd090c, type: 3}
propertyPath: m_Options.m_Options.Array.data[4].m_Text
value: white
objectReference: {fileID: 0}
m_RemovedComponents: []
m_SourcePrefab: {fileID: 100100000, guid: 96ec04a59bb390b4598832d7acdd090c, type: 3}
--- !u!224 &1752564978 stripped
......@@ -3192,7 +3225,7 @@ MonoBehaviour:
m_Name:
m_EditorClassIdentifier:
mainMenuAnimator: {fileID: 2071320555}
personalAnimator: {fileID: 0}
personalAnimator: {fileID: 1918117085}
leaderboardAnimator: {fileID: 741943919}
--- !u!4 &1891644865
Transform:
......@@ -3220,6 +3253,11 @@ MonoBehaviour:
m_Script: {fileID: 11500000, guid: 50e0e77bd41942245b69f6035b6292e7, type: 3}
m_Name:
m_EditorClassIdentifier:
--- !u!95 &1918117085 stripped
Animator:
m_CorrespondingSourceObject: {fileID: 34227666190830472, guid: 96ec04a59bb390b4598832d7acdd090c, type: 3}
m_PrefabInstance: {fileID: 1752564977}
m_PrefabAsset: {fileID: 0}
--- !u!1 &2071320552
GameObject:
m_ObjectHideFlags: 0
......
......@@ -134,13 +134,13 @@ public class PlayFabGetLeaderboard : MonoBehaviour {
Color tmpColor = Color.magenta;
if ("red".Equals(color)) {
tmpColor = Color.red;
} else if ("Fekete".Equals(color)) {
} else if ("black".Equals(color)) {
tmpColor = Color.black;
} else if ("Fehér".Equals(color)) {
} else if ("white".Equals(color)) {
tmpColor = Color.white;
} else if ("Kék".Equals(color)) {
} else if ("blue".Equals(color)) {
tmpColor = Color.blue;
} else if ("Sárga".Equals(color)) {
} else if ("yellow".Equals(color)) {
tmpColor = Color.yellow;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment