Original textures designed for voxel games, freely released for any use.
While the textures can be used standalone or for other purposes, a Node.js script is included to bundle up zip archives into packs compatible with Minecraft and other games. The following formats are supported:
- ResourcePack: for MC 1.9, 1.8, 1.7, 1.6, paths begin with
assets
- TexturePacks: for MC 1.5, similar but without assets prefix and different filenames
- StitchPack: for MC 1.4 and earlier, pre-stitched texture atlases
ProgrammerArt is available to download from:
- GitHub tagged releases
- Curse client
- Dropbox
- NodeJS Package Manager (NPM), for easily using with using with voxeljs, example:
var texturePath = require('programmerart-textures')('');
var createGame = require('voxel-engine');
var game = createGame({
texturePath: texturePath,
materials: [
['blocks/grass_top', 'blocks/dirt', 'blocks/grass_side'],
'blocks/stone',
'blocks/dirt']
});
(alternatively, the artpacks module can load ResourcePack zips directly)
ProgrammerArt also has a thread on Minecraft Forums.