コード例 #1
0
 protected UpdateableSystemBase(Selector selector) : base(selector)
 {
     tUpdate = ComponentTypeManager.GetType <UpdateComponent>();
 }
コード例 #2
0
ファイル: BloomComponent.cs プロジェクト: OkashiKami/Odyssey
 public BloomComponent() : base(ComponentTypeManager.GetType <BloomComponent>())
 {
 }
コード例 #3
0
ファイル: GlowComponent.cs プロジェクト: OkashiKami/Odyssey
 public GlowComponent()
     : base(ComponentTypeManager.GetType <GlowComponent>())
 {
 }
コード例 #4
0
 public UserInterfaceSystem()
     : base(Selector.All(typeof(UserInterfaceComponent)))
 {
     tUserInterface = ComponentTypeManager.GetType <UserInterfaceComponent>();
 }
コード例 #5
0
 public ControllerComponent() : base(ComponentTypeManager.GetType <ControllerComponent>())
 {
 }
コード例 #6
0
 public OptimizationSystem() : base(Selector.All(typeof(ModelComponent), typeof(ShaderComponent)))
 {
     tShader      = ComponentTypeManager.GetType <ShaderComponent>();
     tModel       = ComponentTypeManager.GetType <ModelComponent>();
     renderMapper = new RenderMapper();
 }