コード例 #1
0
 public void RemoveComponent(Type componentType)
 {
     RemoveComponent(GKState.GetClass(componentType, "componentType"));
 }
コード例 #2
0
 public GKComponent GetComponent(Type componentType)
 {
     return(GetComponent(GKState.GetClass(componentType, "componentType")));
 }
コード例 #3
0
 public virtual bool EnterState(GKState state)
 {
     return(EnterState(GKState.GetClass(state, "state")));
 }
コード例 #4
0
 public bool CanEnterState(GKState state)
 {
     return(CanEnterState(GKState.GetClass(state, "state")));
 }
コード例 #5
0
 public GKState GetState(GKState state)
 {
     return(GetState(GKState.GetClass(state, "state")));
 }
コード例 #6
0
 public GKState GetState(Type stateType)
 {
     return(GetState(GKState.GetClass(stateType, "stateType")));
 }
コード例 #7
0
 public GKComponentSystem()
     : this(GKState.GetClass(typeof(TComponent), "componentType"))
 {
 }