<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<doc>
<members>
<assembly>
<name>UnityEngine.CoreModule</name>
</assembly>
<member name="T:UnityEngine.AccelerationEvent">
<summary>
<para>Structure describing acceleration status of the device.</para>
</summary>
</member>
<member name="P:UnityEngine.AccelerationEvent.acceleration">
<summary>
<para>Value of acceleration.</para>
</summary>
</member>
<member name="P:UnityEngine.AccelerationEvent.deltaTime">
<summary>
<para>Amount of time passed since last accelerometer measurement.</para>
</summary>
</member>
<member name="T:UnityEngine.AddComponentMenu">
<summary>
<para>The AddComponentMenu attribute allows you to place a script anywhere in the "Component" menu, instead of just the "Component->Scripts" menu.</para>
</summary>
</member>
<member name="P:UnityEngine.AddComponentMenu.componentOrder">
<summary>
<para>The order of the component in the component menu (lower is higher to the top).</para>
</summary>
</member>
<member name="M:UnityEngine.AddComponentMenu.#ctor(System.String)">
<summary>
<para>Add an item in the Component menu.</para>
</summary>
<param name="menuName">The path to the component.</param>
<param name="order">Where in the component menu to add the new item.</param>
</member>
<member name="M:UnityEngine.AddComponentMenu.#ctor(System.String,System.Int32)">
<summary>
<para>Add an item in the Component menu.</para>
</summary>
<param name="menuName">The path to the component.</param>
<param name="order">Where in the component menu to add the new item.</param>
</member>
<member name="T:UnityEngine.Android.Permission">
<summary>
<para>Structure describing a permission that requires user authorization.</para>
</summary>
</member>
<member name="F:UnityEngine.Android.Permission.Camera">
<summary>
<para>Used when requesting permission or checking if permission has been granted to use the camera.</para>
</summary>
</member>
<member name="F:UnityEngine.Android.Permission.CoarseLocation">
<summary>
<para>Used when requesting permission or checking if permission has been granted to use the users location with coarse granularity.</para>
</summary>
</member>
<member name="F:UnityEngine.Android.Permission.ExternalStorageRead">
<summary>
<para>Used when requesting permission or checking if permission has been granted to read from external storage such as a SD card.</para>
</summary>
</member>
<member name="F:UnityEngine.Android.Permission.ExternalStorageWrite">
<summary>
<para>Used when requesting permission or checking if permission has been granted to write to external storage such as a SD card.</para>
</summary>
</member>
<member name="F:UnityEngine.Android.Permission.FineLocation">
<summary>
<para>Used when requesting permission or checking if permission has been granted to use the users location with high precision.</para>
</summary>
</member>
<member name="M:UnityEngine.Android.Permission.HasUserAuthorizedPermission(System.String)">
<summary>
<para>Check if the user has granted access to a device resource or information that requires authorization.</para>
</summary>
<param name="permission">A string representing the permission to request. For permissions which Unity has not predefined you may also manually provide the constant value obtained from the Android documentation here: https:developer.android.comguidetopicspermissionsoverview#permission-groups such as "android.permission.READ_CONTACTS".</param>
<returns>
<para>Whether the requested permission has been granted.</para>
</returns>
</member>
<member name="F:UnityEngine.Android.Permission.Microphone">
<summary>
<para>Used when requesting permission or checking if permission has been granted to use the microphone.</para>
</summary>
</member>
<member name="M:UnityEngine.Android.Permission.RequestUserPermission(System.String)">
<summary>
<para>Request that the user grant access to a device resource or information that requires authorization.</para>
</summary>
<param name="permission">A string that describes the permission to request. For permissions which Unity has not predefined you may also manually provide the constant value obtained from the Android documentation here: https:developer.android.comguidetopicspermissionsoverview#permission-groups such as "android.permission.READ_CONTACTS".</param>
</member>
<member name="T:UnityEngine.AndroidJavaClass">
<summary>
<para>AndroidJavaClass is the Unity representation of a generic instance of java.lang.Class.</para>
</summary>
</member>
<member name="M:UnityEngine.AndroidJavaClass.#ctor(System.String)">
<summary>
<para>Construct an AndroidJavaClass from the class name.</para>
</summary>
<param name="className">Specifies the Java class name (e.g. <tt>java.lang.String</tt>).</param>
</member>
<member name="T:UnityEngine.AndroidJavaObject">
<summary>
<para>AndroidJavaObject is the Unity representation of a generic instance of java.lang.Object.</para>
</summary>
</member>
<member name="M:UnityEngine.AndroidJavaObject.Call(System.String,System.Object[])">
<summary>
<para>Calls a Java method on an object (non-static).</para>
</summary>
<param name="methodName">Specifies which method to call.</param>
<param name="args">An array of parameters passed to the method.</param>
</member>
<member name="M:UnityEngine.AndroidJavaObject.Call(System.String,System.Object[])">
<summary>
<para>Call a Java method on an object.</para>
</summary>
<param name="methodName">Specifies which method to call.</param>
<param name="args">An array of parameters passed to the method.</param>
</member>
<member name="M:UnityEngine.AndroidJavaObject.CallStatic(System.String,System.Object[])">
<summary>
<para>Call a static Java method on a class.</para>
</summary>
<param name="methodName">Specifies which method to call.</param>
<param name="args">An array of parameters passed to the method.</param>
</member>
<member name="M:UnityEngine.AndroidJavaObject.CallStatic(System.String,System.Object[])">
<summary>
<para>Call a static Java method on a class.</para>
</summary>
<param name="methodName">Specifies which method to call.</param>
<param name="args">An array of parameters passed to the method.</param>
</member>
<member name="M:UnityEngine.AndroidJavaObject.#ctor(System.String,System.Object[])">
<summary>
<para>Construct an AndroidJavaObject based on the name of the class.</para>
</summary>
<param name="className">Specifies the Java class name (e.g. "<tt>java.lang.String<tt>" or "<tt>javalangString<tt>").</param>
<param name="args">An array of parameters passed to the constructor.</param>
</member>
<member name="M:UnityEngine.AndroidJavaObject.Dispose">
<summary>
<para>IDisposable callback.</para>
</summary>
</member>
<member name="M:UnityEngine.AndroidJavaObject.Get(System.String)">
<summary>
<para>Get the value of a field in an object (non-static).</para>
</summary>
<param name="fieldName">The name of the field (e.g. int counter; would have fieldName = "counter").</param>
</member>
<member name="M:UnityEngine.AndroidJavaObject.GetRawClass">
<summary>
<para>Retrieves the raw <tt>jclass</tt> pointer to the Jav