View uGUIImageSetter.cs
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
using UnityEditor; | |
using UnityEngine; | |
using UnityEngine.UI; | |
using System.Linq; | |
using System.Collections.Generic; | |
using System.IO; | |
using System; | |
//================================================================================ | |
/// <summary> |
View TextSlicer.jsx
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
/*================================================================================ | |
# TextSlicer for Photoshop | |
# 指定レイヤーの文字列をスライスして複数レイヤーにするツール | |
================================================================================*/ | |
#target photoshop | |
//================================================================================ | |
const SCRIPT_TITLE = "TextSlicer"; | |
const STATIC_TEXT_MIN_WIDTH = 60; |
View MapTools.cs
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
using UnityEditor; | |
using UnityEngine; | |
//================================================================================ | |
/// <summary> | |
/// 配置ツール | |
/// </summary> | |
//================================================================================ | |
public class MapTools : EditorWindow | |
{ |
View LayerExporter.jsx
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
/*================================================================================ | |
# LayerExporter for Photoshop | |
# レイヤーをpng,jpg,psdで書き出すスクリプト | |
================================================================================*/ | |
#target photoshop | |
//================================================================================ | |
const SCRIPT_TITLE = "LayerExporter"; |
View ObjRenamer.cs
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
using UnityEditor; | |
using UnityEngine; | |
using System.Collections.Generic; | |
//================================================================================ | |
/// <summary> | |
/// 選択オブジェクト名のリネームツール | |
/// </summary> | |
//================================================================================ | |
public class ObjRenamer : EditorWindow |
View CommonEditorTools.cs
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
using UnityEngine; | |
using UnityEditor; | |
using System.Collections.Generic; | |
using System.Collections; | |
using System.IO; | |
//================================================================================ | |
/// <summary> | |
/// 拡張エディターの汎用処理 | |
/// </summary> |
View ShortCutExtension.cs
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
using UnityEditor; | |
using UnityEngine; | |
using System.Reflection; | |
using System.Text; | |
//================================================================================ | |
/// <summary> | |
/// ショートカットを拡張した便利ツール群 | |
/// </summary> | |
//================================================================================ |
View LayerRenamer.jsx
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
/*================================================================================ | |
# LayerRenamer for Photoshop | |
# レイヤーのリネームツール | |
================================================================================*/ | |
#target photoshop | |
//================================================================================ | |
const SCRIPT_TITLE = "LayerRenamer"; | |
const STATIC_TEXT_MIN_WIDTH = 60; |