From 8ed308bcdec4aa15b99b6a44656c91434e6b798a Mon Sep 17 00:00:00 2001 From: Terry Jia Date: Thu, 28 May 2026 01:34:43 -0400 Subject: [PATCH] feat: add camera intrinsics fields to Load3DCamera info (#14143) --- 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