10 public Vector3 TargetLocalPosition;
11 public float TargetLocalScale;
13 int _isVisibleHash = Animator.StringToHash(
"IsVisible");
15 public void Initialize (
IRankable rankable)
18 transform.FindChild(
"avatar_sticker").GetComponent<Image>().color = rankable.
GetAvatarColor();
19 AvatarText = rankable.
GetName();
21 ScoreText = rankable.
GetScore().ToString();
22 transform.localScale = Vector3.one;
23 TargetLocalPosition = Vector3.zero;
28 transform.localPosition = Vector3.Lerp(transform.localPosition, TargetLocalPosition, Time.deltaTime * 10);
29 transform.localScale = Vector3.one * TargetLocalScale;
32 public Sprite AvatarSprite
36 return transform.FindChild(
"avatar_sticker").GetComponent<Image>().sprite;
40 transform.FindChild(
"avatar_sticker").GetComponent<Image>().sprite = value;
41 transform.FindChild(
"avatar_sticker").GetComponent<Image>().SetNativeSize();
45 public string AvatarText
49 return transform.FindChild(
"avatar_name").GetComponent<Text>().text;
53 transform.FindChild(
"avatar_name").GetComponent<Text>().text = value;
57 public Sprite ScoreSprite
61 return transform.FindChild(
"score_sticker").GetComponent<Image>().sprite;
65 transform.FindChild(
"score_sticker").GetComponent<Image>().sprite = value;
66 transform.FindChild(
"score_sticker").GetComponent<Image>().SetNativeSize();
70 public string ScoreText
74 return transform.FindChild(
"score_text").GetComponent<Text>().text;
78 transform.FindChild(
"score_text").GetComponent<Text>().text = value;
86 return GetComponent<Animator>().GetBool(_isVisibleHash);
90 GetComponent<Animator>().SetBool(_isVisibleHash, value);
A collection of helpful methods and properties for dealing with RankPosition GUI Objects.
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...
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.