(2 intermediate revisions by one other user not shown)
Line 20:
Line 20:
== Sync Delegates ==
== Sync Delegates ==
{{Table ComponentTriggers
{{Table ComponentTriggers
|OnCancelPressed(IButton, ButtonEventData)|[[Type:Delegate|Delegate]]<[[Type:IButton|IButton]]: button, [[Type:ButtonEventData|ButtonEventData]]: eventData> -> [[Type:Void|Void]] : HIDDEN METHOD| Closes the UI and doesn't attach anything.
|OnCancelPressed:[[Type:ButtonEventHandler|ButtonEventHandler]]|[[Type:ButtonEventHandler|ButtonEventHandler]]|true| Closes the UI and doesn't attach anything.
|OnOpenCategoryPressed(IButton, ButtonEventData, string)|[[Type:Delegate|Delegate]]<[[Type:IButton|IButton]]: button, [[Type:ButtonEventData|ButtonEventData]]: eventData, [[Type:String|String]]: path> -> [[Type:Void|Void]] : HIDDEN METHOD| Opens a category of the path argument given.
|OnOpenCategoryPressed:[[Type:ButtonEventHandler`1|ButtonEventHandler`1]]<[[Type:String|String]]>|[[Type:ButtonEventHandler`1|ButtonEventHandler`1]]<[[Type:String|String]]>|true| Opens a category of the path argument given.
|OpenGenericTypesPressed:[[Type:ButtonEventHandler`1|ButtonEventHandler`1]]<[[Type:String|String]]>|[[Type:ButtonEventHandler`1|ButtonEventHandler`1]]<[[Type:String|String]]>|true| Handles loading the menu for selecting a generic argument screen for a component that has a generic argument like <T>, <A>, or <S> to name a few.
|OpenGroupPressed:[[Type:ButtonEventHandler`1|ButtonEventHandler`1]]<[[Type:String|String]]>|[[Type:ButtonEventHandler`1|ButtonEventHandler`1]]<[[Type:String|String]]>|true| Handles bringing up the menu for opening a group of components of the same type (purple buttons).
|OnAddComponentPressed(IButton, ButtonEventData, string)|[[Type:Delegate|Delegate]]<[[Type:IButton|IButton]]: button, [[Type:ButtonEventData|ButtonEventData]]: eventData, [[Type:String|String]]: typename> -> [[Type:Void|Void]] : HIDDEN METHOD| Triggers when a component is addrd.
|OnAddComponentPressed:[[Type:ButtonEventHandler`1|ButtonEventHandler`1]]<[[Type:String|String]]>|[[Type:ButtonEventHandler`1|ButtonEventHandler`1]]<[[Type:String|String]]>|true| Triggers when a component is addrd.
|OnCreateCustomType(IButton, ButtonEventData)|[[Type:Delegate|Delegate]]<[[Type:IButton|IButton]]: button, [[Type:ButtonEventData|ButtonEventData]]: eventData> -> [[Type:Void|Void]] : HIDDEN METHOD| Triggers when a component is made via the attacher with a generic type that isn't in the list of preselected generics.
|OnCreateCustomType:[[Type:ButtonEventHandler|ButtonEventHandler]]|[[Type:ButtonEventHandler|ButtonEventHandler]]|true| Triggers when a component is made via the attacher with a generic type that isn't in the list of preselected generics.