private void FindDependencies()
 {
     if (m_light == null)
     {
         m_light = RenderSettings.sun;
     }
     if (m_boundsProvider == null)
     {
         m_boundsProvider = GetComponentInChildren <BoundsProvider>();
     }
 }
Exemple #2
0
 public ClientLinkable(int id, BoundsProvider boundsProvider)
 {
     _id = id; 
     _boundsProvider = boundsProvider;
 }
Exemple #3
0
 public ClientClusterable(int id, BoundsProvider boundsProvider)
     : base(id, boundsProvider)
 {
 }
Exemple #4
0
 public ClientLinkable(int id, BoundsProvider boundsProvider)
 {
     _id             = id;
     _boundsProvider = boundsProvider;
 }
Exemple #5
0
 public ClientCluster(int id, BoundsProvider boundsProvider) :
     base(id, boundsProvider)
 {
 }