Exemplo n.º 1
0
 private void RegMono()
 {
     MonoDllFactory.Register <CamSetting>("cameraSetting");
     MonoDllFactory.Register <CustomData>("customData");
     MonoDllFactory.Register <EventArea>("eventArea");
     MonoDllFactory.Register <LightmapBake>("lightmapBake");
     MonoDllFactory.Register <LocationData>("locationData");
     MonoDllFactory.Register <Navigator>("navigator");
     MonoDllFactory.Register <PathWayPoint>("pathwaypoint");
 }
Exemplo n.º 2
0
        public static void Register()
        {
            IEnumerable <Assembly> assembles = UnityEditorReflectionTool.GetCustomAssembles().ToArray();

            foreach (var a in assembles)
            {
                Type[]             ts    = a.GetTypes();
                IEnumerable <Type> types =
                    ts.Where(t => t.IsClass && !t.IsAbstract && t.IsSubclassOf(typeof(MonoBehaviour)));
                foreach (var t in types)
                {
                    object[] attributes = t.GetCustomAttributes(typeof(MonoDllAttribute), false);
                    if (attributes.Length == 0)
                    {
                        continue;
                    }
                    MonoDllAttribute att = attributes[0] as MonoDllAttribute;
                    if (att != null)
                    {
                        MonoDllFactory.Register(att.name, t);
                    }
                }
            }
        }