Skip to content

Instantly share code, notes, and snippets.

View keijiro's full-sized avatar

Keijiro Takahashi keijiro

View GitHub Profile
@keijiro
keijiro / UnityStation_BoltMinis.md
Last active August 17, 2022 13:48
BoltとMIDIでグリグリコントロール!UnityでMIDI デバイスを使ってみよう! - Unityステーション
@keijiro
keijiro / HowToBackUpPlasticSCM.md
Last active January 6, 2021 14:05
How to make a backup of a Plastic SCM repository

Taking a snapshot of a Plastic SCM workspace with tar

On WSL:

cat ignore.conf | sed -e s/^/./ | tar -I pigz -c -v --exclude=.plastic -X - -f ../snapshot.tar.gz .

Making a backup of a Plastic SCM repository using the fast-export format

@keijiro
keijiro / pugrad.md
Last active November 15, 2021 09:42

Pugrad

photo

Pugrad is a color gradient generator for Unity that supports commonly-used perceptually uniform colormaps.

At the moment, Pugrad supports the following colormaps:

@keijiro
keijiro / hdrp10.md
Last active December 16, 2020 12:52
hdrp10.md

HDRP10

HDRP10 is a video format converter for Unity HDRP that allows HDR video output via Windows HD Color.

comparison

*Left: Standard dynamic range. Right: HDR enabled. You can see banding in the dark area of the left photo. I used Dell U2720QM HDR monitor and took these

using UnityEngine;
class TimeCodeToPosition : MonoBehaviour
{
public Klinker.FrameReceiver receiver;
void Update()
{
var p = transform.localPosition;
p.x = (float)receiver.timecodeSeconds;
@keijiro
keijiro / BoltOscJack.md
Last active January 14, 2021 16:52
Bolt OSC Jack

Bolt OSC Jack

gif

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.

@keijiro
keijiro / BoltMinis.md
Last active November 6, 2020 01:39
BoltMinis.md

BoltMinis

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

BurstFFT

BurstFFT is an FFT (Fast Fourier Transform) implementation in high-performance C# with Unity's Burst compiler.

This repository contains the following three variants of Fourier transform implementation.

  • NaiveDFT: Unoptimized naive C# implementation of DFT

LASP

LASP is a Unity plugin providing low-latency audio input features that are useful to create audio-reactive visuals.

Demos

gif

[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)
{