This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEngine; | |
class TimeCodeToPosition : MonoBehaviour | |
{ | |
public Klinker.FrameReceiver receiver; | |
void Update() | |
{ | |
var p = transform.localPosition; | |
p.x = (float)receiver.timecodeSeconds; |
Bolt OSC Jack is an add-on for Unity's Bolt visual scripting system that adds custom units for handling [OSC (Open Sound Control)] messages.
BoltMinis is an add-on for Unity's Bolt visual scripting system that adds custom units for handling MIDI input.
It uses [Minis] as a backend. If you're interested in using MIDI without visual
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Unity.Burst.BurstCompile(CompileSynchronously = true)] | |
struct DftJob : IJobParallelFor | |
{ | |
[ReadOnly] public NativeArray<float4> input; | |
[ReadOnly] public NativeArray<float4> coeffsR; | |
[ReadOnly] public NativeArray<float4> coeffsI; | |
[WriteOnly] public NativeArray<float> output; | |
public void Execute(int i) | |
{ |