Example #1
0
        protected virtual void OnValidate()
        {
#if UNITY_EDITOR
            if (NeutronAuthority == null)
            {
                var neutronAuthorities = transform.root.GetComponentsInChildren <NeutronAuthority>().Where(x => x._root).ToArray();
                if (neutronAuthorities.Length > 0)
                {
                    var internAuthorities = transform.root.GetComponentsInChildren <NeutronAuthority>();
                    if (internAuthorities.Length > 1)
                    {
                        LogHelper.Error("Only one authority controller can exist when root mode is active.");
                    }
                    else
                    {
                        NeutronAuthority = neutronAuthorities[0];
                        if (NeutronAuthority != null && GetType().Name != "NeutronAuthority")
                        {
                            HandledBy(NeutronAuthority);
                        }
                    }
                }
                else
                {
                    NeutronAuthority = transform.GetComponent <NeutronAuthority>();
                    if (NeutronAuthority != null && GetType().Name != "NeutronAuthority")
                    {
                        HandledBy(NeutronAuthority);
                    }
                }
            }

            LoadOptions();
            if (_offlineMode)
            {
                _authority = AuthorityMode.None;
            }
#endif
        }
Example #2
0
 public void HandledBy(NeutronBehaviour neutronBehaviour)
 {
     _authority          = AuthorityMode.Handled;
     _authorityHandledBy = neutronBehaviour;
 }