Stats
Actions
Tags
From pysbs-dev
batchtools.sbsbaker Python API. Use when baking normal maps, AO, curvature, height, or other maps from mesh files (OBJ, FBX).
How this skill is triggered — by the user, by Claude, or both
Slash command
/pysbs-dev:api-bakerThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
sbsbaker Python API - 메시 → 텍스처 베이킹.
sbsbaker Python API - 메시 → 텍스처 베이킹.
| Function | Description |
|---|---|
sbsbaker_normal_from_mesh() | 노멀 맵 베이킹 |
sbsbaker_ambient_occlusion_from_mesh() | AO 베이킹 |
sbsbaker_curvature_from_mesh() | Curvature 베이킹 |
sbsbaker_height_from_mesh() | Height 맵 베이킹 |
sbsbaker_position_from_mesh() | Position 맵 베이킹 |
sbsbaker_thickness_from_mesh() | Thickness 베이킹 |
노멀 맵 베이킹:
from pysbs import batchtools
popen = batchtools.sbsbaker_normal_from_mesh(
inputs='/path/to/lowpoly.obj',
highdef_mesh='/path/to/highpoly.obj',
output_path='/path/to/maps/',
output_name='normal_map',
output_size=[2048, 2048]
)
popen.wait()
AO 베이킹:
popen = batchtools.sbsbaker_ambient_occlusion_from_mesh(
inputs='/path/to/mesh.obj',
output_path='/path/to/maps/',
output_size=[2048, 2048]
)
popen.wait()
메시 정보 조회:
materials, entities, uv_sets = batchtools.sbsbaker_info_get_mesh_info(
'/path/to/mesh.obj'
)
npx claudepluginhub juyeongyi/jylee_claude_marketplace --plugin pysbs-devCreates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.