Skip to content

Instantly share code, notes, and snippets.

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEditor;
public class BuildOptionSwitcher : EditorWindow
{
[MenuItem("Build/OptionSwitcher")]
public static void ShowWindow()
{
@teriyakichan
teriyakichan / helixfonteditor.html
Last active April 14, 2024 15:31
Font editor for Helix keyboard.
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8"/>
<title>Helix Font Editor</title>
<script>
var colmax = 32;
var rowmax = 7;
var fontw = 6;
var fonth = 8;
@teriyakichan
teriyakichan / ExportTeddy.cs
Created September 27, 2017 08:48
Teddyで作ったモデルをprefab化するやつ
using UnityEngine;
using UnityEditor;
using Teddy;
public class ExportTeddy
{
const string PREFAB_NAME = "Teddy.prefab";
private static string _dirPath = null;
private static int _teddyCount = 0;
@teriyakichan
teriyakichan / Monokai_dark.tmTheme
Created November 26, 2015 01:36
Monokai Dark - Sublime Text theme
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<!-- Generated by: TmTheme-Editor -->
<!-- ============================================ -->
<!-- app: http://tmtheme-editor.herokuapp.com -->
<!-- code: https://github.com/aziz/tmTheme-Editor -->
<plist version="1.0">
<dict>
<key>name</key>
<string>Monokai_dark</string>