https://github.com/banane9/neosexpressionlogix
https://github.com/banane9/neosexpressionlogix
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/banane9/neosexpressionlogix
- Owner: Banane9
- License: mit-0
- Created: 2022-06-12T19:58:11.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-06-13T16:16:14.000Z (almost 3 years ago)
- Last Synced: 2025-01-15T01:42:07.834Z (5 months ago)
- Language: C#
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: license.txt
Awesome Lists containing this project
README
Dynamic Variable Space Tree
===========================A [NeosModLoader](https://github.com/zkxs/NeosModLoader) mod for [Neos VR](https://neos.com/) that adds buttons to the DynamicVariableSpace component in the inspector that allow copying all linked variable definitions or the whole hierarchy of linked dynamic variable components.
## Installation
1. Install [NeosModLoader](https://github.com/zkxs/NeosModLoader).
2. Place [DynVarSpaceTree.dll](https://github.com/Banane9/NeosDynVarSpaceTree/releases/latest/download/DynVarSpaceTree.dll) into your `nml_mods` folder. This folder should be at `C:\Program Files (x86)\Steam\steamapps\common\NeosVR\nml_mods` for a default install. You can create it if it's missing, or if you launch the game once with NeosModLoader installed it will create the folder for you.
3. Start the game. If you want to verify that the mod is working you can check your Neos logs.## Trimmed Sample Outputs
Linked Variable Definitions:
```
Variables linked to Namespace SpotifyStatus:
MainRim (color)
MainBG (color)
MainGradient (color)
Cover (Uri)
Cover (IAssetProvider)
Cover (IAssetProvider)
CoverAccent (color)
Album (String)
Album (Uri)
FontRegular (IAssetProvider)
Title (String)
Title (Uri)
FontBold (IAssetProvider)
WSClient (WebsocketClient)
...
```Linked Dynamic Variable Components in Hierarchy:
```
Spotify Control 2.1.3: Namespace SpotifyStatus
├─Fixed UI
│ ├─Main
│ │ ├─Background
│ │ │ ├─SpotifyStatus/MainRim (DynamicValueVariableDriver)
│ │ │ │
│ │ │ ├─Background Mask
│ │ │ │ ├─SpotifyStatus/MainBG (DynamicValueVariableDriver)
│ │ │ │ │
│ │ │ │ └─Gradient
│ │ │ │ └─SpotifyStatus/MainGradient (DynamicValueVariableDriver)
│ │ │ │
│ │ │ └─Content
│ │ │ ├─Song Info
│ │ │ │ ├─Cover
│ │ │ │ │ ├─Image
│ │ │ │ │ │ ├─SpotifyStatus/Cover (DynamicField)
│ │ │ │ │ │ ├─SpotifyStatus/Cover (DynamicReferenceVariable>)
│ │ │ │ │ │ └─SpotifyStatus/Cover (DynamicReferenceVariable>)
│ │ │ │ │ │
│ │ │ │ │ └─Rim
│ │ │ │ │ └─SpotifyStatus/CoverAccent (DynamicValueVariableDriver)
...
```