UNPKG

@minecraft/creator-tools

Version:

Minecraft Creator Tools command line and libraries.

27 lines (26 loc) 770 B
"use strict"; // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. Object.defineProperty(exports, "__esModule", { value: true }); exports.TransparentBlockTrait = void 0; const ContentTraits_1 = require("./ContentTraits"); /** * Transparent - allows light through. */ class TransparentBlockTrait extends ContentTraits_1.BlockContentTrait { get id() { return "transparent"; } getData(_config) { return { id: "transparent", displayName: "Transparent", description: "Allows light through", category: "special", components: { "minecraft:light_dampening": 0, }, }; } } exports.TransparentBlockTrait = TransparentBlockTrait;