12 [Script(ScriptRole.View)]
15 const int SPRITE_LAYER_MULT = 10;
18 static int _botFauxIndex = 100;
24 foreach (SpriteRenderer sr
in GetComponentsInChildren<SpriteRenderer>())
25 sr.sortingLayerName =
"LocalAvatar";
27 foreach (ParticleSystem ps in GetComponentsInChildren<ParticleSystem>())
28 ps.renderer.sortingLayerName =
"LocalAvatar";
36 peerIndex = _botFauxIndex;
40 foreach (SpriteRenderer sr
in GetComponentsInChildren<SpriteRenderer>())
41 sr.sortingOrder += peerIndex * SPRITE_LAYER_MULT;
43 foreach (ParticleSystem ps
in GetComponentsInChildren<ParticleSystem>())
44 ps.renderer.sortingOrder += peerIndex * SPRITE_LAYER_MULT;
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.
static int GetOwner(GameObject go)
Gets the owner peer index of a given object.
This class server two main functions: 1) As a MonoBehaviour, it allows for network synchronization of...