This file contains hidden or 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
| using System; | |
| /// <summary> | |
| /// 列挙型の汎用関数を管理するクラス | |
| /// </summary> | |
| public static partial class EnumCommon | |
| { | |
| /// <summary> | |
| /// 指定された文字列を列挙型に変換します | |
| /// </summary> |
This file contains hidden or 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
| using System; | |
| /// <summary> | |
| /// string型の汎用関数を管理するクラス | |
| /// </summary> | |
| public static partial class StringCommon | |
| { | |
| /// <summary> | |
| /// 指定された文字列が null または空であるか、空白文字だけで構成されているかどうかを返します | |
| /// </summary> |
This file contains hidden or 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
| using System.Collections.Generic; | |
| /// <summary> | |
| /// List型の拡張メソッドを監理するクラス | |
| /// </summary> | |
| public static partial class ListExtensions | |
| { | |
| /// <summary> | |
| /// 指定したコレクションの要素を List の末尾に追加します | |
| /// </summary> |
This file contains hidden or 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
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| /// <summary> | |
| /// Enumerable 型に関する汎用メソッドを管理するクラス | |
| /// </summary> | |
| public static partial class EnumerableCommon | |
| { | |
| /// <summary> |
This file contains hidden or 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
| using System; | |
| using UnityEngine; | |
| /// <summary> | |
| /// ログに関する汎用関数を管理するクラス | |
| /// </summary> | |
| public static partial class DebugUtils | |
| { | |
| /// <summary> | |
| /// ログを出力します |
This file contains hidden or 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
| using System.IO; | |
| using System.Text.RegularExpressions; | |
| using UnityEditor; | |
| /// <summary> | |
| /// Assets フォルダに存在するアセットの相対パスを Project ビュー上でコピーするためのクラス | |
| /// </summary> | |
| public static class AssetPathCopyer | |
| { | |
| private enum Priority // 優先度 |
This file contains hidden or 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
| using System; | |
| using System.Collections.ObjectModel; | |
| /// <summary> | |
| /// 配列の拡張メソッドを管理するクラス | |
| /// </summary> | |
| public static class ArrayExtensions | |
| { | |
| /// <summary> | |
| /// 指定した配列をラップする読み取り専用のラッパーを作成します |
This file contains hidden or 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
| using System; | |
| using System.Collections.Generic; | |
| using System.IO; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Text.RegularExpressions; | |
| using UnityEditor; | |
| using UnityEngine; | |
| /// <summary> |
This file contains hidden or 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
| using System; | |
| using UnityEngine; | |
| #if UNITY_EDITOR | |
| using UnityEditor; | |
| #endif | |
| /// <summary> | |
| /// ヘルプボックスの種類 | |
| /// </summary> | |
| public enum HelpBoxType |