C# 클래스 FairyGUI.EventDispatcher

파일 보기 프로젝트 열기: fairygui/FairyGUI-unity 1 사용 예제들

공개 메소드들

메소드 설명
AddEventListener ( string strType, EventCallback0 callback ) : void

AddEventListener ( string strType, EventCallback1 callback ) : void

BroadcastEvent ( string strType, object data ) : bool

BubbleEvent ( string strType, object data ) : bool

DispatchEvent ( EventContext context ) : bool

DispatchEvent ( string strType ) : bool

DispatchEvent ( string strType, object data ) : bool

DispatchEvent ( string strType, object data, object initiator ) : bool
EventDispatcher ( ) : System
RemoveEventListener ( string strType, EventCallback0 callback ) : void

RemoveEventListener ( string strType, EventCallback1 callback ) : void

RemoveEventListeners ( ) : void

RemoveEventListeners ( string strType ) : void

비공개 메소드들

메소드 설명
BubbleEvent ( string strType, object data, List addChain ) : bool

GetChainBridges ( string strType, List chain, bool bubble ) : void
GetChildEventBridges ( string strType, Container container, List bridges ) : void
GetChildEventBridges ( string strType, GComponent container, List bridges ) : void
GetEventBridge ( string strType ) : EventBridge
InternalDispatchEvent ( string strType, EventBridge bridge, object data, object initiator ) : bool
TryGetEventBridge ( string strType ) : EventBridge

메소드 상세

AddEventListener() 공개 메소드

public AddEventListener ( string strType, EventCallback0 callback ) : void
strType string
callback EventCallback0
리턴 void

AddEventListener() 공개 메소드

public AddEventListener ( string strType, EventCallback1 callback ) : void
strType string
callback EventCallback1
리턴 void

BroadcastEvent() 공개 메소드

public BroadcastEvent ( string strType, object data ) : bool
strType string
data object
리턴 bool

BubbleEvent() 공개 메소드

public BubbleEvent ( string strType, object data ) : bool
strType string
data object
리턴 bool

DispatchEvent() 공개 메소드

public DispatchEvent ( EventContext context ) : bool
context EventContext
리턴 bool

DispatchEvent() 공개 메소드

public DispatchEvent ( string strType ) : bool
strType string
리턴 bool

DispatchEvent() 공개 메소드

public DispatchEvent ( string strType, object data ) : bool
strType string
data object
리턴 bool

DispatchEvent() 공개 메소드

public DispatchEvent ( string strType, object data, object initiator ) : bool
strType string
data object
initiator object
리턴 bool

EventDispatcher() 공개 메소드

public EventDispatcher ( ) : System
리턴 System

RemoveEventListener() 공개 메소드

public RemoveEventListener ( string strType, EventCallback0 callback ) : void
strType string
callback EventCallback0
리턴 void

RemoveEventListener() 공개 메소드

public RemoveEventListener ( string strType, EventCallback1 callback ) : void
strType string
callback EventCallback1
리턴 void

RemoveEventListeners() 공개 메소드

public RemoveEventListeners ( ) : void
리턴 void

RemoveEventListeners() 공개 메소드

public RemoveEventListeners ( string strType ) : void
strType string
리턴 void