Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/keijiro/akvfx
Azure Kinect plugin for Unity VFX Graph
https://github.com/keijiro/akvfx
kinect unity unity3d vfx vfxgraph
Last synced: 1 day ago
JSON representation
Azure Kinect plugin for Unity VFX Graph
- Host: GitHub
- URL: https://github.com/keijiro/akvfx
- Owner: keijiro
- License: other
- Created: 2019-08-09T06:20:01.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-03-11T01:27:56.000Z (almost 4 years ago)
- Last Synced: 2024-12-20T12:15:08.606Z (3 days ago)
- Topics: kinect, unity, unity3d, vfx, vfxgraph
- Language: C#
- Homepage:
- Size: 2.53 MB
- Stars: 581
- Watchers: 28
- Forks: 82
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Akvfx
=====![gif](https://i.imgur.com/h0kApp4.gif)
![gif](https://i.imgur.com/lXRiwU3.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].[Azure Kinect]: https://azure.com/kinect
[Visual Effect Graph]: https://unity.com/visual-effect-graphSystem Requirements
-------------------- Unity 2019.3
- Azure Kinect DKSee 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-requirementsHow 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).[scoped registry]: https://docs.unity3d.com/Manual/upm-scoped.html
To the `scopedRegistries` section:
```
{
"name": "Unity NuGet",
"url": "https://unitynuget-registry.azurewebsites.net",
"scopes": [ "org.nuget" ]
},
{
"name": "Keijiro",
"url": "https://registry.npmjs.com",
"scopes": [ "jp.keijiro" ]
}
```To the `dependencies` 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",
...
```