Version: 2022.3
LanguageEnglish
  • C#
Method group is Obsolete

Application.ExternalCall

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Obsolete Application.ExternalCall is deprecated. See https://docs.unity3d.com/Manual/webgl-interactingwithbrowserscripting.html for alternatives.

Declaration

public static void ExternalCall(string functionName, params object[] args);

Parameters

functionName Name of the function to call.
args Array of arguments passed in the call.

Description

Calls a function in the web page that contains the WebGL Player.

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.

Additional resources: Application.ExternalEval.