项目作者: keijiro

项目描述 :
Azure Kinect plugin for Unity VFX Graph
高级语言: C#
项目地址: git://github.com/keijiro/Akvfx.git
创建时间: 2019-08-09T06:20:01Z
项目社区:https://github.com/keijiro/Akvfx

开源协议:Other

下载


Akvfx

gif
gif

Akvfx is a Unity plugin that captures color/depth data from an Azure
Kinect
device and converts them into attribute maps (textures) handy for using
with Visual Effect Graph.

System Requirements

  • Unity 2019.3
  • Azure Kinect DK

See also the [System Requirements] page of Azure Kinect DK. Note that Akvfx
doesn’t support Linux at the moment.

[System Requirements]:
https://docs.microsoft.com/en-us/azure/kinect-dk/system-requirements

How To Install

This package uses the scoped registry feature to resolve package
dependencies. Please add the following sections to the manifest file
(Packages/manifest.json).

To the scopedRegistries section:

  1. {
  2. "name": "Unity NuGet",
  3. "url": "https://unitynuget-registry.azurewebsites.net",
  4. "scopes": [ "org.nuget" ]
  5. },
  6. {
  7. "name": "Keijiro",
  8. "url": "https://registry.npmjs.com",
  9. "scopes": [ "jp.keijiro" ]
  10. }

To the dependencies section:

  1. "jp.keijiro.akvfx": "1.0.4"

After changes, the manifest file should look like below:

  1. {
  2. "scopedRegistries": [
  3. {
  4. "name": "Unity NuGet",
  5. "url": "https://unitynuget-registry.azurewebsites.net",
  6. "scopes": [ "org.nuget" ]
  7. },
  8. {
  9. "name": "Keijiro",
  10. "url": "https://registry.npmjs.com",
  11. "scopes": [ "jp.keijiro" ]
  12. }
  13. ],
  14. "dependencies": {
  15. "jp.keijiro.akvfx": "1.0.4",
  16. ...