| | |
| | | typeof(Text), |
| | | typeof(Button), |
| | | typeof(Image), |
| | | typeof(Toggle), |
| | | //主工程相关 |
| | | typeof(Redpoint), |
| | | typeof(Int2), |
| | |
| | | if (ilBehaviourHolders.TryGetValue(name, out holder)) |
| | | { |
| | | if (holder.onDisable != null) |
| | | { |
| | | appDomain.Invoke(holder.onDisable, holder.instance); |
| | | } |
| | | } |
| | | } |
| | | } |
| | |
| | | }); |
| | | }); |
| | | |
| | | appdomain.DelegateManager.RegisterDelegateConvertor<UnityEngine.Events.UnityAction<bool>>((act) => |
| | | { |
| | | return new UnityEngine.Events.UnityAction<bool>((arg0) => |
| | | { |
| | | ((System.Action<bool>)act)(arg0); |
| | | }); |
| | | }); |
| | | |
| | | appdomain.DelegateManager.RegisterDelegateConvertor<UnityEngine.Events.UnityAction<float>>((act) => |
| | | { |
| | | return new UnityEngine.Events.UnityAction<float>((arg0) => |
| | | { |
| | | ((System.Action<float>)act)(arg0); |
| | | }); |
| | | }); |
| | | |
| | | appdomain.DelegateManager.RegisterDelegateConvertor<UnityEngine.Events.UnityAction<string>>((act) => |
| | | { |
| | | return new UnityEngine.Events.UnityAction<string>((arg0) => |
| | | { |
| | | ((System.Action<string>)act)(arg0); |
| | | }); |
| | | }); |
| | | } |
| | | |
| | | public void LaunchStart() |