# fsCameraSetUsingCameraDefinition The `fsCameraSetUsingCameraDefinition` function is used to set specific parts of the camera struct based on a predefined camera definition from the [cameras.cfg](../../../content-configuration/cfg-files/cameras.cfg/) file. This function can *only* be used when the add-on camera has been **acquired**.   ##### Syntax ``` wasm bool fsCameraSetUsingCameraDefinition( const char* cameraDefinitionName ); ```   ##### Members {{< table-wrapper >}} | Parameters | Description | |------------------------|-----------------------------------------------------------------------------------------------------------------------------| | `cameraDefinitionName` | This is the [Title](../../../content-configuration/cfg-files/cameras.cfg/#Title) string of a camera definition to use. | {{< /table-wrapper >}}   ##### Return Values The function returns `false` if it was not possible to send the request, or `true` otherwise. If the request was sent but failed, the specified callback will be invoked with an appropriate error code.   ##### Example N/A   ##### Remarks The data that will be used from the given camera definition is as follows: - **Position** - From the `InitialXyz` parameter - **Pbh** - From the `InitialPbh` parameter - **FOV** - From the `Initialzoom` parameter