Esempio n. 1
0
 protected UpdateableSystemBase(Selector selector) : base(selector)
 {
     tUpdate = ComponentTypeManager.GetType <UpdateComponent>();
 }
Esempio n. 2
0
 public BloomComponent() : base(ComponentTypeManager.GetType <BloomComponent>())
 {
 }
Esempio n. 3
0
 public GlowComponent()
     : base(ComponentTypeManager.GetType <GlowComponent>())
 {
 }
Esempio n. 4
0
 public UserInterfaceSystem()
     : base(Selector.All(typeof(UserInterfaceComponent)))
 {
     tUserInterface = ComponentTypeManager.GetType <UserInterfaceComponent>();
 }
Esempio n. 5
0
 public ControllerComponent() : base(ComponentTypeManager.GetType <ControllerComponent>())
 {
 }
Esempio n. 6
0
 public OptimizationSystem() : base(Selector.All(typeof(ModelComponent), typeof(ShaderComponent)))
 {
     tShader      = ComponentTypeManager.GetType <ShaderComponent>();
     tModel       = ComponentTypeManager.GetType <ModelComponent>();
     renderMapper = new RenderMapper();
 }