Skip to content

A project that helps converting heightmaps and synthesized chip data to Minecraft. The goal is to make the micro world macro.

Notifications You must be signed in to change notification settings

DaanV2/ChipToMinecraft.Net

Repository files navigation

Chip To Minecraft.Net

Block pallete

read here

API Usage

//Load
Project.Project Data = Chip.Project.ProjectLoader.Load(ProjectFilepath);

Data.Process();

Manually manipulation

using Chip.Minecraft;

//Opens the world
var World = WorldFactory.Open(Folder, Options);

var area = new Box(0, 0, 0, 25, 25, 25);

//For each subchunk in the area
World.ForEach((sc) => { ... }, area);

World.Fill(Box, BlockFactory.Blocks.Air);
World.Fill(Box, new Block("minecraft:iron_block"));

About

A project that helps converting heightmaps and synthesized chip data to Minecraft. The goal is to make the micro world macro.

Topics

Resources

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages