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; | |
using UnityEditor; | |
using UnityEditor.EditorTools; | |
using System.IO; | |
using UnityEditor.Build.Reporting; | |
using System.Linq; | |
// 初回起動のみ実行、初回のツールバー設定で起動しないように仕組む | |
class PlatformToolInitializer : ScriptableSingleton<PlatformToolInitializer> |
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 UnityEngine; | |
using UnityEditor; | |
using System; | |
namespace TransformEx | |
{ | |
/// <summary> | |
/// 一括表示を行う場合の設定項目 | |
/// </summary> | |
internal interface ISetAllMode |
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 UnityEngine; | |
using UnityEditor; | |
public class StopExcuteIfHotReloading { | |
[RuntimeInitializeOnLoadMethod] | |
static void StartUp() { | |
EditorApplication.update += EditorUpdate; | |
} | |
static void EditorUpdate() { | |
if (EditorApplication.isPlaying && EditorApplication.isCompiling) { |
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 UnityEngine; | |
using UnityEditor; | |
using System.Linq; | |
public class ObjectDeplicate { | |
[MenuItem("Edit/DummyDeplicate %d", false, -1)] | |
static void CreateEmptyObject() { | |
var select = Selection.objects; | |
// Projectのオブジェクトのコピー |
NewerOlder