This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// PerlinNoiseAnimeRandomizer.cs | |
// http://kan-kikuchi.hatenablog.com/entry/PerlinNoise_Anime | |
// | |
// Created by kan.kikuchi on 2018.12.01. | |
using UnityEngine; | |
using Random = UnityEngine.Random; | |
/// <summary> | |
/// パーリンノイズを使ってアニメーションにランダムなゆらぎを与えるクラス |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// AssemblyCompileTimeWindow.cs | |
// http://kan-kikuchi.hatenablog.com/entry/Assembly_Compile_Time | |
// | |
// Created by kan.kikuchi on 2018.11.26. | |
using UnityEditor; | |
using UnityEditor.Compilation; | |
using UnityEngine; | |
using System; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// CameraFader.cs | |
// http://kan-kikuchi.hatenablog.com/entry/CameraFader | |
// | |
// Created by kan.kikuchi on 2018.08.26. | |
using UnityEngine; | |
using System; | |
/// <summary> | |
/// カメラをフェードするクラス |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SimpleAnimationChanger.cs | |
// http://kan-kikuchi.hatenablog.com/entry/SimpleAnimation | |
// | |
// Created by kan.kikuchi on 2018.07.19. | |
using UnityEngine; | |
using System.Collections.Generic; | |
#if UNITY_EDITOR | |
using UnityEditor; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// MovieAdManager.cs | |
// http://kan-kikuchi.hatenablog.com/entry/UnityAds | |
// | |
// Created by kan.kikuchi on 2015.08.31. | |
using UnityEngine; | |
using System; | |
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine.Advertisements; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// TimeScaleControlWindow.cs | |
// http://kan-kikuchi.hatenablog.com/entry/TimeScaleControlWindow | |
// | |
// Created by kan.kikuchi on 2018.03.27. | |
using System; | |
using UnityEngine; | |
using UnityEditor; | |
/// <summary> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ExtensionConverter.cs | |
// http://kan-kikuchi.hatenablog.com/entry/ExtensionConverter | |
// | |
// Created by kan.kikuchi on 2018.03.03. | |
using System.IO; | |
using System.Collections.Generic; | |
using UnityEditor; | |
using UnityEngine; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SlackNotifier.cs | |
// http://kan-kikuchi.hatenablog.com/entry/SlackNotifier | |
// | |
// Created by kan.kikuchi on 2017.12.12. | |
using UnityEngine; | |
using UnityEngine.Networking; | |
using System.Collections; | |
using System.Collections.Generic; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// NameGenerationWindow.cs | |
// http://kan-kikuchi.hatenablog.com/entry/NameGenerationWindow | |
// | |
// Created by kan.kikuchi on 2017.12.10. | |
using UnityEditor; | |
using UnityEngine; | |
using UnityEngine.Networking; | |
using System; | |
using System.Collections; |