Fast Ref API / API Reference / Query

get_abc_default_options()

마크다운 다운로드

현재 Alembic 기본 프리셋의 옵션 키와 값을 dict로 반환합니다.

시그니처

api.get_abc_default_options() -> dict

반환값

{
    "preset_name": str,   # e.g. "Unreal_UE5"
    "options": dict,      # Alembic option key/value map
}

예제

from os_fast_ref.api import FastRefAPI

api = FastRefAPI()
defaults = api.get_abc_default_options()
print(f"Default preset: {defaults['preset_name']}")
for key, val in defaults['options'].items():
    print(f"  {key}: {val}")

# Copy then modify
opts = defaults["options"].copy()
opts["ExportMeshes"] = True
opts["ExportBones"] = False
api.export_abc(slot=0, output_path=r"J:\output\char.abc", abc_options=opts)

💬

Need help with the API?

Open a support ticket or join the community discussion.

문의하기