The name 'SetFocusMode' does not exist in the current context

0 投票
最新提问 7月 23, 2018 用户: 13811920840 (120 分)
使用EasyAR官方案例中的“HelloARMultiTarget-MultiTracker”。此案例中相机没有自动对焦功能,在CameraDeviceBehaviour.cs添加代码如下:

namespace EasyAR

{

public class CameraDeviceBehaviour : CameraDeviceBaseBehaviour

{

protected override void Start() {

base.Start();

SetFocusMode(FocusMode.Continousauto);//连续自动对焦模式

}

}

}

结果编译出现如下错误:

The name 'SetFocusMode' does not exist in the current context

The name 'FocusMode' does not exist in the current context

请教此问题如何解决,谢谢!

1个回答

0 投票
最新回答 7月 23, 2018 用户: albert52 (37,800 分)

SetFocusMode 的方法使用不正确:

必须在camera Start()方法之后调用

欢迎来到 EasyAR Q&A ,有什么不懂的可以尽管在这里提问,你将会收到社区其他成员的回答。
...