Remove implementation-specific comment about Set3DPos

The comment referenced a proxy/camera-specific API detail that
doesn't apply to the general ONVIF RelativeMove implementation.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Ryan Gregg 2026-03-14 05:42:06 +00:00
parent 77cb7c137b
commit 190cc6054a

View File

@ -338,9 +338,6 @@ export default function LiveCameraView({
const zoom = 1 - Math.max(boxW, boxH); const zoom = 1 - Math.max(boxW, boxH);
const clampedZoom = Math.max(0, Math.min(1, zoom)); const clampedZoom = Math.max(0, Math.min(1, zoom));
// Send single command with pan, tilt, and zoom.
// The proxy translates this to a Set3DPos command for
// atomic pan+tilt+zoom in one camera movement.
sendPtz(`move_relative_${pan}_${tilt}_${clampedZoom}`); sendPtz(`move_relative_${pan}_${tilt}_${clampedZoom}`);
} }