diff --git a/source/blender/io/usd/hydra/camera_delegate.cc b/source/blender/io/usd/hydra/camera_delegate.cc index bb000debe9a..de4396d9cba 100644 --- a/source/blender/io/usd/hydra/camera_delegate.cc +++ b/source/blender/io/usd/hydra/camera_delegate.cc @@ -21,6 +21,8 @@ static pxr::VtValue vt_value(const IDProperty *prop) return pxr::VtValue{IDP_Int(prop)}; case IDP_FLOAT: return pxr::VtValue{IDP_Float(prop)}; + case IDP_DOUBLE: + return pxr::VtValue{IDP_Double(prop)}; case IDP_BOOLEAN: return pxr::VtValue{bool(IDP_Bool(prop))}; }