Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/keijiro/LaspVfx
Audio reactive Unity VFX with LASP
https://github.com/keijiro/LaspVfx
audio unity unity3d vfx vfxgraph
Last synced: 3 months ago
JSON representation
Audio reactive Unity VFX with LASP
- Host: GitHub
- URL: https://github.com/keijiro/LaspVfx
- Owner: keijiro
- License: unlicense
- Created: 2019-04-11T12:22:51.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2021-08-18T14:11:29.000Z (over 3 years ago)
- Last Synced: 2024-08-02T13:27:37.727Z (6 months ago)
- Topics: audio, unity, unity3d, vfx, vfxgraph
- Language: C#
- Homepage:
- Size: 245 KB
- Stars: 616
- Watchers: 21
- Forks: 59
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
LaspVfx
-------![gif](https://i.imgur.com/KIwkpcI.gif)
![gif](https://i.imgur.com/Nrb1XGw.gif)**LaspVfx** is a Unity package providing property binders for connecting [LASP]
(audio input plugin) and [Visual Effect Graph].[LASP]: https://github.com/keijiro/Lasp
[Visual Effect Graph]: https://unity.com/visual-effect-graphSystem Requirements
-------------------- Unity 2019.4 or later
How To Install
--------------This package uses the [scoped registry] feature to resolve package
dependencies. Please add the following lines to the manifest file
(`Packages/manifest.json`).[scoped registry]: https://docs.unity3d.com/Manual/upm-scoped.html
.NET Standard 2.0 (Unity 2021.1 or earlier)
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:
```
"org.nuget.system.memory": "4.5.3",
"jp.keijiro.laspvfx": "1.0.2"
```After the changes, the manifest file should look like:
```
{
"scopedRegistries": [
{
"name": "Unity NuGet",
"url": "https://unitynuget-registry.azurewebsites.net",
"scopes": [ "org.nuget" ]
},
{
"name": "Keijiro",
"url": "https://registry.npmjs.com",
"scopes": [ "jp.keijiro" ]
}
],
"dependencies": {
"org.nuget.system.memory": "4.5.3",
"jp.keijiro.laspvfx": "1.0.2",
...
```.NET Standard 2.1 (Unity 2021.2 or later)
To the `scopedRegistries` section:
```
{
"name": "Keijiro",
"url": "https://registry.npmjs.com",
"scopes": [ "jp.keijiro" ]
}
```To the `dependencies` section:
```
"jp.keijiro.laspvfx": "1.0.2"
```After the changes, the manifest file should look like:
```
{
"scopedRegistries": [
{
"name": "Keijiro",
"url": "https://registry.npmjs.com",
"scopes": [ "jp.keijiro" ]
}
],
"dependencies": {
"jp.keijiro.laspvfx": "1.0.2",
...
```