项目作者: DaanVanYperen

项目描述 :
Drop-in extensions for artemis-odb. Prefab systems, components, networking, events!
高级语言: Java
项目地址: git://github.com/DaanVanYperen/artemis-odb-contrib.git
创建时间: 2014-07-29T20:51:27Z
项目社区:https://github.com/DaanVanYperen/artemis-odb-contrib

开源协议:Other

下载


artemis-odb-contrib

Build status
Discord Chat
License

Drop-in extensions for artemis-odb. Event bus, scheduled operations, deferred systems, profiler, abstract and prefab
systems, components and networking. Well, eventually anyway.

When to use this

If you want to quickly prototype a game without getting bogged down by the
details of entity component systems, this package will help get you started.

I use this toolkit for jam games. You are welcome to use it for whatever you need!

Alternatively, if you want to properly set up artemis-odb + libgdx or playn
with all fancy features, check out these instead:

Library Versions

Artemis-odb 2.4.0-SNAPSHOT, (Optional) LibGDX 1.9.14.

License

This work is licensed under MIT License except some small snippets from LibGDX are
licensed under Apache 2.0. Apache 2.0 license can be found under contrib-core\LICENSE.libgdx.

SPDX-License-Identifier: MIT AND Apache-2.0

Download

Maven

  1. <dependency>
  2. <groupId>net.mostlyoriginal.artemis-odb</groupId>
  3. <artifactId>contrib-core</artifactId>
  4. <version>2.4.0-SNAPSHOT</version>
  5. </dependency>
  6. <dependency>
  7. <groupId>net.mostlyoriginal.artemis-odb</groupId>
  8. <artifactId>contrib-eventbus</artifactId>
  9. <version>2.4.0-SNAPSHOT</version>
  10. </dependency>

Gradle

  1. dependencies {
  2. compile "net.mostlyoriginal.artemis-odb:contrib-core:2.4.0-SNAPSHOT"
  3. compile "net.mostlyoriginal.artemis-odb:contrib-eventbus:2.4.0-SNAPSHOT"
  4. }