We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f13088a commit 95062deCopy full SHA for 95062de
1 file changed
programming/javascript/api-reference/camera-control.md
@@ -69,7 +69,7 @@ This property sets a limit on how long the `CameraEnhancer` will attempt to open
69
70
> NOTE
71
>
72
-> - The default value is 4000 ms.
+> - The default value is 10000 ms.
73
> - Setting 0 means canceling the timeout or waiting indefinitely.
74
75
```typescript
@@ -79,8 +79,8 @@ cameraOpenTimeout: number;
79
**Code Snippet**
80
81
```javascript
82
-// Set the timeout to 10 seconds.
83
-cameraEnhancer.cameraOpenTimeout = 10000;
+// Set the timeout to 5 seconds.
+cameraEnhancer.cameraOpenTimeout = 5000;
84
```
85
86
## close
0 commit comments