Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/daanvanyperen/artemis-odb-contrib
Drop-in extensions for artemis-odb. Prefab systems, components, networking, events!
https://github.com/daanvanyperen/artemis-odb-contrib
artemis-odb artemis-odb-contrib framework gamedev gamedev-framework jam java
Last synced: about 1 month ago
JSON representation
Drop-in extensions for artemis-odb. Prefab systems, components, networking, events!
- Host: GitHub
- URL: https://github.com/daanvanyperen/artemis-odb-contrib
- Owner: DaanVanYperen
- License: mit
- Created: 2014-07-29T20:51:27.000Z (over 10 years ago)
- Default Branch: develop
- Last Pushed: 2021-07-21T13:05:45.000Z (over 3 years ago)
- Last Synced: 2024-11-08T19:18:01.855Z (about 1 month ago)
- Topics: artemis-odb, artemis-odb-contrib, framework, gamedev, gamedev-framework, jam, java
- Language: Java
- Homepage:
- Size: 837 KB
- Stars: 75
- Watchers: 13
- Forks: 19
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
artemis-odb-contrib
===================[![Build status](https://github.com/DaanVanYperen/artemis-odb-contrib/actions/workflows/javaCI.yml/badge.svg?label=Build)](https://github.com/DaanVanYperen/artemis-odb-contrib/actions/workflows/javaCI.yml)
[![Discord Chat](https://img.shields.io/discord/348229412858101762?logo=discord)](https://libgdx.com/community/discord/)
[![License](https://img.shields.io/badge/License-MIT-orange.svg)](https://opensource.org/licenses/MIT)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:
- [libgdx-artemis-quickstart](https://github.com/DaanVanYperen/libgdx-artemis-quickstart)
- [playn-artemis-quickstart](https://github.com/DaanVanYperen/playn-artemis-quickstart)### 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
```xml
net.mostlyoriginal.artemis-odb
contrib-core
2.4.0-SNAPSHOTnet.mostlyoriginal.artemis-odb
contrib-eventbus
2.4.0-SNAPSHOT```
#### Gradle
```groovy
dependencies {
compile "net.mostlyoriginal.artemis-odb:contrib-core:2.4.0-SNAPSHOT"
compile "net.mostlyoriginal.artemis-odb:contrib-eventbus:2.4.0-SNAPSHOT"
}
```