generated fromkeijiro/UnityProjectTemplate
- Notifications
You must be signed in to change notification settings - Fork83
Azure Kinect plugin for Unity VFX Graph
License
NotificationsYou must be signed in to change notification settings
keijiro/Akvfx
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Akvfx is a Unity plugin that captures color/depth data from anAzureKinect device and converts them into attribute maps (textures) handy for usingwithVisual Effect Graph.
- Unity 2019.3
- Azure Kinect DK
See also theSystem Requirements page of Azure Kinect DK. Note that Akvfxdoesn't support Linux at the moment.
This package uses thescoped registry feature to resolve packagedependencies. Please add the following sections to the manifest file(Packages/manifest.json).
To thescopedRegistries
section:
{ "name": "Unity NuGet", "url": "https://unitynuget-registry.azurewebsites.net", "scopes": [ "org.nuget" ]},{ "name": "Keijiro", "url": "https://registry.npmjs.com", "scopes": [ "jp.keijiro" ]}
To thedependencies
section:
"jp.keijiro.akvfx": "1.0.4"
After changes, the manifest file should look like below:
{ "scopedRegistries": [ { "name": "Unity NuGet", "url": "https://unitynuget-registry.azurewebsites.net", "scopes": [ "org.nuget" ] }, { "name": "Keijiro", "url": "https://registry.npmjs.com", "scopes": [ "jp.keijiro" ] } ], "dependencies": { "jp.keijiro.akvfx": "1.0.4", ...