Liberi
An exergame built for kids with CP!
AutoSpriteSorting.cs
1 using UnityEngine;
2 using System.Collections;
3 
12 [Script(ScriptRole.View)]
13 public class AutoSpriteSorting : MonoBehaviour
14 {
15  const int SPRITE_LAYER_MULT = 10;
16 
17  // Because bots always have a peerIndex of 0, assign a fake, unique index and increase the static value so bots don't overlap one-another
18  static int _botFauxIndex = 100;
19 
20  void OnSpawn ()
21  {
22  if (Sync.IsLocal(gameObject))
23  {
24  foreach (SpriteRenderer sr in GetComponentsInChildren<SpriteRenderer>())
25  sr.sortingLayerName = "LocalAvatar";
26 
27  foreach (ParticleSystem ps in GetComponentsInChildren<ParticleSystem>())
28  ps.renderer.sortingLayerName = "LocalAvatar";
29  }
30  else
31  {
32  int peerIndex = Sync.GetOwner(this);
33 
34  if (peerIndex == 0)
35  {
36  peerIndex = _botFauxIndex;
37  _botFauxIndex ++;
38  }
39 
40  foreach (SpriteRenderer sr in GetComponentsInChildren<SpriteRenderer>())
41  sr.sortingOrder += peerIndex * SPRITE_LAYER_MULT;
42 
43  foreach (ParticleSystem ps in GetComponentsInChildren<ParticleSystem>())
44  ps.renderer.sortingOrder += peerIndex * SPRITE_LAYER_MULT;
45  }
46 
47  }
48 }
Automatically sorts sprites and particle effect on this object to render in a nice order...
static bool IsLocal(GameObject go)
Gets whether or not the given object is owned by the local peer.
Definition: Sync.Static.cs:290
static int GetOwner(GameObject go)
Gets the owner peer index of a given object.
Definition: Sync.Static.cs:263
This class server two main functions: 1) As a MonoBehaviour, it allows for network synchronization of...
Definition: Sync.cs:13