MCPcopy Create free account
hub / github.com/BeingBeyond/BeTTER / _requested_camera_names

Function _requested_camera_names

tools/render/render_episode.py:698–706  ·  view source on GitHub ↗
(args: argparse.Namespace)

Source from the content-addressed store, hash-verified

696
697
698def _requested_camera_names(args: argparse.Namespace) -> list[str]:
699 names: list[str] = []
700 for item in args.cameras:
701 names.extend(part for part in str(item).split(",") if part)
702 if not names:
703 return ["front_camera"]
704 if "all" in names:
705 return list(FIXED_CAMERA_PRESET_NAMES)
706 return names
707
708
709def _build_no_ghosting_extra_args() -> list[str]:

Callers 2

_preflight_argsFunction · 0.85
_selected_camera_specsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected