Liberi
An exergame built for kids with CP!
RankPosition.cs
1 using UnityEngine;
2 using System.Collections;
3 using UnityEngine.UI;
4 
8 public class RankPosition : MonoBehaviour
9 {
10  public Vector3 TargetLocalPosition;
11  public float TargetLocalScale;
12 
13  int _isVisibleHash = Animator.StringToHash("IsVisible");
14 
15  public void Initialize (IRankable rankable)
16  {
17  AvatarSprite = rankable.GetAvatarSticker();
18  transform.FindChild("avatar_sticker").GetComponent<Image>().color = rankable.GetAvatarColor();
19  AvatarText = rankable.GetName();
20  ScoreSprite = rankable.GetScoreSticker();
21  ScoreText = rankable.GetScore().ToString();
22  transform.localScale = Vector3.one;
23  TargetLocalPosition = Vector3.zero;
24  }
25 
26  void Update ()
27  {
28  transform.localPosition = Vector3.Lerp(transform.localPosition, TargetLocalPosition, Time.deltaTime * 10);
29  transform.localScale = Vector3.one * TargetLocalScale;
30  }
31 
32  public Sprite AvatarSprite
33  {
34  get
35  {
36  return transform.FindChild("avatar_sticker").GetComponent<Image>().sprite;
37  }
38  set
39  {
40  transform.FindChild("avatar_sticker").GetComponent<Image>().sprite = value;
41  transform.FindChild("avatar_sticker").GetComponent<Image>().SetNativeSize();
42  }
43  }
44 
45  public string AvatarText
46  {
47  get
48  {
49  return transform.FindChild("avatar_name").GetComponent<Text>().text;
50  }
51  set
52  {
53  transform.FindChild("avatar_name").GetComponent<Text>().text = value;
54  }
55  }
56 
57  public Sprite ScoreSprite
58  {
59  get
60  {
61  return transform.FindChild("score_sticker").GetComponent<Image>().sprite;
62  }
63  set
64  {
65  transform.FindChild("score_sticker").GetComponent<Image>().sprite = value;
66  transform.FindChild("score_sticker").GetComponent<Image>().SetNativeSize();
67  }
68  }
69 
70  public string ScoreText
71  {
72  get
73  {
74  return transform.FindChild("score_text").GetComponent<Text>().text;
75  }
76  set
77  {
78  transform.FindChild("score_text").GetComponent<Text>().text = value;
79  }
80  }
81 
82  public bool Visible
83  {
84  get
85  {
86  return GetComponent<Animator>().GetBool(_isVisibleHash);
87  }
88  set
89  {
90  GetComponent<Animator>().SetBool(_isVisibleHash, value);
91  }
92  }
93 }
A collection of helpful methods and properties for dealing with RankPosition GUI Objects.
Definition: RankPosition.cs:8
Color GetAvatarColor()
Gets the color of the avatar.
Sprite GetScoreSticker()
Gets the sticker to use for the score multiple.
Sprite GetAvatarSticker()
Gets the avatar sticker to use on the rank object.
A rankable object. Include this on the view script of an Avatar and implement the methods to make the...
Definition: IRankable.cs:8
string GetName()
Gets the name to use for this rank.
int GetScore()
Gets the score with which to rank this player. Scores are sorted in descending order.