All Projects → loherangrin → o3tanks

loherangrin / o3tanks

Licence: Apache-2.0 license
A command-line interface tool to build and run O3DE (Open 3D Engine) in containers

Programming Languages

python
139335 projects - #7 most used programming language
shell
77523 projects
Batchfile
5799 projects

Projects that are alternatives of or similar to o3tanks

Flaxengine
Flax Engine – multi-platform 3D game engine
Stars: ✭ 3,127 (+16357.89%)
Mutual labels:  gamedev
Mesh Cutter
Simple mesh cutting algorithm that works on simple 3d manifold objects with genus 0
Stars: ✭ 237 (+1147.37%)
Mutual labels:  gamedev
Gdevelop
🎮 GDevelop is an open-source, cross-platform game engine designed to be used by everyone.
Stars: ✭ 3,221 (+16852.63%)
Mutual labels:  gamedev
Ogsr Engine
OGSR Project - Evolution of X-Ray Engine for S.T.A.L.K.E.R.: Shadow of Chernobyl
Stars: ✭ 213 (+1021.05%)
Mutual labels:  gamedev
Behaviortree.js
An JavaScript implementation of Behavior Trees.
Stars: ✭ 228 (+1100%)
Mutual labels:  gamedev
Luascript
Lua language support for Godot Engine
Stars: ✭ 240 (+1163.16%)
Mutual labels:  gamedev
P2.js
JavaScript 2D physics library
Stars: ✭ 2,367 (+12357.89%)
Mutual labels:  gamedev
wfc
Go port of the Wave Function Collapse algorithm
Stars: ✭ 47 (+147.37%)
Mutual labels:  gamedev
Entitas Cpp
Entitas++ is a fast Entity Component System (ECS) C++11 port of Entitas C#
Stars: ✭ 229 (+1105.26%)
Mutual labels:  gamedev
Panda3d
Powerful, mature open-source cross-platform game engine for Python and C++, developed by Disney and CMU
Stars: ✭ 3,035 (+15873.68%)
Mutual labels:  gamedev
Awesome Haxe Gamedev
Resources for game development on haxe
Stars: ✭ 213 (+1021.05%)
Mutual labels:  gamedev
Egregoria
Contemplative society simulation
Stars: ✭ 219 (+1052.63%)
Mutual labels:  gamedev
Cradle
Play Twine stories in Unity.
Stars: ✭ 242 (+1173.68%)
Mutual labels:  gamedev
Esenthelengine
Full Source of Esenthel Engine and its Tools
Stars: ✭ 204 (+973.68%)
Mutual labels:  gamedev
Dome
A lightweight game development environment where games can be written in Wren
Stars: ✭ 251 (+1221.05%)
Mutual labels:  gamedev
Enet
⚡️ ENet reliable UDP networking library
Stars: ✭ 202 (+963.16%)
Mutual labels:  gamedev
Kira
Library for expressive game audio.
Stars: ✭ 237 (+1147.37%)
Mutual labels:  gamedev
Unity-Visual-Behavior-Tree
Reactive Visual Scripting Behavior Tree Tool for Unity 2018.x+
Stars: ✭ 36 (+89.47%)
Mutual labels:  gamedev
Awesome Gbdev
Contribute
Stars: ✭ 3,016 (+15773.68%)
Mutual labels:  gamedev
Tic 80
TIC-80 is a fantasy computer for making, playing and sharing tiny games.
Stars: ✭ 3,176 (+16615.79%)
Mutual labels:  gamedev

O3TANKS

O3Tanks Logo

O3Tanks is a version manager for O3DE (Open 3D Engine) to handle multiple engine installations. It relies on containers to reduce dependencies on the host machine, easing the creation of portable development environments or the addition into CI/CD pipelines.

Features:

  • Download, build and install engine versions from any Git repository (official or forks).
  • Check for engine updates and apply them automatically (if any).
  • Bind a project to a specific engine version.
  • Build, edit and run a project using its bound engine version.
  • Export a project as an archive (zip, tar.gz) or a container image.
  • Switch the engine usage between isolated containers and the host machine at anytime.

A visual summary of all supported commands and how they interact with each other is available at:

Install

Differences between two modes are available in the Overview page.

  1. Verify you meet the following requirements, according to the preferred mode:

    • Containerized mode (Linux only)

      • Docker Engine 19.03 (or greater), both root and rootless mode are supported. See official documentation for installation details.
      • NVIDIA Container Toolkit, if using a NVIDIA GPU with proprietary drivers. See official documentation for installation details.
    • Native mode (Linux, MacOS, Windows)

      • Python 3.8 (or greater).
      • pygit2 1.6.1 (or greater).
      • O3DE prerequisites for building from source (see details at Linux or Windows pages in the official documentation).
  2. Clone this repository into a directory of your choice.

  3. (Optional) Register o3tanks globally to be called from any location:

    • on Linux or MacOS, create a symbolic link to the main shell script:
      sudo ln -s <YOUR_O3TANKS_DIR>/o3tanks.sh /usr/local/bin/o3tanks
      
    • on Windows, add the installation directory to PATH in your System > Environment Variables.

Quick Start

More detailed instructions are available in the Get Started page.

Install the latest engine version from the official repository:

o3tanks install engine --branch development

Initialize a new empty project:

mkdir my_project
cd my_project
o3tanks init project --as MyProject --engine development

Open the editor to develop the project:

o3tanks open editor

Build and run an instance of the project:

o3tanks build client
o3tanks run client

Export the project (binary + assets) to a runnable archive:

o3tanks export client

See which engine version the project is using:

o3tanks settings engine

Keep the engine installation up-to-date:

o3tanks refresh engine development
o3tanks upgrade engine development

Display a description of available commands and options:

o3tanks help
o3tanks help <command>

Please refer to the main documentation for more complex scenarios, such as:

  • installing the engine from your personal fork;
  • managing the project gems (modules) to add / remove new custom features in the engine;
  • creating a new empty gem to extend the engine and publishing it on your repository;
  • ...and much more.

Update

After the first installation, O3Tanks is able to update itself downloading the latest files from the repository where it was installed from:

o3tanks refresh self
o3tanks upgrade self

Contribute

We are happy to receive your feeback! Please open an issue in our tracker if you would like to propose a new feature or you have encountered any error.

To get involved in the development of O3Tanks, please refer to our contribution guidelines.

License

O3Tanks is licensed under the Apache License, version 2.0. Please see LICENSE and NOTICE files for further details.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].