@minecraft/creator-tools
Version:
Minecraft Creator Tools command line and libraries.
29 lines (28 loc) • 1.61 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PaintingSize = exports.ImageOutputType = exports.ImageItemType = void 0;
var ImageItemType;
(function (ImageItemType) {
ImageItemType[ImageItemType["pixelSet"] = 0] = "pixelSet";
ImageItemType[ImageItemType["line"] = 1] = "line";
ImageItemType[ImageItemType["rectangle"] = 2] = "rectangle";
ImageItemType[ImageItemType["circle"] = 3] = "circle";
ImageItemType[ImageItemType["triangle"] = 4] = "triangle";
ImageItemType[ImageItemType["text"] = 5] = "text";
ImageItemType[ImageItemType["image"] = 6] = "image";
})(ImageItemType || (exports.ImageItemType = ImageItemType = {}));
var ImageOutputType;
(function (ImageOutputType) {
ImageOutputType[ImageOutputType["blockTexture"] = 1] = "blockTexture";
ImageOutputType[ImageOutputType["itemTexture"] = 2] = "itemTexture";
ImageOutputType[ImageOutputType["painting"] = 3] = "painting";
ImageOutputType[ImageOutputType["blockBillboard3x3"] = 11] = "blockBillboard3x3";
ImageOutputType[ImageOutputType["blockBillboard4x6"] = 12] = "blockBillboard4x6";
ImageOutputType[ImageOutputType["blockBillboard5x8"] = 13] = "blockBillboard5x8";
})(ImageOutputType || (exports.ImageOutputType = ImageOutputType = {}));
var PaintingSize;
(function (PaintingSize) {
PaintingSize[PaintingSize["oneBlock"] = 1] = "oneBlock";
PaintingSize[PaintingSize["threeByThree"] = 3] = "threeByThree";
PaintingSize[PaintingSize["threeByFourPortrait"] = 4] = "threeByFourPortrait";
})(PaintingSize || (exports.PaintingSize = PaintingSize = {}));