"We offer new support options and therefor the forums are now in read-only mode! Please check out our Support Center for more information." - Vuforia Engine Team

Vuforia.CameraDevice - Name of Cam?

Greetings.

For my further development I must know a name of camera which Vuforia uses for AR Camera. I found settings in Vuforia Configuration where I can select webcam (look attached image) but...

I need to get CameraDevice's name via script. What can I do?

Thanks in advance.

Hello,

The name of your specific webcam model (as enumerated by Vuforia) is actually in the warning message: 'HP HD Camera'

Thanks,

Vuforia Engine Support

[quote=medabit]

Hello,

The name of your specific webcam model (as enumerated by Vuforia) is actually in the warning message: 'HP HD Camera'

Thanks,

Vuforia Engine Support

[/quote]

LOL, funny. xD

I suppose there's no solution for this task. Cuz I still can't search for any information how to change webcam in VuforiaConfig via script. There's only instructions how to change camera's direction for smartphones in the Internet.

WebCamDevice[] devices = WebCamTexture.devices;
        for (int i = 0; i < devices.Length; i++)
            Debug.Log(devices[i].name);

Unity have his own solutions