Skip to content

Instantly share code, notes, and snippets.

View chigirits's full-sized avatar
😎

Chigiri Tsutsumi chigirits

😎
View GitHub Profile
@mikenekoworks
mikenekoworks / SampleReorderableList.cs
Created January 12, 2018 06:31
ReorderableListを使う時毎回、調べて持ってくるのが面倒だからまとめておく
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEditor;
using UnityEditorInternal;
[CustomEditor( typeof( Sample ) )]
public class SampleEditor : Editor {
private ReorderableList reorderableList;
@DashW
DashW / ScreenRecorder.cs
Last active April 17, 2024 23:45
ScreenRecorder - High Performance Unity Video Capture Script
using UnityEngine;
using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
using System.Threading;
class BitmapEncoder
{
public static void WriteBitmap(Stream stream, int width, int height, byte[] imageData)