Version: 2022.3
言語: 日本語
Method group is Obsolete

Application.ExternalCall

マニュアルに切り替える
Obsolete public static void ExternalCall (string functionName, params object[] args);

パラメーター

functionName 呼び出す関数の名前
args 呼び出す関数に渡される引数の配列

説明

WebGL Player を含む Web ページで関数を呼び出します。

ExternalCall calls functionName in the web page containing the WebGL player, passing the given arguments to it. Supported argument types are the primitive types (string, int, float, string) and arrays of such types. Any other objects are converted to string using ToString and passed as strings.

This functionality is now obsolete. See Interacting with Browser scripting for alternatives.

関連項目: Application.ExternalEval.