Skip to content

Instantly share code, notes, and snippets.

View ssabii's full-sized avatar

Joseph 요셉 ssabii

View GitHub Profile
@ssabii
ssabii / SmoothVideoPlaylist.cs
Created December 11, 2020 11:38 — forked from radiatoryang/SmoothVideoPlaylist.cs
short Unity C# script example for smoothly cutting / playing a playllist of VideoClips, by using one VideoPlayer (activeCam) to play the video and another VideoPlayer (otherCam) to cue up the next video... MIT License.
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Video;
public class SmoothVideoPlaylist : MonoBehaviour {
// to smoothly cut between two videos, we need two VideoPlayers
// make sure you create two VideoPlayers and assign them in the Inspector
public VideoPlayer activeCam, otherCam;
@ssabii
ssabii / babel_qick_start.md
Created August 16, 2020 18:32 — forked from falsy/babel_qick_start.md
BABEL 설치 및 사용하기

BABEL Qick Start

맥OS에서 BABEL 설치 및 사용하기

NodeJs, npm 이 설치되어 있어야 합니다.

BABEL 설치

1. 우선 npm 버전을 최신으로 업데이트 합니다.

$ npm install -g npm
@ssabii
ssabii / gist:1360cbd6a8fdabccc4ff6af0eba973ce
Created March 26, 2020 08:00 — forked from andyyou/gist:3052671
C# Controls abbreviation
btn Button chk CheckBox ckl CheckedListBox
cmb ComboBox dtp DateTimePicker lbl Label
llb LinkLabel lst ListBox lvw ListView
mtx MaskedTextBox cdr MonthCalendar icn NotifyIcon
nud NumeircUpDown pic PictureBox prg ProgressBar
rdo RadioButton rtx RichTextBox txt TextBox
tip ToolTip tvw TreeView wbs WebBrowser
容器
flp FlowLayoutPanel grp GroupBox pnl Panel
@ssabii
ssabii / FlyCamera.cs
Created November 30, 2018 06:18 — forked from gunderson/FlyCamera.cs
Unity Script to give camera WASD + mouse control
using UnityEngine;
using System.Collections;
public class FlyCamera : MonoBehaviour {
/*
Writen by Windexglow 11-13-10. Use it, edit it, steal it I don't care.
Converted to C# 27-02-13 - no credit wanted.
Simple flycam I made, since I couldn't find any others made public.
Made simple to use (drag and drop, done) for regular keyboard layout