言語: 日本語
  • C#
  • JS
  • Boo

スクリプト言語

お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。

Network.proxyPassword

public static var proxyPassword: string;

Description

プロキシのパスワード

It is possible to make your own custom proxy server. In that case you might want to password protect it and then your Unity players must set this value appropriately.

	function Awake() {
		// Set custom proxy server address and password
		Network.proxyIP = "1.1.1.1";
		Network.proxyPort = 1111;
		Network.proxyPassword = "secret";
	}