本文介绍了Kinect with Unity on Tablets?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在Unity上运行来自Unity的Kinect。这有多难?它是否像安装Windows平板电脑和MSSDK(或OpenNI?)一样简单,就像桌面一样?可以在Android上完成吗?

I would like to access Kinect from Unity running on a tabet. How hard is that? Would it be as simple as having a Windows tablet and the MSSDK (or OpenNI?) installed, like a desktop? Can it be done on Android?

推荐答案

由于Unity没有使用完整的.Net运行时来实现脚本语言,因此您首先需要公开Kinect for Windows通过附加库或桥接器实现SDK功能。可能有一些已经可用,但你需要在Unity论坛上查看

Since Unity is not using the full .Net runtime for its implementation of the scripting language, you will first need to expose the Kinect for Windows SDK functionality through an additional library or bridge. There may be some already available, but you would have to check with a Unity forum.

如果你想自己创建一个附加组件,那么就有一个开源的项目调用Kinect Common Bridge,它使得从其他框架调用本机c ++ api变得容易一些。

If you want to create a add-on yourself, there is an open source project call Kinect Common Bridge, that makes calling into the native c++ api's from other frameworks a bit easier.


这篇关于Kinect with Unity on Tablets?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-29 07:49