All Projects → keijiro → Vjui

keijiro / Vjui

Licence: unlicense
Custom UI controls for VJing with Unity

Projects that are alternatives of or similar to Vjui

Computestochasticreflections
Compute Stochastic Screen Space Reflections for unity post processing
Stars: ✭ 163 (-2.98%)
Mutual labels:  unity, unity3d
Aim Ik
A Unity-3D library, to procedural orientate character head (and chest) in a direction without using any animation data.
Stars: ✭ 164 (-2.38%)
Mutual labels:  unity, unity3d
Ignorance
Ignorance utilizes the power of ENet to provide a reliable UDP networking transport for Mirror Networking.
Stars: ✭ 158 (-5.95%)
Mutual labels:  unity, unity3d
Kinect Vfx Graph
Use Kinect's depth feed with Unity's VFX Graph
Stars: ✭ 163 (-2.98%)
Mutual labels:  unity, unity3d
Qframework
Unity3D System Design Architecture
Stars: ✭ 2,326 (+1284.52%)
Mutual labels:  unity, unity3d
Gltfast
glTF runtime loading library for Unity
Stars: ✭ 156 (-7.14%)
Mutual labels:  unity, unity3d
Dfvolume
Distance-field volume generator for Unity
Stars: ✭ 161 (-4.17%)
Mutual labels:  unity, unity3d
Cmumocap
Unity humanoid animations converted from the Carnegie Mellon University Motion Capture Database
Stars: ✭ 153 (-8.93%)
Mutual labels:  unity, unity3d
Awesome Opensource Unity
a list of curated opensource Unity packages for future proof Game Developers
Stars: ✭ 161 (-4.17%)
Mutual labels:  unity, unity3d
Onesignal Unity Sdk
OneSignal is a free push notification service for mobile apps. This plugin makes it easy to integrate your Unity app with OneSignal. https://onesignal.com
Stars: ✭ 161 (-4.17%)
Mutual labels:  unity, unity3d
Dkvfx
An example that shows how to use recorded Depthkit footage with Unity VFX Graph
Stars: ✭ 162 (-3.57%)
Mutual labels:  unity, unity3d
Commonchinesecharacter
游戏开发中的常用汉字字库,包括3500常用字和7000常用字
Stars: ✭ 162 (-3.57%)
Mutual labels:  unity, unity3d
Psd2unityimporter
An advanced PSD importer tool for Unity
Stars: ✭ 155 (-7.74%)
Mutual labels:  unity, unity3d
Simple Optimized A Pathfinder
An simple and optimized grid pathfinding
Stars: ✭ 157 (-6.55%)
Mutual labels:  unity, unity3d
Swissarmylib
Collection of helpful utilities we use in our Unity projects.
Stars: ✭ 154 (-8.33%)
Mutual labels:  unity, unity3d
Svelto.tasks
Svelto Tasks - C# promises compliant multi-threaded tasks runner
Stars: ✭ 159 (-5.36%)
Mutual labels:  unity, unity3d
Ffmpegrecorder
FFmpeg extension for Unity Recorder
Stars: ✭ 153 (-8.93%)
Mutual labels:  unity, unity3d
Unity Ui Examples
📚 A collection of UI examples for Unity.
Stars: ✭ 152 (-9.52%)
Mutual labels:  unity, unity3d
Unitypausemenu
This is an open source Unity pause menu created for the game New Horizons, and it's completely free because of how a pause menu is a core component of a game, while the unity asset store was lacking in such an asset (until this was released on the asset store).
Stars: ✭ 160 (-4.76%)
Mutual labels:  unity, unity3d
Unity Bullet Hell
An extremely efficient projectile generator for unity.
Stars: ✭ 168 (+0%)
Mutual labels:  unity, unity3d

VJUI

VJUI is a collection of custom UI controls specially designed for VJing.

gif

It contains three custom controls:

Knob allows users to select a numeric value by dragging. This provides almost the same functionality as the standard Slider control but a bit easier to interact on a touch-sensitive screen.

gif

Button is almost identical to the standard Button control, but it also provides the OnButtonDown event not only the OnButtonUp event. This is convenient for VJing because button-down events are more often used than button-ups.

Toggle is also nearly identical to the standard Toggle control but in the same look-and-feel to the Knob and Button controls.

How To Install

The VJUI package uses the scoped registry feature to import dependent packages. Please add the following sections to the package manifest file (Packages/manifest.json).

To the scopedRegistries section:

{
  "name": "Keijiro",
  "url": "https://registry.npmjs.com",
  "scopes": [ "jp.keijiro" ]
}

To the dependencies section:

"jp.keijiro.klak.vjui": "1.0.2"

After changes, the manifest file should look like below:

{
  "scopedRegistries": [
    {
      "name": "Keijiro",
      "url": "https://registry.npmjs.com",
      "scopes": [ "jp.keijiro" ]
    }
  ],
  "dependencies": {
    "jp.keijiro.klak.vjui": "1.0.2",
...
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].