首页 > 代码库 > Unity3D调用摄像头
Unity3D调用摄像头
代码启用摄像头
1.using UnityEngine; 2.using System.Collections; 3. 4.public class WebCamManager : MonoBehaviour { 5. 6. // Use this for initialization 7. void Start () { 8. 9. WebCamTexture webcamTexture = new WebCamTexture (); 10. 11. //如果有后置摄像头,调用后置摄像头 12. for (int i = 0; i < WebCamTexture.devices.Length; i++) { 13. if (!WebCamTexture.devices [i].isFrontFacing) { 14. webcamTexture.deviceName = WebCamTexture.devices [i].name; 15. break; 16. } 17. } 18. 19. Renderer renderer = GetComponent<Renderer>(); 20. renderer.material.mainTexture = webcamTexture; 21. webcamTexture.Play(); 22. } 23. 24.}
Unity3D调用摄像头
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。