View UnityTextures.cs
using System; | |
using System.Collections.Generic; | |
using UnityEditor; | |
using UnityEngine; | |
//Unity 4.1.5 | |
public class UnityTextures : EditorWindow | |
{ |
View DefauldFolderWindow.cs
using UnityEngine; | |
using UnityEditor; | |
using System.Collections; | |
using System.Collections.Generic; | |
using System; | |
using UnityEditorInternal; | |
using System.IO; | |
public class DefauldFolderWindow : EditorWindow { | |
View TestClass.php
<?php | |
class TestClass | |
{ | |
// <editor-fold desc="旧コード"> | |
public function main(){ | |
$this->throwException(); | |
} |
View gist:03724f39fad81f56d361539aced0105f
# 日本語化 | |
# -Xverify:none | |
# -javaagent:/Users/[ユーザー名]/Library/Preferences/PhpStorm2017.3/jp.sourceforge.mergedoc.pleiades/pleiades.jar |
View PhpStorm_jp
# 日本語化 | |
-Xverify:none | |
-javaagent:/Users/[ユーザー名]/Library/Preferences/PhpStorm2017.3/jp.sourceforge.mergedoc.pleiades/pleiades.jar |
View WindowNotification.cs
using UnityEngine; | |
using UnityEditor; | |
using System.Collections; | |
using System.Collections.Generic; | |
public class WindowNotification : EditorWindow { | |
// Add menu item to the Window menu | |
[MenuItem ("Window/Window Notification")] | |
static void Init () { |
View DragReSizeFiled.cs
using UnityEngine; | |
using UnityEditor; | |
using System.Collections; | |
using System.Collections.Generic; | |
public class DragReSizeFiled : EditorWindow { | |
// Add menu item to the Window menu | |
[MenuItem("Window/DragReSizeFiled")] | |
static void Init () { |
View ActiveScriptCompilationDefines.cs
using UnityEngine; | |
using UnityEditor; | |
using System.Collections; | |
using System.Collections.Generic; | |
public class ActiveScriptCompilationDefines : EditorWindow { | |
[MenuItem ("Window/Active Script Compilation Defines")] | |
static void Init () { |
View FileIconTest2.cs
using UnityEngine; | |
using UnityEditor; | |
using System.Collections; | |
using System.Collections.Generic; | |
public class FileIconTest2 : EditorWindow | |
{ | |
Vector2 scrollPosition; | |
[MenuItem("Window/File Icon2")] |
View GetIpAddress.cs
string targetSheet = "IP address取得"; | |
if (GUILayout.Button(targetSheet, GUI.skin.button, GUILayout.Width(150), GUILayout.Height(30))) | |
{ | |
// ホスト名を取得する | |
string hostname = Dns.GetHostName(); | |
Debug.Log("hostname=" + hostname); | |
// ホスト名からIPアドレスを取得する | |
IPAddress[] adrList = Dns.GetHostAddresses(hostname); | |
foreach (IPAddress address in adrList) |
NewerOlder