Skip to content

crazyjul/creatures-genetics-toolbox

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages