スキル一覧に戻る
Nfemz

blockbench-pbr

by Nfemz

Factory automation mod for Hytale - from steam age to quantum tech

0🍴 1📅 2026年1月19日
GitHubで見るManusで実行

SKILL.md


name: blockbench-pbr description: Create and configure PBR (physically-based rendering) materials with multiple texture channels in Blockbench.

PBR Materials

Create and configure physically-based rendering materials with multiple texture channels for realistic rendering.

Usage

/blockbench-pbr <action> [args]

Actions:

  • create <name> - Create a new PBR material
  • configure <material> - Set material properties
  • channel <material> <channel> - Assign texture to channel
  • list - List all materials
  • export <material> - Export texture_set.json

Prerequisites

  • Blockbench must be running with the MCP plugin enabled
  • PBR materials plugin may be required depending on format

Steps

Creating PBR Materials

  1. Create material using mcp__blockbench__create_pbr_material:
    {
      "name": "metal_surface",
      "channels": ["color", "normal", "mer"]
    }
    
    • name: Material identifier
    • channels: Which PBR channels to enable

Configuring Materials

  1. Configure properties using mcp__blockbench__configure_material:
    {
      "material_uuid": "<uuid>",
      "metalness": 1.0,
      "roughness": 0.3,
      "emissive": 0.0,
      "subsurface_scattering": false
    }
    
    • metalness: 0.0 (dielectric) to 1.0 (metal)
    • roughness: 0.0 (smooth/shiny) to 1.0 (rough/matte)
    • emissive: Emission intensity
    • subsurface_scattering: Enable SSS for skin/wax/etc.

Assigning Texture Channels

  1. Assign texture using mcp__blockbench__assign_texture_channel:
    {
      "material_uuid": "<material-uuid>",
      "channel": "normal",
      "texture_uuid": "<texture-uuid>"
    }
    

Managing Materials

  1. List materials using mcp__blockbench__list_materials:

    • Returns all PBR materials in the project
    • Includes channel assignments
  2. Get material info using mcp__blockbench__get_material_info:

    • material_uuid: Material to inspect
    • Returns full configuration
    • Includes texture_set.json preview

Import/Export

  1. Import texture set using mcp__blockbench__import_texture_set:

    • path: Path to texture_set.json
    • Imports Bedrock/RTX format materials
  2. Save material config using mcp__blockbench__save_material_config:

    • material_uuid: Material to export
    • path: Output path
    • Exports texture_set.json format

PBR Channels

ChannelDescriptionFormat
colorBase color/albedoRGB
normalSurface normalsRGB (tangent space)
merMetalness/Emissive/RoughnessRGB packed
metalnessMetallic propertyGrayscale
roughnessSurface roughnessGrayscale
emissiveLight emissionRGB
heightmapDisplacement/parallaxGrayscale
aoAmbient occlusionGrayscale

MER Channel Packing

The MER texture packs three properties into RGB:

  • R: Metalness (0-255 maps to 0.0-1.0)
  • G: Emissive (0-255 maps to 0.0-1.0)
  • B: Roughness (0-255 maps to 0.0-1.0)

Common Material Presets

MaterialMetalnessRoughnessNotes
Metal1.00.3-0.5Reflective
Plastic0.00.4-0.6Slight sheen
Wood0.00.7-0.9Matte
Glass0.00.0-0.1Very smooth
Stone0.00.8-1.0Very rough
Skin0.00.5Enable SSS

Example Workflow

User: Create a metallic machine material

1. Create PBR material "machine_metal" with channels [color, normal, mer]
2. Configure: metalness 1.0, roughness 0.4
3. Create/assign color texture with base metal color
4. Create/assign normal texture for surface detail
5. Create MER texture:
   - R channel: 255 (full metalness)
   - G channel: 0 (no emission)
   - B channel: 102 (0.4 roughness)
6. Assign MER texture to mer channel
7. Export texture_set.json for Bedrock/RTX

Integration with Fabrica

For Hytale models, PBR is handled through shading modes:

  • Use fullbright shading for emissive surfaces
  • Use reflective shading for metallic surfaces
  • Standard PBR export is for Bedrock/RTX rendering

texture_set.json Format

{
  "format_version": "1.16.100",
  "minecraft:texture_set": {
    "color": "machine_color",
    "normal": "machine_normal",
    "metalness_emissive_roughness": "machine_mer"
  }
}

スコア

総合スコア

60/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です