Skip to content

Instantly share code, notes, and snippets.

View keijiro's full-sized avatar

Keijiro Takahashi keijiro

View GitHub Profile
@keijiro
keijiro / Kino.md
Last active January 23, 2022 10:23
@keijiro
keijiro / VfxPyro.md
Last active February 4, 2020 00:26

VfxPyro

gif

VfxPyro is an interactive particle effect example with Unity Visual Effect Graph, which launches fireworks with user interaction.

@keijiro
keijiro / KlakNDI.md
Last active September 30, 2019 09:13

KlakNDI

gif photo

KlakNDI is a Unity plugin that allows sharing video frames between computers using NDI.

[NDI] (Network Device Interface) is a standard developed by [NewTek] that

@keijiro
keijiro / borg-with-gs.md
Last active December 21, 2024 13:47
Using Borg and Google Cloud Storage for backing up personal projects

Why do you prefer [Borg] over [git-lfs]/[git-annex]?

  • GitHub LFS has a 2GB limit on file size. This never works with large projects like video productions.
  • git-annex uses symlinks to manage annexed files. This doesn't work well on Windows.

So my conclusion at the moment is that Borg is the best backup software for mid/large-sized personal projects.

@keijiro
keijiro / 00_particle_textures.md
Last active October 6, 2019 19:54
Processing sketches used to generate VFX particle textures

These are Processing sketches that I used to create VFX particle textures in a Unity project.

Usage example:

gif

Disk.pde

Generates a simple disk particle.

MIDI Animation Track for Unity Timeline

Ableton Unity

MIDI Animation Track is a custom timeline/playables package that provides functionality to control object properties based on sequence data contained in a standard MIDI file (.mid file). This allows you to create musically synchronized animation using a DAW (digital audio workstation) that is easy

@keijiro
keijiro / update_dylib_in_rsvfx.sh
Created May 27, 2019 08:36
Using lipo to update MacOS plugin binary in Rsvfx.
lipo -create /usr/local/Cellar/librealsense/2.22.0/lib/librealsense2.2.22.0.dylib -output realsense2
@keijiro
keijiro / fix.sh
Created May 27, 2019 03:03
Fix files in RealSense SDK for Rsvfx
find . \( -name '*.cs' -or -name '*.meta' \) -exec dos2unix {} \; -exec chmod 644 {} \;
@keijiro
keijiro / LaspVfx.md
Last active November 15, 2021 05:15

LaspVfx

gif gif

LaspVfx is a Unity example that shows how to use LASP to create audio reactive effects with Visual Effect Graph.

@keijiro
keijiro / LASP.md
Last active April 10, 2019 08:29
LASP README

LASP

gif gif

LASP is a Unity plugin providing low-latency, high-performance and easy-to-use audio input functionality that is useful for creating audio reactive visuals.