From 498ecd013581f154a44bf392dd3fdf46aab9e0c7 Mon Sep 17 00:00:00 2001 From: Terry Jia Date: Wed, 27 May 2026 14:29:43 -0400 Subject: [PATCH] feat: add camera intrinsics fields to Load3DCamera info --- comfy_api/latest/_io.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/comfy_api/latest/_io.py b/comfy_api/latest/_io.py index 5ed968960..e430c0ecf 100644 --- a/comfy_api/latest/_io.py +++ b/comfy_api/latest/_io.py @@ -766,6 +766,13 @@ class Load3DCamera(ComfyTypeIO): target: dict[str, float | int] zoom: int cameraType: str + quaternion: NotRequired[dict[str, float | int]] + rotation: NotRequired[dict[str, float | int | str]] + fov: NotRequired[float | int] + aspect: NotRequired[float | int] + near: NotRequired[float | int] + far: NotRequired[float | int] + frustum: NotRequired[dict[str, float | int]] Type = CameraInfo