crazyjul / creatures-genetics-toolbox

Haxe library to play with Creatures 3/DS genetics

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

creatures-genetics-toolbox

This haxe library allows reading and modifying of Creatures 3/DS/Exodus genome files.

Genome support

After loading a genome, you can access all the recognized genes. Genes are just container that point to the original byte array.

For the moment, the system is read-only and does not support modifications.

Usage

import creatures.Genome;


var genome = new Genome(file_content);

for(gene in genome.gene) {
    trace(gene.id);
}

About

Haxe library to play with Creatures 3/DS genetics

License:MIT License


Languages

Language:Haxe 100.0%