当前位置: 首页>>代码示例>>Java>>正文


Java Aspect.getAspectForAll方法代码示例

本文整理汇总了Java中com.artemis.Aspect.getAspectForAll方法的典型用法代码示例。如果您正苦于以下问题:Java Aspect.getAspectForAll方法的具体用法?Java Aspect.getAspectForAll怎么用?Java Aspect.getAspectForAll使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.artemis.Aspect的用法示例。


在下文中一共展示了Aspect.getAspectForAll方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: MovementSystem

import com.artemis.Aspect; //导入方法依赖的package包/类
public MovementSystem () {
	super(Aspect.getAspectForAll(PositionComponent.class, MovementComponent.class));
}
 
开发者ID:DevelopersGuild,项目名称:Planetbase,代码行数:4,代码来源:MovementSystem.java

示例2: CollisionSystem

import com.artemis.Aspect; //导入方法依赖的package包/类
public CollisionSystem () {
	super(Aspect.getAspectForAll(PositionComponent.class, RadiusComponent.class));
}
 
开发者ID:DevelopersGuild,项目名称:Planetbase,代码行数:4,代码来源:CollisionSystem.java

示例3: RemovalSystem

import com.artemis.Aspect; //导入方法依赖的package包/类
public RemovalSystem () {
	super(Aspect.getAspectForAll(RemovalComponent.class));
}
 
开发者ID:DevelopersGuild,项目名称:Planetbase,代码行数:4,代码来源:RemovalSystem.java

示例4: StateSystem

import com.artemis.Aspect; //导入方法依赖的package包/类
public StateSystem () {
	super(Aspect.getAspectForAll(StateComponent.class));
}
 
开发者ID:DevelopersGuild,项目名称:Planetbase,代码行数:4,代码来源:StateSystem.java

示例5: SelectableSystem

import com.artemis.Aspect; //导入方法依赖的package包/类
public SelectableSystem() {
    super(Aspect.getAspectForAll(Selectable.class, Position.class, Animation.class));
}
 
开发者ID:DaanVanYperen,项目名称:tox,代码行数:4,代码来源:SelectableSystem.java

示例6: PhysicsSystem

import com.artemis.Aspect; //导入方法依赖的package包/类
public PhysicsSystem()
{
    super(Aspect.getAspectForAll(Physics.class, Position.class));
}
 
开发者ID:DaanVanYperen,项目名称:tox,代码行数:5,代码来源:PhysicsSystem.java

示例7: DraggableSystem

import com.artemis.Aspect; //导入方法依赖的package包/类
@SuppressWarnings("unchecked")
public DraggableSystem() {
	super(Aspect.getAspectForAll(Pos.class, Clickable.class, Draggable.class));
}
 
开发者ID:DaanVanYperen,项目名称:ns2-scc-profiler,代码行数:5,代码来源:DraggableSystem.java

示例8: PersistHandlerSystem

import com.artemis.Aspect; //导入方法依赖的package包/类
@SuppressWarnings("unchecked")
public PersistHandlerSystem() {
	super(Aspect.getAspectForAll(Persistable.class));
}
 
开发者ID:DaanVanYperen,项目名称:ns2-scc-profiler,代码行数:5,代码来源:PersistHandlerSystem.java

示例9: SettingSystem

import com.artemis.Aspect; //导入方法依赖的package包/类
public SettingSystem() {
    super(Aspect.getAspectForAll(Setting.class, Selectable.class));
}
 
开发者ID:DaanVanYperen,项目名称:tox,代码行数:4,代码来源:SettingSystem.java

示例10: AnimationRenderSystem

import com.artemis.Aspect; //导入方法依赖的package包/类
public AnimationRenderSystem(OrthographicCamera camera) {
    super(Aspect.getAspectForAll(Position.class, Animation.class));
    this.camera = camera;
}
 
开发者ID:DaanVanYperen,项目名称:tox,代码行数:5,代码来源:AnimationRenderSystem.java

示例11: BacktrackSystem

import com.artemis.Aspect; //导入方法依赖的package包/类
public BacktrackSystem() {
    super(Aspect.getAspectForAll(Position.class, Selectable.class, Cleared.class));
}
 
开发者ID:DaanVanYperen,项目名称:tox,代码行数:4,代码来源:BacktrackSystem.java

示例12: LootSystem

import com.artemis.Aspect; //导入方法依赖的package包/类
public LootSystem() {
    super(Aspect.getAspectForAll(Position.class, Selectable.class, Lootable.class));
}
 
开发者ID:DaanVanYperen,项目名称:tox,代码行数:4,代码来源:LootSystem.java

示例13: BulletSystem

import com.artemis.Aspect; //导入方法依赖的package包/类
public BulletSystem() {
    super(Aspect.getAspectForAll(Bullet.class, Position.class, Physics.class));
}
 
开发者ID:DaanVanYperen,项目名称:tox,代码行数:4,代码来源:BulletSystem.java

示例14: RefreshHandlerSystem

import com.artemis.Aspect; //导入方法依赖的package包/类
@SuppressWarnings("unchecked")
public RefreshHandlerSystem() {
	super(Aspect.getAspectForAll(Transient.class));
}
 
开发者ID:DaanVanYperen,项目名称:ns2-scc-profiler,代码行数:5,代码来源:RefreshHandlerSystem.java

示例15: ToolSystem

import com.artemis.Aspect; //导入方法依赖的package包/类
@SuppressWarnings("unchecked")
public ToolSystem() {
	super(Aspect.getAspectForAll(Tool.class,Pos.class, Anim.class));
}
 
开发者ID:DaanVanYperen,项目名称:ns2-scc-profiler,代码行数:5,代码来源:ToolSystem.java


注:本文中的com.artemis.Aspect.getAspectForAll方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。