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
<?php | |
class TestClass | |
{ | |
// <editor-fold desc="旧コード"> | |
public function main(){ | |
$this->throwException(); | |
} |
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
# 日本語化 | |
# -Xverify:none | |
# -javaagent:/Users/[ユーザー名]/Library/Preferences/PhpStorm2017.3/jp.sourceforge.mergedoc.pleiades/pleiades.jar |
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
# 日本語化 | |
-Xverify:none | |
-javaagent:/Users/[ユーザー名]/Library/Preferences/PhpStorm2017.3/jp.sourceforge.mergedoc.pleiades/pleiades.jar |
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
###################################### | |
UnityEditor.PlayerSettings | |
static function | |
-------------------------------------------------- | |
Boolean get_d3d11ForceExclusiveMode() | |
Void set_d3d11ForceExclusiveMode( Boolean value ) | |
-------------------------------------------------- |
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
###################################### | |
UnityEditor.PlayerSettings | |
static function | |
-------------------------------------------------- | |
Boolean get_visibleInBackground() | |
Void set_visibleInBackground( Boolean value ) | |
-------------------------------------------------- | |
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 System.Collections; | |
using System.Collections.Generic; | |
using WebSocketSharp; | |
using System; | |
public class AppWebSocket : MonoBehaviour { |
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; | |
using System.Collections.Generic; | |
public class WindowNotification : EditorWindow { | |
// Add menu item to the Window menu | |
[MenuItem ("Window/Window Notification")] | |
static void Init () { |
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
var WebSocket = require('websocket').server, | |
Http = require('http'), | |
Config = require('config'); | |
console.log("========= Start ==========="); | |
console.log(new Date()); | |
console.log("NODE_ENV="+process.env.NODE_ENV); | |
console.log("NODE_PATH="+process.env.NODE_PATH); |
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
{ | |
"websocket" : { | |
"port" : 9999 | |
}, | |
"logging" : true, | |
"const" : { | |
"env" : "development", | |
"ver" : "9999" |
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; | |
using System.Collections.Generic; | |
public class DragReSizeFiled : EditorWindow { | |
// Add menu item to the Window menu | |
[MenuItem("Window/DragReSizeFiled")] | |
static void Init () { |
NewerOlder